/freebsd-src/lib/libugidfw/ |
H A D | ugidfw.c | 68 size_t left, len; in bsde_rule_to_string() local 72 left = buflen; in bsde_rule_to_string() 74 len = snprintf(cur, left, "subject "); in bsde_rule_to_string() 75 if (len < 0 || len > left) in bsde_rule_to_string() 77 left -= len; in bsde_rule_to_string() 81 len = snprintf(cur, left, "not "); in bsde_rule_to_string() 82 if (len < 0 || len > left) in bsde_rule_to_string() 84 left -= len; in bsde_rule_to_string() 92 len = snprintf(cur, left, "! "); in bsde_rule_to_string() 93 if (len < 0 || len > left) in bsde_rule_to_string() [all …]
|
/freebsd-src/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-src/contrib/unbound/util/ |
H A D | rbtree.c | 55 RBTREE_NULL, /* Left. */ 61 /** rotate subtree left (to preserve redblack property) */ 104 * Rotates the node to the left. 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() 118 if (node == node->parent->left) { in rbtree_rotate_left() 119 node->parent->left = right; in rbtree_rotate_left() 126 right->left = node; in rbtree_rotate_left() 137 rbnode_type *left = node->left; in rbtree_rotate_right() local [all …]
|
/freebsd-src/contrib/ldns/ |
H A D | rbtree.c | 57 LDNS_RBTREE_NULL, /* Left. */ 64 /** rotate subtree left (to preserve redblack property) */ 112 * Rotates the node to the left. 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() 126 if (node == node->parent->left) { in ldns_rbtree_rotate_left() 127 node->parent->left = right; in ldns_rbtree_rotate_left() 134 right->left = node; in ldns_rbtree_rotate_left() 145 ldns_rbnode_t *left = node->left; in ldns_rbtree_rotate_right() local [all …]
|
/freebsd-src/share/i18n/csmapper/APPLE/ |
H A D | HEBREW%UCS.src | 26 # b3,c1 2002-Dec-19 Don't require left-right context for digits 130 # - Right-left versions of certain ASCII punctuation, symbols and 135 # the LEFT SINGLE QUOTATION MARK at 0xD4 is replaced by FIGURE 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 [all …]
|
/freebsd-src/share/man/man7/ |
H A D | operator.7 | 39 .It "() [] -> . left to right" 40 .It "! ~ ++ -- - (type) * & sizeof new delete right to left" 41 .It "->* .* left to right" 42 .It "* / % left to right" 43 .It "+ - left to right" 44 .It "<< >> left to right" 45 .It "< <= > >= left to right" 46 .It "== != left to right" 47 .It "& left to right" 48 .It "^ left to right" [all …]
|
/freebsd-src/contrib/ofed/libibverbs/ |
H A D | memory.c | 55 struct ibv_mem_node *left, *right; member 167 mm_root->left = NULL; in ibv_fork_init() 179 if (node->left) { in __mm_prev() 180 node = node->left; in __mm_prev() 184 while (node->parent && node == node->parent->left) in __mm_prev() 197 while (node->left) in __mm_next() 198 node = node->left; in __mm_next() 213 tmp = node->left; in __mm_rotate_right() 215 node->left = tmp->right; in __mm_rotate_right() 216 if (node->left) in __mm_rotate_right() [all …]
|
/freebsd-src/sys/netpfil/ipfilter/netinet/ |
H A D | ipf_rb.h | 14 struct _t *left; \ 44 tmp2 = tmp1->_f.left; \ 53 parent->_f.left = tmp1; \ 54 tmp1->_f.left = node; \ 65 tmp1 = node->_f.left; \ 67 node->_f.left = tmp2; \ 75 parent->_f.left = tmp1; \ 87 node->_f.left = &_n##_rb_zero; \ 92 p = &n->_f.left; \ 103 if (parent == gparent->_f.left) { \ [all …]
|
/freebsd-src/crypto/openssl/crypto/bio/ |
H A D | bio_cb.c | 25 int left; in BIO_debug_callback_ex() local 31 left = BIO_snprintf(buf, sizeof(buf), "BIO[%p]: ", (void *)bio); in BIO_debug_callback_ex() 34 if (left < 0) in BIO_debug_callback_ex() 35 left = 0; in BIO_debug_callback_ex() 36 p = buf + left; in BIO_debug_callback_ex() 37 left = sizeof(buf) - left; in BIO_debug_callback_ex() 41 BIO_snprintf(p, left, "Free - %s\n", bio->method->name); in BIO_debug_callback_ex() 45 BIO_snprintf(p, left, "read(%d,%zu) - %s fd=%d\n", in BIO_debug_callback_ex() 49 BIO_snprintf(p, left, "read(%d,%zu) - %s\n", in BIO_debug_callback_ex() 54 BIO_snprintf(p, left, "write(%d,%zu) - %s fd=%d\n", in BIO_debug_callback_ex() [all …]
|
/freebsd-src/sys/contrib/openzfs/lib/libspl/include/ |
H A D | assert.h | 86 #define VERIFY3B(LEFT, OP, RIGHT) \ argument 88 const boolean_t __left = (boolean_t)(LEFT); \ 92 "%s %s %s (0x%llx %s 0x%llx)", #LEFT, #OP, #RIGHT, \ 96 #define VERIFY3S(LEFT, OP, RIGHT) \ argument 98 const int64_t __left = (int64_t)(LEFT); \ 102 "%s %s %s (0x%llx %s 0x%llx)", #LEFT, #OP, #RIGHT, \ 106 #define VERIFY3U(LEFT, OP, RIGHT) \ argument 108 const uint64_t __left = (uint64_t)(LEFT); \ 112 "%s %s %s (0x%llx %s 0x%llx)", #LEFT, #OP, #RIGHT, \ 116 #define VERIFY3P(LEFT, OP, RIGHT) \ argument [all …]
|
/freebsd-src/contrib/llvm-project/clang/lib/Format/ |
H A D | TokenAnnotator.cpp | 63 /// With `Left` being '(', check if we're at either `[...](` or 65 static bool isLambdaParameterList(const FormatToken *Left) { in isLambdaParameterList() argument 67 if (Left->Previous && Left->Previous->is(tok::greater) && in isLambdaParameterList() 68 Left->Previous->MatchingParen && in isLambdaParameterList() 69 Left->Previous->MatchingParen->is(TT_TemplateOpener)) { in isLambdaParameterList() 70 Left = Left->Previous->MatchingParen; in isLambdaParameterList() 74 return Left->Previous && Left in isLambdaParameterList() 173 FormatToken *Left = CurrentToken->Previous; parseAngle() local 621 FormatToken *Left = CurrentToken->Previous; parseSquare() local 934 updateParameterCount(FormatToken * Left,FormatToken * Current) updateParameterCount() argument 3724 const FormatToken &Left = *Tok.Previous; splitPenalty() local 3951 spaceRequiredBetween(const AnnotatedLine & Line,const FormatToken & Left,const FormatToken & Right) const spaceRequiredBetween() argument 4402 const FormatToken &Left = *Right.Previous; spaceRequiredBefore() local 4982 const FormatToken &Left = *Right.Previous; mustBreakBefore() local 5414 const FormatToken &Left = *Right.Previous; canBreakBefore() local [all...] |
/freebsd-src/contrib/libdiff/test/ |
H A D | results_test.c | 34 .left = &d_left, in test_minus_after_plus() 38 diff_atomize_text_by_line(NULL, result->left); in test_minus_after_plus() 45 diff_data_init_subsection(&state.left, result->left, in test_minus_after_plus() 46 result->left->atoms.head, in test_minus_after_plus() 47 result->left->atoms.len); in test_minus_after_plus() 54 &state.left.atoms.head[0], 2, in test_minus_after_plus() 59 &state.left.atoms.head[2], 0, in test_minus_after_plus() 64 &state.left.atoms.head[2], 3, in test_minus_after_plus() 69 &state.left.atoms.head[5], 2, in test_minus_after_plus() 82 (long long)(c->left_start ? diff_atom_root_idx(result->left, c->left_start) : -1LL), in test_minus_after_plus() [all …]
|
/freebsd-src/crypto/openssh/ |
H A D | sftp-realpath.c | 55 * in which case the path which caused trouble is left in (resolved). 65 char left[PATH_MAX], next_token[PATH_MAX], symlink[PATH_MAX]; in sftp_realpath() local 89 left_len = strlcpy(left, path + 1, sizeof(left)); in sftp_realpath() 99 left_len = strlcpy(left, path, sizeof(left)); in sftp_realpath() 101 if (left_len >= sizeof(left) || resolved_len >= PATH_MAX) { in sftp_realpath() 107 * Iterate over path components in `left'. in sftp_realpath() 111 * Extract the next path component and adjust `left' in sftp_realpath() 114 p = strchr(left, '/'); in sftp_realpath() 115 s = p ? p : left + left_len; in sftp_realpath() 116 if (s - left >= (ptrdiff_t)sizeof(next_token)) { in sftp_realpath() [all …]
|
/freebsd-src/contrib/llvm-project/llvm/lib/Target/AMDGPU/ |
H A D | GCNILPSched.cpp | 42 const SUnit *pickBest(const SUnit *left, const SUnit *right); 130 // Return -1 if left has higher priority, 1 if right has higher priority. 132 static int BUCompareLatency(const SUnit *left, const SUnit *right) { in BUCompareLatency() argument 135 int LHeight = (int)left->getHeight(); in BUCompareLatency() 148 int LDepth = left->getDepth(); in BUCompareLatency() 151 LLVM_DEBUG(dbgs() << " Comparing latency of SU (" << left->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 in pickBest() [all...] |
/freebsd-src/contrib/libdiff/lib/ |
H A D | diff_output_unidiff.c | 55 int left_start = diff_atom_root_idx(r->left, c->left_start); in diff_chunk_get_left_start() 64 return MIN(r->left->atoms.len, in diff_chunk_get_left_end() 118 .left = { in diff_chunk_context_get() 134 || diff_ranges_touch(&cc->left, &other->left) in diff_chunk_contexts_touch() 143 diff_ranges_merge(&cc->left, &other->left); in diff_chunk_contexts_merge() 246 if (diff_range_empty(&cc->left) && diff_range_empty(&cc->right)) in output_unidiff_chunk() 288 left_len = cc->left.end - cc->left.start; in output_unidiff_chunk() 289 if (result->left->atoms.len == 0) in output_unidiff_chunk() 291 else if (left_len == 0 && cc->left.start > 0) in output_unidiff_chunk() 292 left_start = cc->left.start; in output_unidiff_chunk() [all …]
|
H A D | diff_main.c | 70 buf_cmp(const unsigned char *left, size_t left_len, in buf_cmp() argument 79 unsigned char cl = left[il]; in buf_cmp() 99 unsigned char cl = left[il++]; in buf_cmp() 112 cmp = memcmp(left, right, MIN(left_len, right_len)); in buf_cmp() 122 const struct diff_atom *left, in diff_atom_cmp() argument 126 int flags = (left->root->diff_flags | right->root->diff_flags); in diff_atom_cmp() 129 if (!left->len && !right->len) { in diff_atom_cmp() 138 if (!left->len) { in diff_atom_cmp() 144 if (left->at != NULL && right->at != NULL) { in diff_atom_cmp() 145 *cmp = buf_cmp(left->at, left->len, right->at, right->len, in diff_atom_cmp() [all …]
|
/freebsd-src/sys/netgraph/ |
H A D | ng_tee.c | 45 * It has 4 hooks: left, right, left2right, and right2left. Data 46 * entering from the right is passed to the left and duplicated on 47 * right2left, and data entering from the left is passed to the right 49 * sent to left, and data from right2left to right. 79 struct hookinfo left; member 178 if (privdata->left.dest) in ng_tee_newhook() 179 privdata->left.dup = privdata->left.dest; in ng_tee_newhook() 180 privdata->left.dest = hinfo; in ng_tee_newhook() 183 hinfo = &privdata->left; in ng_tee_newhook() 196 if (privdata->left.dest) in ng_tee_newhook() [all …]
|
/freebsd-src/crypto/heimdal/doc/doxyout/ntlm/html/ |
H A D | doxygen.css | 110 margin-left: -1cm 121 margin-left: 2px; 123 padding-left: 6px; 137 margin-left: 16px; 143 margin-left: 16px; 151 margin-left: 20px; 158 padding-left : 10px; 160 margin-left : 0px; 171 padding-left : 10px; 173 margin-left : 0px; [all …]
|
/freebsd-src/crypto/heimdal/doc/doxyout/hx509/html/ |
H A D | doxygen.css | 110 margin-left: -1cm 121 margin-left: 2px; 123 padding-left: 6px; 137 margin-left: 16px; 143 margin-left: 16px; 151 margin-left: 20px; 158 padding-left : 10px; 160 margin-left : 0px; 171 padding-left : 10px; 173 margin-left : 0px; [all …]
|
/freebsd-src/crypto/heimdal/doc/doxyout/gssapi/html/ |
H A D | doxygen.css | 110 margin-left: -1cm 121 margin-left: 2px; 123 padding-left: 6px; 137 margin-left: 16px; 143 margin-left: 16px; 151 margin-left: 20px; 158 padding-left : 10px; 160 margin-left : 0px; 171 padding-left : 10px; 173 margin-left : 0px; [all …]
|
/freebsd-src/crypto/heimdal/doc/doxyout/hcrypto/html/ |
H A D | doxygen.css | 110 margin-left: -1cm 121 margin-left: 2px; 123 padding-left: 6px; 137 margin-left: 16px; 143 margin-left: 16px; 151 margin-left: 20px; 158 padding-left : 10px; 160 margin-left : 0px; 171 padding-left : 10px; 173 margin-left : 0px; [all …]
|
/freebsd-src/crypto/heimdal/doc/doxyout/hdb/html/ |
H A D | doxygen.css | 110 margin-left: -1cm 121 margin-left: 2px; 123 padding-left: 6px; 137 margin-left: 16px; 143 margin-left: 16px; 151 margin-left: 20px; 158 padding-left : 10px; 160 margin-left : 0px; 171 padding-left : 10px; 173 margin-left : 0px; [all …]
|
/freebsd-src/crypto/heimdal/doc/doxyout/krb5/html/ |
H A D | doxygen.css | 110 margin-left: -1cm 121 margin-left: 2px; 123 padding-left: 6px; 137 margin-left: 16px; 143 margin-left: 16px; 151 margin-left: 20px; 158 padding-left : 10px; 160 margin-left : 0px; 171 padding-left : 10px; 173 margin-left : 0px; [all …]
|
/freebsd-src/crypto/heimdal/doc/doxyout/wind/html/ |
H A D | doxygen.css | 110 margin-left: -1cm 121 margin-left: 2px; 123 padding-left: 6px; 137 margin-left: 16px; 143 margin-left: 16px; 151 margin-left: 20px; 158 padding-left : 10px; 160 margin-left : 0px; 171 padding-left : 10px; 173 margin-left : 0px; [all …]
|
/freebsd-src/contrib/ldns/compat/ |
H A D | snprintf.c | 78 print_pad(char** at, size_t* left, int* ret, char p, int num) in print_pad() argument 81 if(*left > 1) { in print_pad() 83 (*left)--; in print_pad() 210 spool_str_rev(char** at, size_t* left, int* ret, const char* buf, int len) in spool_str_rev() argument 214 if(*left > 1) { in spool_str_rev() 216 (*left)--; in spool_str_rev() 224 spool_str(char** at, size_t* left, int* ret, const char* buf, int len) in spool_str() argument 228 if(*left > 1) { in spool_str() 230 (*left)--; in spool_str() 238 print_num(char** at, size_t* left, int* ret, int minw, int precision, in print_num() argument [all …]
|