| /titanic_53/usr/src/common/net/wanboot/crypt/ |
| H A D | des.c | 213 uint32_t right; in des() local 221 right = ((uint32_t)block[4] << 24) | in des() 237 work = ((left >> 4) ^ right) & 0x0f0f0f0f; in des() 238 right ^= work; in des() 240 work = ((left >> 16) ^ right) & 0xffff; in des() 241 right ^= work; in des() 243 work = ((right >> 2) ^ left) & 0x33333333; in des() 245 right ^= (work << 2); in des() 246 work = ((right >> 8) ^ left) & 0xff00ff; in des() 248 right ^= (work << 8); in des() [all …]
|
| /titanic_53/usr/src/common/crypto/blowfish/ |
| H A D | blowfish_impl.c | 361 #define ROUND(left, right, i) \ argument 363 (right) ^= F((left)); \ 365 (left) = (right); \ 366 (right) = tmp; 379 uint32_t left, right, tmp; in blowfish_encrypt_block() local 389 right = b32[1]; in blowfish_encrypt_block() 398 right = htonl(*(uint32_t *)(void *)&block[4]); in blowfish_encrypt_block() 404 right = ((uint32_t)block[4] << 24) in blowfish_encrypt_block() 411 ROUND(left, right, 0); in blowfish_encrypt_block() 412 ROUND(left, right, 1); in blowfish_encrypt_block() [all …]
|
| /titanic_53/usr/src/cmd/cron/ |
| H A D | elm.c | 95 struct notice *right; }; member 112 struct key *right; }; member 123 struct index *right; }; member 177 nprev->right = n; 184 kprev->right = k; 192 indprev->right = ind; 199 n->right = NULL; 200 nprev->right = n; 207 k->right = NULL; 208 kprev->right = k; [all …]
|
| /titanic_53/usr/src/lib/libresolv2/common/isc/ |
| H A D | tree.c | 111 RET(tree_srch(&(**ppr_tree).right, in tree_srch() 164 if (!tree_trav(&(**ppr_tree).right, pfi_uar)) in tree_trav() 174 tree_mung(&(**ppr_tree).right, pfv_uar); in tree_mung() 200 (*ppr)->right = NULL; in sprout() 238 (*ppr)->left = p1->right; in sprout() 239 p1->right = *ppr; in sprout() 245 p2 = p1->right; in sprout() 246 p1->right = p2->left; in sprout() 249 (*ppr)->left = p2->right; in sprout() 250 p2->right = *ppr; in sprout() [all …]
|
| /titanic_53/usr/src/cmd/print/printmgr/com/sun/admin/pm/client/ |
| H A D | BST.java | 44 public BST right = null; field in BST 53 left = right = null; in BST() 82 if (right != null) in insert() 83 right.insert(theItem); in insert() 85 right = node = new BST(theItem); in insert() 116 if (right != null) in find_tree() 117 rv = right.find_tree(newKey, exactMatch); in find_tree() 139 if (right != null) in find() 140 rv = right.find(newKey, exactMatch); in find() 155 if (right != null) in traverse() [all …]
|
| /titanic_53/usr/src/psm/stand/boot/common/ |
| H A D | heap_kmem.c | 96 Freehdr right; /* Right tree pointer */ member 230 tree = &x->right; in insert() 245 right_hook = &newhdr->right; in insert() 248 newhdr->right = NIL; in insert() 268 left_hook = &x->right; in insert() 269 x = x->right; in insert() 309 right_branch = x->right; in delete() 321 p = &left_branch->right; in delete() 322 left_branch = left_branch->right; in delete() 373 right_branch = x->right; in demote() [all …]
|
| /titanic_53/usr/src/cmd/isns/isnsd/ |
| H A D | sched.c | 94 fk->left->right = fk->right; in il_shift() 95 fk->right->left = fk->left; in il_shift() 107 k = k->right; in il_shift() 124 fk->right = k; in il_shift() 125 k->left->right = fk; in il_shift() 238 kleft->right = k; in el_init() 267 k->right = NULL; in el_init() 268 kleft->right = k; in el_init() 361 k = k->right; in el_add() 379 y->right = k; in el_add() [all …]
|
| /titanic_53/usr/src/cmd/make/lib/mksh/ |
| H A D | misc.cc | 956 node = node->right; in lookup() 983 if (node->right != 0) { in insert() 984 node = node->right; in insert() 989 node->right = new entry(name, node); in insert() 1020 if (node->right != 0) { in insert() 1021 node = node->right; in insert() 1023 node->right = new entry(name, node); in insert() 1040 entry *right = node->right; in rebalance() local 1043 unsigned rdepth = (right != 0) ? right->depth : 0; in rebalance() 1047 if ((node->left = left->right) != 0) { in rebalance() [all …]
|
| /titanic_53/usr/src/tools/scripts/ |
| H A D | bringovercheck.sh | 46 right=$(/bin/ls -E "$2" 2>/dev/null | awk '{print $7}') 47 right=${right##*.} 48 [ -z "$left" -o -z "$right" -o "$left" -gt "$right" ] && return 0
|
| /titanic_53/usr/src/lib/libbc/libc/gen/common/ |
| H A D | malloc.c | 181 fpp = &x->right; in insert() 199 newhdr->right = NIL; in insert() 210 right_hook = &newhdr->right; in insert() 228 left_hook = &x->right; in insert() 229 x = x->right; in insert() 271 right_branch = x->right; in delete() 291 p = &left_branch->right; in delete() 357 right_branch = x->right; in demote() 370 p = &left_branch->right; in demote() 386 x->right = right_branch; in demote() [all …]
|
| /titanic_53/usr/src/common/avl/ |
| H A D | avl.c | 140 int right = 1 - left; in avl_walk() local 158 node->avl_child[right] != NULL; in avl_walk() 159 node = node->avl_child[right]) in avl_walk() 170 if (was_child == right) in avl_walk() 306 int right = 1 - left; in avl_rotation() local 358 cright = child->avl_child[right]; in avl_rotation() 368 child->avl_child[right] = node; in avl_rotation() 370 AVL_SETCHILD(node, right); in avl_rotation() 420 gchild = child->avl_child[right]; in avl_rotation() 422 gright = gchild->avl_child[right]; in avl_rotation() [all …]
|
| /titanic_53/usr/src/common/atomic/sparc/ |
| H A D | atomic.s | 91 and %o0, 0x3, %o4 ! %o4 = byte offset, left-to-right 92 xor %o4, 0x3, %g1 ! %g1 = byte offset, right-to-left 93 sll %g1, 3, %g1 ! %g1 = bit offset, right-to-left 163 and %o0, 0x2, %o4 ! %o4 = byte offset, left-to-right 164 xor %o4, 0x2, %g1 ! %g1 = byte offset, right-to-left 165 sll %o4, 3, %o4 ! %o4 = bit offset, left-to-right 166 sll %g1, 3, %g1 ! %g1 = bit offset, right-to-left 328 and %o0, 0x3, %o4 ! %o4 = byte offset, left-to-right 329 xor %o4, 0x3, %g1 ! %g1 = byte offset, right-to-left 330 sll %g1, 3, %g1 ! %g1 = bit offset, right-to-left [all …]
|
| /titanic_53/usr/src/common/atomic/sparcv9/ |
| H A D | atomic.s | 212 and %o0, 0x3, %o4 ! %o4 = byte offset, left-to-right 213 xor %o4, 0x3, %g1 ! %g1 = byte offset, right-to-left 214 sll %g1, 3, %g1 ! %g1 = bit offset, right-to-left 284 and %o0, 0x2, %o4 ! %o4 = byte offset, left-to-right 285 xor %o4, 0x2, %g1 ! %g1 = byte offset, right-to-left 286 sll %o4, 3, %o4 ! %o4 = bit offset, left-to-right 287 sll %g1, 3, %g1 ! %g1 = bit offset, right-to-left 453 and %o0, 0x3, %o4 ! %o4 = byte offset, left-to-right 454 xor %o4, 0x3, %g1 ! %g1 = byte offset, right-to-left 455 sll %g1, 3, %g1 ! %g1 = bit offset, right-to-left [all …]
|
| /titanic_53/usr/src/cmd/fm/modules/common/eversholt/ |
| H A D | eft_mdb.c | 518 (void) eft_node((uintptr_t)node.u.expr.right, DCMD_ADDRSPEC, 0, in eft_node() 526 (void) eft_node((uintptr_t)node.u.expr.right, DCMD_ADDRSPEC, 0, in eft_node() 535 (void) eft_node((uintptr_t)node.u.expr.right, DCMD_ADDRSPEC, 0, in eft_node() 543 (void) eft_node((uintptr_t)node.u.expr.right, DCMD_ADDRSPEC, 0, in eft_node() 555 (void) eft_node((uintptr_t)node.u.expr.right, DCMD_ADDRSPEC, 0, in eft_node() 562 (void) eft_node((uintptr_t)node.u.expr.right, DCMD_ADDRSPEC, 0, in eft_node() 569 (void) eft_node((uintptr_t)node.u.expr.right, DCMD_ADDRSPEC, 0, in eft_node() 576 (void) eft_node((uintptr_t)node.u.expr.right, DCMD_ADDRSPEC, 0, in eft_node() 583 (void) eft_node((uintptr_t)node.u.expr.right, DCMD_ADDRSPEC, 0, in eft_node() 590 (void) eft_node((uintptr_t)node.u.expr.right, DCMD_ADDRSPEC, 0, in eft_node() [all …]
|
| H A D | eval.c | 178 if (!eval_cat(np->u.expr.right, ex, events, globals, croot, in eval_cat() 231 rhs = eval_getname(funcnp, ex, events, np->u.expr.right, in eval_func() 257 ASSERT(np->u.expr.right->t == T_QUOTE); in eval_func() 293 s = config_getprop(cp, np->u.expr.right->u.quote.s); in eval_func() 294 if (s == NULL && strcmp(np->u.expr.right->u.quote.s, in eval_func() 301 funcname, np->u.expr.right->u.quote.s); in eval_func() 324 np->u.expr.right->u.quote.s, in eval_func() 342 rhs = eval_getname(funcnp, ex, events, np->u.expr.right, in eval_func() 526 np->u.expr.right->u.quote.s); in eval_func() 537 strcmp(np->u.expr.right->u.quote.s, "") == 0 ? in eval_func() [all …]
|
| /titanic_53/usr/src/cmd/fm/eversholt/common/ |
| H A D | ptree.c | 160 ptree(flags, np->u.expr.right, no_iterators, fileline); in ptree() 180 ptree(flags, np->u.expr.right, no_iterators, fileline); in ptree() 193 ptree(flags, np->u.expr.right, no_iterators, fileline); in ptree() 200 ptree(flags, np->u.expr.right, no_iterators, fileline); in ptree() 207 ptree(flags, np->u.expr.right, no_iterators, fileline); in ptree() 214 ptree(flags, np->u.expr.right, no_iterators, fileline); in ptree() 221 ptree(flags, np->u.expr.right, no_iterators, fileline); in ptree() 228 ptree(flags, np->u.expr.right, no_iterators, fileline); in ptree() 235 ptree(flags, np->u.expr.right, no_iterators, fileline); in ptree() 242 ptree(flags, np->u.expr.right, no_iterators, fileline); in ptree() [all …]
|
| H A D | check.c | 137 check_path_iterators(np->u.expr.right); in check_path_iterators() 239 (void) check_reportlist(t, s, np->u.expr.right); in check_reportlist() 421 nvpairnp->u.expr.right); in check_stmt_allowed_properties() 433 if (np->t != nvpairnp->u.expr.right->t) in check_stmt_allowed_properties() 441 if (np->u.ull == nvpairnp->u.expr.right->u.ull) in check_stmt_allowed_properties() 447 nvpairnp->u.expr.right) == 0) in check_stmt_allowed_properties() 453 nvpairnp->u.expr.right) == 0) in check_stmt_allowed_properties() 469 (*Allowednames[i].checker)(t, s, nvpairnp->u.expr.right); in check_stmt_allowed_properties() 570 check_propnames(t, np->u.expr.right, from, to); in check_propnames() 591 ex = record_iterators(np->u.expr.right, ex); in record_iterators() [all …]
|
| /titanic_53/usr/src/lib/libdwarf/common/ |
| H A D | pro_die.c | 64 Dwarf_P_Die left, Dwarf_P_Die right, Dwarf_Error * error) in dwarf_new_die() argument 83 dwarf_die_link(new_die, parent, child, left, right, error); in dwarf_new_die() 96 Dwarf_P_Die left, Dwarf_P_Die right, Dwarf_Error * error) in dwarf_die_link() argument 151 if (right != NULL) { in dwarf_die_link() 153 new_die->di_right = right; in dwarf_die_link() 154 if (right->di_left) { in dwarf_die_link() 157 new_die->di_left = right->di_left; in dwarf_die_link() 158 right->di_left->di_right = new_die; in dwarf_die_link() 160 right->di_left = new_die; in dwarf_die_link() 165 new_die->di_parent = right->di_parent; in dwarf_die_link()
|
| /titanic_53/usr/src/contrib/ast/src/lib/libast/misc/ |
| H A D | fts.c | 86 FTSENT* right; /* right 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) 263 register FTSENT* right; in search() local 267 left = right = lroot = rroot = 0; in search() 289 if (right) in search() 290 right->left = root; in search() 293 right = root; in search() 295 right->left = 0; in search() 303 if (root->right && (cmp = (*comparf)(&e, &root->right)) >= 0) in search() [all …]
|
| /titanic_53/usr/src/cmd/eqn/ |
| H A D | e.y | 41 %right FROM TO 43 %right SUP SUB 44 %right SIZE FONT ROMAN ITALIC BOLD FAT 45 %right UP DOWN BACK FWD 47 %right DOT DOTDOT HAT TILDE BAR UNDER VEC DYAD 106 | left eqn right { paren($1, $2, $3); } 150 right : RIGHT text { $$ = ((char *)$2)[0]; }
|
| /titanic_53/usr/src/uts/common/io/audio/drv/audiocmihd/ |
| H A D | audiocmihd.c | 371 int left, int right) in cmediahd_generic_set_play_volume() argument 375 spi_write(devc, codec_id, AK4396_RchATTCtl | 0x20, mix_scale(right, 8)); in cmediahd_generic_set_play_volume() 380 int left, int right) in xonar_d1_set_play_volume() argument 387 CS4398_VOL(right)); in xonar_d1_set_play_volume() 393 CS4362A_VOL(right)); in xonar_d1_set_play_volume() 399 CS4362A_VOL(right)); in xonar_d1_set_play_volume() 405 CS4362A_VOL(right)); in xonar_d1_set_play_volume() 412 int left, int right) in xonar_d2_set_play_volume() argument 415 spi_write(devc, xd2_codec_map[codec_id], 17, mix_scale(right, 8)); in xonar_d2_set_play_volume() 420 int left, int right) in xonar_stx_set_play_volume() argument [all …]
|
| /titanic_53/usr/src/contrib/ast/src/cmd/ksh93/bltins/ |
| H A D | test.c | 465 int test_binop(Shell_t *shp,register int op,const char *left,const char *right) in test_binop() argument 472 while(*right=='0') in test_binop() 473 right++; in test_binop() 475 rnum = sh_arith(shp,right); in test_binop() 484 return(test_strmatch(shp, left, right)); in test_binop() 486 return(!test_strmatch(shp, left, right)); in test_binop() 488 return(strcoll(left, right)>0); in test_binop() 490 return(strcoll(left, right)<0); in test_binop() 492 return(strcmp(left, right)==0); in test_binop() 494 return(strcmp(left, right)!=0); in test_binop() [all …]
|
| /titanic_53/usr/src/lib/libeti/form/common/ |
| H A D | fieldtype.c | 50 #define TypeR(t) ((t)->right) 96 link_fieldtype(FIELDTYPE *left, FIELDTYPE *right) in link_fieldtype() argument 100 if ((left || right) && Alloc(t, FIELDTYPE)) { in link_fieldtype() 105 if (Status(left, ARGS) || Status(right, ARGS)) in link_fieldtype() 108 if (Status(left, CHOICE) || Status(right, CHOICE)) in link_fieldtype() 112 TypeR(t) = right; in link_fieldtype() 114 IncrType(right); /* increment reference count */ in link_fieldtype()
|
| /titanic_53/usr/src/cmd/awk_xpg4/ |
| H A D | awk3.c | 242 assign(NODE *left, NODE *right) in assign() argument 244 if (isleaf(right->n_flags)) { in assign() 245 if (right->n_type == PARM) in assign() 246 right = right->n_next; in assign() 248 right = exprreduce(right); in assign() 255 return (nassign(left, right)); in assign() 266 return (lfield(exprint(left->n_left), right)); in assign() 284 node(int type, NODE *left, NODE *right) in node() argument 290 np->n_right = right; in node() 1245 register NODE *left, *right; in arithmetic() local [all …]
|
| /titanic_53/usr/src/contrib/ast/src/lib/libcmd/ |
| H A D | expr.c | 401 register char *left,*right; in expr_cmp() local 414 right = rp.str; in expr_cmp() 416 sfsprintf(right=buff2,sizeof(buff2),"%d",rp.num); in expr_cmp() 421 np->num = streq(left,right); in expr_cmp() 424 np->num = (strcoll(left,right)>0); in expr_cmp() 427 np->num = (strcoll(left,right)<0); in expr_cmp() 430 np->num = (strcoll(left,right)>=0); in expr_cmp() 433 np->num = (strcoll(left,right)<=0); in expr_cmp() 436 np->num = !streq(left,right); in expr_cmp()
|