| /freebsd/crypto/krb5/src/lib/crypto/builtin/des/ |
| H A D | f_tables.h | 104 #define DES_SP_ENCRYPT_ROUND(left, right, temp, kp) do { \ argument 105 (temp) = (((right) >> 11) | ((right) << 21)) ^ *(kp)++; \ 110 (temp) = (((right) >> 23) | ((right) << 9)) ^ *(kp)++; \ 117 #define DES_SP_DECRYPT_ROUND(left, right, temp, kp) do { \ argument 118 (temp) = (((right) >> 23) | ((right) << 9)) ^ *(--(kp)); \ 123 (temp) = (((right) >> 11) | ((right) << 21)) ^ *(--(kp)); \ 147 #define DES_IP_LEFT_BITS(left, right) \ argument 148 ((((left) & 0x55555555) << 1) | ((right) & 0x55555555)) 149 #define DES_IP_RIGHT_BITS(left, right) \ argument 151 ( ( (unsigned DES_INT32) ((right) & 0xaaaaaaaa) ) >> 1)) [all …]
|
| H A D | f_aead.c | 38 unsigned DES_INT32 left, right; in krb5int_des_cbc_encrypt() local 50 right = load_32_be(ip + 4); in krb5int_des_cbc_encrypt() 56 right ^= load_32_be(block + 4); in krb5int_des_cbc_encrypt() 59 DES_DO_ENCRYPT(left, right, kp); in krb5int_des_cbc_encrypt() 61 store_32_be(right, block + 4); in krb5int_des_cbc_encrypt() 68 store_32_be(right, ivec + 4); in krb5int_des_cbc_encrypt() 77 unsigned DES_INT32 left, right; in krb5int_des_cbc_decrypt() local 103 cipherr = right = load_32_be(block + 4); in krb5int_des_cbc_decrypt() 106 DES_DO_DECRYPT(left, right, kp); in krb5int_des_cbc_decrypt() 108 right ^= ocipherr; in krb5int_des_cbc_decrypt() [all …]
|
| H A D | f_cbc.c | 68 unsigned DES_INT32 left, right; in des_cbc_encrypt() local 84 GET_HALF_BLOCK(right, ip); in des_cbc_encrypt() 103 right ^= temp; in des_cbc_encrypt() 114 right ^= (*(--ip) & FF_UINT32) << 8; in des_cbc_encrypt() 116 right ^= (*(--ip) & FF_UINT32) << 16; in des_cbc_encrypt() 118 right ^= (*(--ip) & FF_UINT32) << 24; in des_cbc_encrypt() 135 DES_DO_ENCRYPT(left, right, kp); in des_cbc_encrypt() 141 PUT_HALF_BLOCK(right, op); in des_cbc_encrypt() 150 unsigned DES_INT32 left, right; in des_cbc_decrypt() local 189 GET_HALF_BLOCK(right, ip); in des_cbc_decrypt() [all …]
|
| H A D | d3_aead.c | 38 unsigned DES_INT32 left, right; in krb5int_des3_cbc_encrypt() local 52 right = load_32_be(ip + 4); in krb5int_des3_cbc_encrypt() 58 right ^= load_32_be(block + 4); in krb5int_des3_cbc_encrypt() 61 DES_DO_ENCRYPT(left, right, kp1); in krb5int_des3_cbc_encrypt() 62 DES_DO_DECRYPT(left, right, kp2); in krb5int_des3_cbc_encrypt() 63 DES_DO_ENCRYPT(left, right, kp3); in krb5int_des3_cbc_encrypt() 65 store_32_be(right, block + 4); in krb5int_des3_cbc_encrypt() 72 store_32_be(right, ivec + 4); in krb5int_des3_cbc_encrypt() 83 unsigned DES_INT32 left, right; in krb5int_des3_cbc_decrypt() local 111 cipherr = right = load_32_be(block + 4); in krb5int_des3_cbc_decrypt() [all …]
|
| H A D | f_cksum.c | 58 unsigned DES_INT32 left, right; in mit_des_cbc_cksum() local 70 GET_HALF_BLOCK(right, ip); in mit_des_cbc_cksum() 89 right ^= temp; in mit_des_cbc_cksum() 100 right ^= (*(--ip) & FF_UINT32) << 8; in mit_des_cbc_cksum() 102 right ^= (*(--ip) & FF_UINT32) << 16; in mit_des_cbc_cksum() 104 right ^= (*(--ip) & FF_UINT32) << 24; in mit_des_cbc_cksum() 122 DES_DO_ENCRYPT(left, right, kp); in mit_des_cbc_cksum() 131 PUT_HALF_BLOCK(right, op); in mit_des_cbc_cksum() 138 return right & 0xFFFFFFFFUL; in mit_des_cbc_cksum()
|
| /freebsd/contrib/unbound/util/ |
| H A D | rbtree.c | 110 rbnode_type *right = node->right; in rbtree_rotate_left() local 111 node->right = right->left; in rbtree_rotate_left() 112 if (right->left != RBTREE_NULL) in rbtree_rotate_left() 113 right->left->parent = node; in rbtree_rotate_left() 115 right->parent = node->parent; in rbtree_rotate_left() 119 node->parent->left = right; in rbtree_rotate_left() 121 node->parent->right = right; in rbtree_rotate_left() 124 rbtree->root = right; in rbtree_rotate_left() 126 right->left = node; in rbtree_rotate_left() 127 node->parent = right; in rbtree_rotate_left() [all …]
|
| /freebsd/contrib/ldns/ |
| H A D | rbtree.c | 118 ldns_rbnode_t *right = node->right; in ldns_rbtree_rotate_left() local 119 node->right = right->left; in ldns_rbtree_rotate_left() 120 if (right->left != LDNS_RBTREE_NULL) in ldns_rbtree_rotate_left() 121 right->left->parent = node; in ldns_rbtree_rotate_left() 123 right->parent = node->parent; in ldns_rbtree_rotate_left() 127 node->parent->left = right; in ldns_rbtree_rotate_left() 129 node->parent->right = right; in ldns_rbtree_rotate_left() 132 rbtree->root = right; in ldns_rbtree_rotate_left() 134 right->left = node; in ldns_rbtree_rotate_left() 135 node->parent = right; in ldns_rbtree_rotate_left() [all …]
|
| /freebsd/share/misc/ |
| H A D | operator | 3 () [] -> . left to right 4 ! ~ ++ -- - (type) * & sizeof new delete right to left 5 ->* .* left to right 6 * / % left to right 7 + - left to right 8 << >> left to right 9 < <= > >= left to right 10 == != left to right 11 & left to right 12 ^ left to right [all …]
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/ |
| H A D | GCNILPSched.cpp | 42 const SUnit *pickBest(const SUnit *left, const SUnit *right); 132 static int BUCompareLatency(const SUnit *left, const SUnit *right) { in BUCompareLatency() argument 136 int RHeight = (int)right->getHeight(); in BUCompareLatency() 149 int RDepth = right->getDepth(); in BUCompareLatency() 152 << ") depth " << LDepth << " vs SU (" << right->NodeNum in BUCompareLatency() 156 if (left->Latency != right->Latency) in BUCompareLatency() 157 return left->Latency > right->Latency ? 1 : -1; in BUCompareLatency() 162 const SUnit *GCNILPScheduler::pickBest(const SUnit *left, const SUnit *right) in pickBest() argument 169 int spread = (int)left->getDepth() - (int)right->getDepth(); in pickBest() 172 << left->getDepth() << " != SU(" << right->NodeNum in pickBest() [all …]
|
| /freebsd/sys/netpfil/ipfilter/netinet/ |
| H A D | ipf_rb.h | 15 struct _t *right; \ 43 tmp1 = node->_f.right; \ 45 node->_f.right = tmp2; \ 49 head->top._f.right = tmp1; \ 50 else if (parent->_f.right == node) \ 51 parent->_f.right = tmp1; \ 66 tmp2 = tmp1->_f.right; \ 71 head->top._f.right = tmp1; \ 72 else if (parent->_f.right == node) \ 73 parent->_f.right = tmp1; \ [all …]
|
| /freebsd/contrib/wpa/src/crypto/ |
| H A D | des-internal.c | 320 u32 work, right, leftt; in desfunc() local 324 right = block[1]; in desfunc() 326 work = ((leftt >> 4) ^ right) & 0x0f0f0f0fL; in desfunc() 327 right ^= work; in desfunc() 330 work = ((leftt >> 16) ^ right) & 0x0000ffffL; in desfunc() 331 right ^= work; in desfunc() 334 work = ((right >> 2) ^ leftt) & 0x33333333L; in desfunc() 336 right ^= (work << 2); in desfunc() 338 work = ((right >> 8) ^ leftt) & 0x00ff00ffL; in desfunc() 340 right ^= (work << 8); in desfunc() [all …]
|
| /freebsd/contrib/ofed/libibverbs/ |
| H A D | memory.c | 55 struct ibv_mem_node *left, *right; member 168 mm_root->right = NULL; in ibv_fork_init() 181 while (node->right) in __mm_prev() 182 node = node->right; in __mm_prev() 195 if (node->right) { in __mm_next() 196 node = node->right; in __mm_next() 200 while (node->parent && node == node->parent->right) in __mm_next() 215 node->left = tmp->right; in __mm_rotate_right() 220 if (node->parent->right == node) in __mm_rotate_right() 221 node->parent->right = tmp; in __mm_rotate_right() [all …]
|
| /freebsd/sys/dev/sound/pci/ |
| H A D | spicds.c | 50 unsigned int left, right; member 272 spicds_set(struct spicds_info *codec, int dir, unsigned int left, unsigned int right) in spicds_set() argument 275 device_printf(codec->dev, "spicds_set(codec, %d, %d, %d)\n", dir, left, right); in spicds_set() 296 if (right >= 100) in spicds_set() 299 right = 255; in spicds_set() 301 right = 127; in spicds_set() 305 right = right + 27; in spicds_set() 309 right = right * 255 / 100; in spicds_set() 312 right = right * 127 / 100; in spicds_set() 316 device_printf(codec->dev, "spicds_set(): AK4524(REC) %d/%d\n", left, right); in spicds_set() [all …]
|
| /freebsd/sys/netgraph/ |
| H A D | ng_tee.c | 80 struct hookinfo right; member 177 hinfo = &privdata->right; in ng_tee_newhook() 184 if (privdata->right.dest) in ng_tee_newhook() 185 privdata->right.dup = privdata->right.dest; in ng_tee_newhook() 186 privdata->right.dest = hinfo; in ng_tee_newhook() 190 if (privdata->right.dest) in ng_tee_newhook() 191 privdata->right.dup = hinfo; in ng_tee_newhook() 193 privdata->right.dest = hinfo; in ng_tee_newhook() 237 bcopy(&sc->right.stats, &stats->right, in ng_tee_rcvmsg() 238 sizeof(stats->right)); in ng_tee_rcvmsg() [all …]
|
| /freebsd/sys/kern/ |
| H A D | subr_capability.c | 119 right_to_index(uint64_t right) in right_to_index() argument 127 idx = CAPIDXBIT(right); in right_to_index() 135 uint64_t right; in cap_rights_vset() local 144 right = (uint64_t)va_arg(ap, unsigned long long); in cap_rights_vset() 145 if (right == 0) in cap_rights_vset() 147 assert(CAPRVER(right) == 0); in cap_rights_vset() 148 i = right_to_index(right); in cap_rights_vset() 151 assert(CAPIDXBIT(rights->cr_rights[i]) == CAPIDXBIT(right)); in cap_rights_vset() 152 rights->cr_rights[i] |= right; in cap_rights_vset() 153 assert(CAPIDXBIT(rights->cr_rights[i]) == CAPIDXBIT(right)); in cap_rights_vset() [all …]
|
| /freebsd/tests/sys/kern/ |
| H A D | socket_splice.c | 204 int right[2]; member 218 tcp4_socketpair(sc->right); in splice_conn_init_limits() 219 splice_pair(sc->left[1], sc->right[0], max, tv); in splice_conn_init_limits() 237 data = fionread(sc->right[0]); in splice_conn_check_empty() 239 data = fionread(sc->right[1]); in splice_conn_check_empty() 248 checked_close(sc->right[0]); in splice_conn_fini() 249 checked_close(sc->right[1]); in splice_conn_fini() 257 noblocking(sc->right[0]); in splice_conn_noblocking() 258 noblocking(sc->right[1]); in splice_conn_noblocking() 272 check_nspliced(sc.right[0], 0); in ATF_TC_BODY() [all …]
|
| /freebsd/contrib/libdiff/lib/ |
| H A D | diff_output_unidiff.c | 72 int right_start = diff_atom_root_idx(r->right, c->right_start); in diff_chunk_get_right_start() 81 return MIN(r->right->atoms.len, in diff_chunk_get_right_end() 122 .right = { in diff_chunk_context_get() 135 || diff_ranges_touch(&cc->right, &other->right); in diff_chunk_contexts_touch() 144 diff_ranges_merge(&cc->right, &other->right); in diff_chunk_contexts_merge() 246 if (diff_range_empty(&cc->left) && diff_range_empty(&cc->right)) in output_unidiff_chunk() 296 right_len = cc->right.end - cc->right.start; in output_unidiff_chunk() 297 if (result->right->atoms.len == 0) in output_unidiff_chunk() 299 else if (right_len == 0 && cc->right.start > 0) in output_unidiff_chunk() 300 right_start = cc->right.start; in output_unidiff_chunk() [all …]
|
| /freebsd/crypto/krb5/src/lib/gssapi/generic/ |
| H A D | maptest.c | 12 static int eltcmp(elt left, elt right) in eltcmp() argument 14 if (left.a < right.a) in eltcmp() 16 if (left.a > right.a) in eltcmp() 18 if (left.b < right.b) in eltcmp() 20 if (left.b > right.b) in eltcmp() 28 static int intcmp(int left, int right) in intcmp() argument 30 if (left < right) in intcmp() 32 if (left > right) in intcmp()
|
| /freebsd/tools/test/stress2/misc/ |
| H A D | chain.sh | 48 coroutine void f(chan left, chan right) { 49 chs(left, int, 1 + chr(right, int)); 58 chan right = leftmost; 62 left = right; 63 right = chmake(int, 0); 64 go(f(left, right)); 66 chs(right, int, 0);
|
| /freebsd/share/i18n/csmapper/APPLE/ |
| H A D | HEBREW%UCS.src | 26 # b3,c1 2002-Dec-19 Don't require left-right context for digits 152 # duplicate code points, one with a left-right direction attribute and 153 # the other with a right-left direction attribute. 155 # For example, plus sign is encoded at 0x2B with a left-right 156 # attribute, and at 0xAB with a right-left attribute. However, there 166 # ELLIPSIS with strong right-left direction. However, the Unicode 178 # 0xD4 -> 0x2018 LEFT SINGLE QUOTATION MARK, right-left 183 # 0xD4 -> 0x2007 FIGURE SPACE, right-left 206 # must have a strong left-right context, and a tag of <RL> indicates 207 # a right-left context. [all …]
|
| /freebsd/crypto/openssl/test/testutil/ |
| H A D | format_output.c | 23 static void test_diff_header(const char *left, const char *right) in test_diff_header() argument 26 test_printf_stderr("+++ %s\n", right); in test_diff_header() 40 const char *left, const char *right, in test_fail_string_common() argument 50 test_fail_message_prefix(prefix, file, line, type, left, right, op); in test_fail_string_common() 59 test_diff_header(left, right); in test_fail_string_common() 67 test_diff_header(left, right); in test_fail_string_common() 128 const char *left, const char *right, in test_fail_string_message() argument 132 test_fail_string_common(prefix, file, line, type, left, right, op, in test_fail_string_message() 267 const char *left, const char *right, in test_fail_bignum_common() argument 280 test_fail_message_prefix(prefix, file, line, type, left, right, op); in test_fail_bignum_common() [all …]
|
| /freebsd/contrib/jemalloc/src/ |
| H A D | stats.c | 322 COL_HDR(row, size, NULL, right, 20, size) in stats_arena_bins_print() 323 COL_HDR(row, ind, NULL, right, 4, unsigned) in stats_arena_bins_print() 324 COL_HDR(row, allocated, NULL, right, 13, uint64) in stats_arena_bins_print() 325 COL_HDR(row, nmalloc, NULL, right, 13, uint64) in stats_arena_bins_print() 326 COL_HDR(row, nmalloc_ps, "(#/sec)", right, 8, uint64) in stats_arena_bins_print() 327 COL_HDR(row, ndalloc, NULL, right, 13, uint64) in stats_arena_bins_print() 328 COL_HDR(row, ndalloc_ps, "(#/sec)", right, 8, uint64) in stats_arena_bins_print() 329 COL_HDR(row, nrequests, NULL, right, 13, uint64) in stats_arena_bins_print() 330 COL_HDR(row, nrequests_ps, "(#/sec)", right, 10, uint64) in stats_arena_bins_print() 336 COL_HDR_INIT(row, prof_live_requested, NULL, right, 2 in stats_arena_bins_print() [all...] |
| /freebsd/crypto/heimdal/doc/doxyout/gssapi/html/ |
| H A D | doxygen.css | 43 margin-right: 15px; 122 margin-right: 8px; 124 padding-right: 6px; 150 margin-right: 20px; 156 padding-right : 10px; 161 margin-right : 0px; 169 padding-right : 10px; 174 margin-right : 0px; 208 border-right: 1px none #E0E0E0; 219 border-right: 1px none #E0E0E0; [all …]
|
| /freebsd/crypto/heimdal/doc/doxyout/hcrypto/html/ |
| H A D | doxygen.css | 43 margin-right: 15px; 122 margin-right: 8px; 124 padding-right: 6px; 150 margin-right: 20px; 156 padding-right : 10px; 161 margin-right : 0px; 169 padding-right : 10px; 174 margin-right : 0px; 208 border-right: 1px none #E0E0E0; 219 border-right: 1px none #E0E0E0; [all …]
|
| /freebsd/crypto/heimdal/doc/doxyout/hdb/html/ |
| H A D | doxygen.css | 43 margin-right: 15px; 122 margin-right: 8px; 124 padding-right: 6px; 150 margin-right: 20px; 156 padding-right : 10px; 161 margin-right : 0px; 169 padding-right : 10px; 174 margin-right : 0px; 208 border-right: 1px none #E0E0E0; 219 border-right: 1px none #E0E0E0; [all …]
|