Searched refs:left (Results 26 - 50 of 179) sorted by relevance

12345678

/osnet-11/usr/src/lib/libast/common/misc/
H A Dfts.c85 FTSENT* left; /* left child */ \
254 #define RROTATE(r) (t = r->left, r->left = t->right, t->right = r, r = t)
255 #define LROTATE(r) (t = r->right, r->right = t->left, t->left = r, r = t)
262 register FTSENT* left; local
267 left = right = lroot = rroot = 0;
275 * this is the left zig-zig case
278 if (root->left
349 register FTSENT* left; local
[all...]
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/
H A Dpp.h264 #define dPOPXssrl(X) SV *right = POPs; SV *left = CAT2(X,s)
265 #define dPOPXnnrl(X) NV right = POPn; NV left = CAT2(X,n)
266 #define dPOPXiirl(X) IV right = POPi; IV left = CAT2(X,i)
273 NV left = USE_LEFT(leftsv) ? SvNV(leftsv) : 0.0
277 IV left = USE_LEFT(leftsv) ? SvIV(leftsv) : 0
327 SV* right= *(sp); SV* left= *(sp-1);\
328 if ((SvAMAGIC(left)||SvAMAGIC(right))&&\
329 (tmpsv=amagic_call(left, \
343 #define AMG_CALLbinL(left,right,meth) \
344 amagic_call(left,righ
[all...]
H A Dpp.c1015 SETn( Perl_pow( left, right) );
1030 /* Unless the left argument is integer in range we are going to have to
1032 we know the left is integer. */
1137 SETn( left * right );
1173 UV left; local
1192 DIE() would be invoked before left was even inspected, so
1198 left = SvUVX(TOPm1s);
1203 left = aiv;
1207 left = -aiv;
1211 if (left >
1261 UV left = 0; local
2019 UV left = PTR2UV(SvRV(TOPs)); local
[all...]
H A Dgv.c1452 Perl_amagic_call(pTHX_ SV *left, SV *right, int method, int flags)
1464 if (!(AMGf_noleft & flags) && SvAMAGIC(left)
1465 && (stash = SvSTASH(SvRV(left)))
1478 lr = -1; /* Call method for left argument */
1521 SV* tmpRef=SvRV(left);
1539 SV* lessp = amagic_call(left,nullsv,
1543 SV* lessp = amagic_call(left,nullsv,
1549 right = left;
1550 left = nullsv;
1554 return left;
[all...]
/osnet-11/usr/src/lib/libshell/common/bltins/
H A Dtest.c461 int test_binop(Shell_t *shp,register int op,const char *left,const char *right) argument
466 while(*left=='0')
467 left++;
470 lnum = sh_arith(shp,left);
478 return(*left!=0);
480 return(test_strmatch(left, right));
482 return(!test_strmatch(left, right));
484 return(strcoll(left, right)>0);
486 return(strcoll(left, right)<0);
488 return(strcmp(left, righ
[all...]
/osnet-11/usr/src/lib/libdtrace/common/
H A Ddt_grammar.y116 %left DT_TOK_COMMA
120 %left DT_TOK_QUESTION DT_TOK_COLON
121 %left DT_TOK_LOR
122 %left DT_TOK_LXOR
123 %left DT_TOK_LAND
124 %left DT_TOK_BOR
125 %left DT_TOK_XOR
126 %left DT_TOK_BAND
127 %left DT_TOK_EQU DT_TOK_NEQ
128 %left DT_TOK_L
[all...]
/osnet-11/usr/src/lib/libcmd/common/
H A Dexpr.c48 "left associative. The symbols \aexpr1\a and \aexpr2\a represent "
401 register char *left,*right; local
410 left = np->str;
412 sfsprintf(left=buff1,sizeof(buff1),"%d",np->num);
421 np->num = streq(left,right);
424 np->num = (strcoll(left,right)>0);
427 np->num = (strcoll(left,right)<0);
430 np->num = (strcoll(left,right)>=0);
433 np->num = (strcoll(left,right)<=0);
436 np->num = !streq(left,righ
[all...]
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/lib/
H A DExporter.t49 This => [qw(stuff %left)],
69 use vars qw($seatbelt $seat @wailing %left);
73 %left = ( left => "right" );
114 my @imports = qw($seatbelt &Above stuff @wailing %left);
/osnet-11/usr/src/lib/libresolv2/common/irs/
H A Dirp.c285 int left = len - 1; local
287 while (left > 0) {
333 if (i > left)
334 i = left;
341 left = 0;
343 left -= i;
/osnet-11/usr/src/lib/fm/topo/libtopo/common/
H A Dtopo_subr.c241 ssize_t left; local
246 if (buflen == 0 || (left = buflen - *sz) < 0)
247 left = 0;
249 if (buf != NULL && left != 0)
253 *sz += snprintf(buf, left, "%s", str);
255 *sz += snprintf(buf, left, "%s%s", prepend, str);
257 *sz += snprintf(buf, left, "%s%s", str, append);
259 *sz += snprintf(buf, left, "%s%s%s", prepend, str, append);
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/lib/Test/Simple/t/
H A Dis_deeply.t199 that => { up => "down", left => "right" },
204 that => { up => "down", left => "right", foo => 42 },
/osnet-11/usr/src/lib/libast/common/cdt/
H A Ddtmethod.c73 t->left = r;
74 list->left = r;
H A Ddttreeset.c47 mid->left = treebalance(list, (n = size/2) );
H A Ddtstat.c39 if(root->left)
40 dttstat(ds,root->left,depth+1,level);
/osnet-11/usr/src/lib/libc/i386/gen/
H A Dlshiftl.s59 / We are doing a positive (left) shift
H A Dmemset.s54 andl $3,%ecx / %ecx = number of bytes left
H A Dmemcpy.s48 andl $0x3,%ecx / %ecx = number of bytes left to move
86 movl %edx,%ecx / compute bytes left to move
125 andl %eax,%edx / do 1 byte copy whats left
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/ext/B/B/
H A DCC.pm160 map { declare("SV", "*$_") } qw(sv src dst left right);
727 my $left = top_int();
728 $stack[-1]->set_int(&$operator($left, $right));
735 my $left = new B::Pseudoreg ("IV", "liv");
736 runtime(sprintf("$$right = %s; $$left = %s;", pop_int(), pop_int));
737 $targ->set_int(&$operator($$left, $$right));
756 my $left = top_numeric();
758 $stack[-1]->set_int(&$operator($left, $right));
760 $stack[-1]->set_numeric(&$operator($left, $right));
780 my $left
[all...]
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/pod/
H A Dpod2text.PL81 'loose|l', 'margin|left-margin|m=i', 'overstrike|o',
136 heading style and marks C<=item> entries with a colon in the left margin.
142 code left intact.
165 =item B<-m> I<width>, B<--left-margin>=I<width>, B<--margin>=I<width>
167 The width of the left margin in spaces. Defaults to 0. This is the margin
181 I<quotes> is a single character, it is used as both the left and right
183 left quote and the second as the right quoted; and if I<quotes> is four
184 characters, the first two are used as the left quote and the second two as
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/ext/List/Util/
H A DUtil.xs167 SV *left;
178 left = ST(0);
183 if(sv_cmp_locale(left, right) == ix)
184 left = right;
191 if(sv_cmp(left, right) == ix)
192 left = right;
197 ST(0) = left;
/osnet-11/usr/src/lib/libast/common/regex/
H A Dregdecomp.c94 if (decomp(e->re.group.expr.binary.left, sp, type, delimiter, flags))
332 if (decomp(e->re.group.expr.binary.left, sp, type, delimiter, flags))
359 if (e->re.group.expr.binary.left && decomp(e->re.group.expr.binary.left, sp, type, delimiter, flags))
364 if (q->re.group.expr.binary.left && decomp(q->re.group.expr.binary.left, sp, type, delimiter, flags))
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/lib/Devel/
H A DSelfStubber.t125 my ($left, $right) = @_;
126 while (my ($key, $val) = each %$left) {
/osnet-11/usr/src/lib/gss_mechs/mech_krb5/krb5/os/
H A Dread_pwd.c109 dlgwidth = r.right - r.left;
115 r.left = (scrwidth - dlgwidth) / 2;
117 MoveWindow(hwnd, r.left, r.top, dlgwidth, dlgheight, TRUE);
/osnet-11/usr/src/lib/pkcs11/pkcs11_softtoken/common/
H A DsoftSSL.c227 uint_t left = resultlen; local
253 while (left > 0) {
266 if (left > MD5_DIGEST_LENGTH) {
276 left -= MD5_DIGEST_LENGTH;
280 for (i = 0; i < left; i++) {
285 bcopy(md5_hmac, res, left);
307 uint_t left = resultlen; local
333 while (left > 0) {
347 if (left > SHA1_DIGEST_LENGTH) {
357 left
[all...]
/osnet-11/usr/src/grub/grub2/grub-core/gnulib/
H A Dregcomp.c115 bin_tree_t *left, bin_tree_t *right,
118 bin_tree_t *left, bin_tree_t *right,
1224 /* Descend down the tree, preferably to the left (or to the right
1226 while (node->left || node->right)
1227 if (node->left)
1228 node = node->left;
1260 /* Go to the left node, or up and to the right. */
1261 if (node->left)
1262 node = node->left;
1294 && node->left
1428 Idx left, right; local
3769 create_tree(re_dfa_t *dfa, bin_tree_t *left, bin_tree_t *right, re_token_type_t type) argument
3778 create_token_tree(re_dfa_t *dfa, bin_tree_t *left, bin_tree_t *right, const re_token_t *token) argument
[all...]

Completed in 127 milliseconds

12345678