Searched refs:_n (Results 1 - 25 of 28) sorted by relevance

12

/osnet-11/usr/src/lib/libxcurses2/src/libc/xcurses/
H A Dgetcchar.c58 return ((int)c->_n);
63 for (i = 0; i < c->_n; ++i)
H A Dwinnwstr.c65 if (n < cp->_n)
69 for (i = 0; i < cp->_n; ++i) {
H A Dwunctrl.c92 if (cc->_n <= 0)
105 for (i = 0; i < cc->_n; ++i)
H A Dwaddwchn.c59 for (x = w->_curx; x < n && cp->_n != 0 && cp->_wc[0] != '\0';
H A Dm_cc.c163 cc->_n = 1;
187 if (cc->_n != 1 || wctomb((char *)mb, cc->_wc[0]) != 1)
249 for (count = i = 0; i < cc->_n; ++i, count += bytes)
327 cc->_n = (short)i;
371 cc->_n = i;
397 cc->_n = 1;
429 for (width = spacing = i = 0; i < cc->_n; ++i) {
447 for (i = spacing; i < cc->_n; ++i) {
448 for (j = cc->_n - 1; i < j; --j) {
744 if (_M_CCHAR_MAX < cp->_n
[all...]
H A Dwadd_wch.c108 uc._n = 1;
H A Dwacs.c161 acs->_n != 1 || wctomb((char *) mb, acs->_wc[0]) != 1)
H A Dwins_wch.c143 uc._n = 1;
H A Dslk.c352 for (wp = wcs, width = 0; *label != '\0'; label += i, wp += cc._n) {
362 (void) wcsncpy(wp, cc._wc, cc._n);
/osnet-11/usr/src/lib/scsi/libses/common/
H A Dlibses_plugin.h99 #define SES_NV_ADD(_t, _e, _l, _n, ...) \
100 if (((_e) = nvlist_add_##_t((_l), (_n), __VA_ARGS__)) != 0) \
101 return (ses_set_nverrno((_e), (_n)))
103 #define SES_NV_ADD_OR_FREE(_t, _e, _l, _n, ...) \
104 if (((_e) = nvlist_add_##_t((_l), (_n), __VA_ARGS__)) != 0) { \
105 nvlist_free(_l); return (ses_set_nverrno((_e), (_n))); }
114 #define SES_NV_CTLBOOL(_l, _n, _b) \
117 (void) nvlist_lookup_boolean_value((_l), (_n), &v); \
121 #define SES_NV_CTLBOOL_INVERT(_l, _n, _b) \
124 (void) nvlist_lookup_boolean_value((_l), (_n),
[all...]
/osnet-11/usr/src/lib/libxcurses/src/libc/xcurses/
H A Dgetcchar.c56 return __m_return_int("getcchar", c->_n + 1);
61 for (i = 0; i < c->_n; ++i)
H A Dwinnwstr.c63 if (n < cp->_n)
67 for (i = 0; i < cp->_n; ++i)
H A Dwaddwchn.c61 for (x = w->_curx; x < n && cp->_n != 0; x += width, ++cp)
H A Dwunctrl.c94 if (cc->_n <= 0)
107 for (i = 0; i < cc->_n; ++i)
H A Dm_cc.c156 cc->_n = 1;
179 if (cc->_n != 1 || wctomb((char *) mb, cc->_wc[0]) != 1)
247 for (count = i = 0; i < cc->_n; ++i, count += bytes)
323 cc->_n = i;
364 cc->_n = i;
409 for (width = spacing = i = 0; i < cc->_n; ++i) {
427 for (i = spacing; i < cc->_n; ++i) {
428 for (j = cc->_n - 1; i < j; --j) {
789 if (c1->_n != c2->_n)
[all...]
H A Dwadd_wch.c88 uc._n = 1;
H A Dslk.c321 for (wp = wcs, width = 0; label != '\0'; label += i, wp += cc._n) {
329 (void) wcsncpy(wp, cc._wc, cc._n);
H A Dwacs.c179 || acs->_n != 1 || wctomb((char *) mb, acs->_wc[0]) != 1)
H A Dwins_wch.c143 uc._n = 1;
H A Ddoupdate.c780 cp->_n = -1;
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/lib/Math/
H A DBigRat.pm9 # _n : numeraotr (value = _n/_d)
76 $self->{_n} = $MBI->new($CALC->_str ( $f->{_m} ),undef,undef);# mantissa
89 $self->{_n}->blsft( $MBI->new($CALC->_str($f->{_e})),10) unless
115 $self->{_n} = $n->copy(); # "mantissa" = $n
117 $self->{sign} = $self->{_n}->{sign}; $self->{_n}->{sign} = '+';
123 $self->{_n} = $MBI->new(abs($$n),undef,undef); # "mantissa" = $n
132 $self->{_n} = $MBI->bzero(); # undef => 0
156 $self->{_n}
[all...]
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/t/lib/Math/BigRat/
H A DTest.pm91 return $s.$x->{_n} if $x->{_d}->is_one();
92 my $output = Math::BigFloat->new($x->{_n})->bdiv($x->{_d});
118 my $output = Math::BigFloat->new($x->{_n})->bdiv($x->{_d});
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/lib/Math/BigRat/t/
H A Dbigrat.t71 $x = $cr->new('-0'); ok ($x,'0'); ok ($x->{_n}, '0'); ok ($x->{_d},'1');
72 $x = $cr->new('NaN'); ok ($x,'NaN'); ok ($x->{_n}, '0'); ok ($x->{_d},'0');
73 $x = $cr->new('-NaN'); ok ($x,'NaN'); ok ($x->{_n}, '0'); ok ($x->{_d},'0');
74 $x = $cr->new('-1r4'); ok ($x,'NaN'); ok ($x->{_n}, '0'); ok ($x->{_d},'0');
76 $x = $cr->new('+inf'); ok ($x,'inf'); ok ($x->{_n}, '0'); ok ($x->{_d},'0');
77 $x = $cr->new('-inf'); ok ($x,'-inf'); ok ($x->{_n}, '0'); ok ($x->{_d},'0');
78 $x = $cr->new('123a4'); ok ($x,'NaN'); ok ($x->{_n}, '0'); ok ($x->{_d},'0');
81 $x = $cr->new('1e2e2'); ok ($x,'NaN'); ok ($x->{_n}, '0'); ok ($x->{_d},'0');
82 $x = $cr->new('1+2+2'); ok ($x,'NaN'); ok ($x->{_n}, '0'); ok ($x->{_d},'0');
84 $x = $cr->new('1.2.2'); ok ($x,'NaN'); ok ($x->{_n}, '
[all...]
/osnet-11/usr/src/lib/scsi/plugins/ses/SUN/common/
H A Dsun_element_ctl.c110 #define CTL_DESC(_e, _n) \
113 .scd_props = _n##_props, \
114 .scd_setdef = elem_setdef_##_n \
/osnet-11/usr/src/lib/scsi/plugins/ses/ses2/common/
H A Dses2_element_ctl.c1778 #define CTL_DESC(_e, _n) \
1781 .scd_props = _n##_props, \
1782 .scd_setdef = elem_setdef_##_n \

Completed in 329 milliseconds

12