Searched refs:_str (Results 1 - 21 of 21) sorted by relevance

/osnet-11/usr/src/cmd/perl/5.8.4/distrib/lib/Math/BigInt/t/
H A D_e_math.t43 is (_str($x,$xs), '+444', 'add two positive numbers');
44 is (_str($a,''), '444', 'a modified');
47 is (_str($x,$xs), '+444', 'add two positive numbers');
50 is (_str($x,$xs), '-198', 'add +x + -y');
52 is (_str($x,$xs), '+198', 'add -x + +y');
55 is (_str($x,$xs), '-198', 'add -x + +y');
57 is (_str($x,$xs), '+198', 'add +x + -y');
60 is (_str($x,$xs), '+9', 'add 10 + -1');
62 is (_str($x,$xs), '-9', 'add -10 + +1');
64 is (_str(
106 sub _str subroutine
[all...]
H A Dbigints.t38 # _new and _str
40 ok (ref($x),'SCALAR'); ok ($C->_str($x),123); ok ($C->_str($y),321);
44 ok ($C->_str($C->_add($x,$y)),444);
45 ok ($C->_str($C->_sub($x,$y)),123);
46 ok ($C->_str($C->_mul($x,$y)),39483);
47 ok ($C->_str($C->_div($x,$y)),123);
49 ok ($C->_str($C->_mul($x,$y)),39483);
50 ok ($C->_str($x),39483);
51 ok ($C->_str(
[all...]
H A Dbigintc.t29 # _new and _str
31 ok (ref($x),'ARRAY'); ok ($C->_str($x),123); ok ($C->_str($y),321);
35 ok ($C->_str($C->_add($x,$y)),444);
36 ok ($C->_str($C->_sub($x,$y)),123);
37 ok ($C->_str($C->_mul($x,$y)),39483);
38 ok ($C->_str($C->_div($x,$y)),123);
43 ok ($C->_str($C->_mul($x,$y)),39483);
44 ok ($C->_str($x),39483); ok ($C->_str(
[all...]
/osnet-11/usr/src/lib/libxcurses/src/libc/xcurses/
H A Dtigetstr.c60 value = cur_term->_str[(int)(p - __m_strnames)];
H A Dtgetstr.c66 value = cur_term->_str[(int)(p - __m_strcodes)];
H A Dsetup.c94 for(j = 0; cur_term->_str[i][j]; ++j)
95 if (cur_term->_str[i][j] == proto)
96 cur_term->_str[i][j] = CC;
202 tp->_str[i] = (char *) 0;
204 tp->_str[i] = tp->_str_table + offset;
214 tp->_str[i] = (char *) 0;
H A Dkeypad.c150 len = decode_add(tree, cur_term->_str[**p], (*p)[1]);
H A Dslk.c372 if (cur_term->_str[**k] != (char *) 0) {
376 (long) cur_term->_str[**k],
/osnet-11/usr/src/lib/libxcurses2/src/libc/xcurses/
H A Dtigetstr.c57 value = cur_term->_str[i];
H A Dtgetstr.c67 value = cur_term->_str[i];
H A Dsetup.c111 for (j = 0; cur_term->_str[i][j]; ++j)
112 if (cur_term->_str[i][j] == proto)
113 cur_term->_str[i][j] = *CC;
243 tp->_str[i] = NULL;
245 tp->_str[i] = tp->_str_table + offset;
253 tp->_str[i] = NULL;
H A Dkeypad.c151 len = decode_add(tree, cur_term->_str[**p], (*p)[1]);
/osnet-11/usr/src/cmd/sendmail/include/sm/
H A Dstring.h32 sm_match __P((const char *_str, const char *_pattern));
38 sm_strndup_x __P((const char *_str, size_t _len));
43 sm_strdup_x __P((const char *_str));
47 sm_pstrdup_x __P((const char *_str));
H A Dio.h323 char **_str,
/osnet-11/usr/src/lib/libxcurses/src/tic/
H A Dtic.h94 #define Strings _str
H A Duntic.c75 #define Strings _str
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/t/lib/Math/BigInt/
H A DScalar.pm80 sub _str subroutine
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/lib/Math/
H A DBigRat.pm76 $self->{_n} = $MBI->new($CALC->_str ( $f->{_m} ),undef,undef);# mantissa
83 $self->{_d}->blsft( $MBI->new($CALC->_str ( $f->{_e} )),10);
89 $self->{_n}->blsft( $MBI->new($CALC->_str($f->{_e})),10) unless
156 $self->{_n} = $MBI->new( $CALC->_str( $nf->{_m} ) );
161 $self->{_d} = $MBI->new( $CALC->_str( $f->{_m} ) );
1040 $x->{_d} = $MBI->new($CALC->_str($x->{_d}->{_m})); # 7.1/45.1 => 71/45.1
1046 $x->{_n} = $MBI->new($CALC->_str($x->{_n}->{_m})); # 710/45.1 => 710/451
H A DBigFloat.pm205 return $downgrade->new($$mis . $MBI->_str( $self->{_m} ));
336 $es = $MBI->_str($x->{_m});
394 $sign . $MBI->_str($x->{_m}) . $sep . $MBI->_str($x->{_e});
2042 my $m = Math::BigInt->new( $x->{sign} . $MBI->_str($x->{_m}));
2083 my $m = Math::BigInt->new( $x->{sign} . $MBI->_str($x->{_m}));
2220 Math::BigInt->new( $x->{_es} . $MBI->_str($x->{_e}));
2233 my $m = Math::BigInt->new( $MBI->_str($x->{_m}));
H A DBigInt.pm772 $m->bstr() . 'e+' . $CALC->_str($e->{value});
787 $es.$CALC->_str($x->{value});
2092 my $xs = $CALC->_str($x->{value});
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/lib/Math/BigInt/
H A DCalc.pm244 sub _str subroutine
1520 print "start x= ",_str($c,$x),"\n" if DEBUG;
1532 print " x= ",_str($c,$x),"\n" if DEBUG;
2002 _str(obj) return ref to a string representing the object

Completed in 105 milliseconds