/titanic_44/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_44/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_44/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_44/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_44/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_44/usr/src/lib/libast/common/cdt/ |
H A D | dttree.c | 63 t = root->right; 77 { while((t = root->right) ) 102 l->right = root->left; 103 r->left = root->right; 133 if(!(t = cmp < 0 ? t->left : t->right) ) 150 root = t->right; 154 { t = root->right; 158 root = t->right; 190 if(!(root = t->right) ) 201 { if((t = root->right) ) [all …]
|
H A D | dthash.c | 86 { r = t->right; 91 p->right = r; 93 t->right = *is; *is = t; 138 { r = t->right; 156 for(; t->right; t = t->right) 172 for(p = NIL(Dtlink_t*), t = *s; t; p = t, t = t->right) 208 for(p = NIL(Dtlink_t*); t; p = t, t = t->right) 226 p->right = t->right; 227 t->right = *s; 271 { r->right = t->right; [all …]
|
H A D | dtrenew.c | 50 { if(!e->right ) /* make left child the new root */ 53 { dt->data->here = e->right; 57 { for(t = e->right; t->left; t = t->left) 66 *s = e->right; 68 { for(; t->right != e; t = t->right) 70 t->right = e->right;
|
H A D | dtlist.c | 65 { t = r->right; 100 t->left->right = r; 101 r->right = t; 108 r->right = t = dt->data->head; 118 { t->left->right = r; 126 r->right = NIL(Dtlink_t*); 138 for(r = dt->data->head; r; r = r->right) 151 if(r->right) 152 r->right->left = r->left; 154 { dt->data->head = r->right; [all …]
|
H A D | dtflatten.c | 48 last->right = t; 50 while(last->right) 51 last = last->right; 61 for(list = last = r, r = r->right; r; last = r, r = r->right) 66 last->right = r;
|
H A D | dttreeset.c | 44 l = l->right; 46 mid = l->right; l->right = NIL(Dtlink_t*); 48 mid->right = treebalance(mid->right, size - (n + 1));
|
H A D | dthdr.h | 68 #define rrotate(x,y) ((x)->left = (y)->right, (y)->right = (x)) 69 #define lrotate(x,y) ((x)->right = (y)->left, (y)->left = (x)) 71 #define llink(l,x) ((l) = (l)->right = (x) )
|
/titanic_44/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_44/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_44/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_44/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_44/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_44/usr/src/common/avl/ |
H A D | avl.c | 139 int right = 1 - left; in avl_walk() local 157 node->avl_child[right] != NULL; in avl_walk() 158 node = node->avl_child[right]) in avl_walk() 169 if (was_child == right) in avl_walk() 305 int right = 1 - left; in avl_rotation() local 357 cright = child->avl_child[right]; in avl_rotation() 367 child->avl_child[right] = node; in avl_rotation() 369 AVL_SETCHILD(node, right); in avl_rotation() 419 gchild = child->avl_child[right]; in avl_rotation() 421 gright = gchild->avl_child[right]; in avl_rotation() [all …]
|
/titanic_44/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_44/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_44/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 …]
|
/titanic_44/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 …]
|
/titanic_44/usr/src/tools/ctf/dwarf/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_44/usr/src/lib/libast/common/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_44/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]; }
|