/freebsd/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/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/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/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/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/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/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/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/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/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->Previous->is(tok::r_square) && in isLambdaParameterList() 75 Left->Previous->MatchingParen && in isLambdaParameterList() 76 Left->Previous->MatchingParen->is(TT_LambdaLSquare); in isLambdaParameterList() 175 FormatToken *Left = CurrentToken->Previous; in parseAngle() local [all …]
|
/freebsd/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 …]
|
/freebsd/tests/sys/kern/ |
H A D | socket_splice.c | 199 * A structure representing a spliced pair of connections. left[1] is 203 int left[2]; member 217 tcp4_socketpair(sc->left); in splice_conn_init_limits() 219 splice_pair(sc->left[1], sc->right[0], max, tv); in splice_conn_init_limits() 233 data = fionread(sc->left[0]); in splice_conn_check_empty() 234 ATF_REQUIRE_MSG(data == 0, "unexpected data on left[0]: %d", data); in splice_conn_check_empty() 235 data = fionread(sc->left[1]); in splice_conn_check_empty() 236 ATF_REQUIRE_MSG(data == 0, "unexpected data on left[1]: %d", data); in splice_conn_check_empty() 246 checked_close(sc->left[0]); in splice_conn_fini() 247 checked_close(sc->left[1]); in splice_conn_fini() [all …]
|
/freebsd/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->getDepth() - (int)right->getDepth(); in pickBest() [all …]
|
/freebsd/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/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/contrib/unbound/compat/ |
H A D | snprintf.c | 79 print_pad(char** at, size_t* left, int* ret, char p, int num) in print_pad() argument 82 if(*left > 1) { in print_pad() 84 (*left)--; in print_pad() 211 spool_str_rev(char** at, size_t* left, int* ret, const char* buf, int len) in spool_str_rev() argument 215 if(*left > 1) { in spool_str_rev() 217 (*left)--; in spool_str_rev() 225 spool_str(char** at, size_t* left, int* ret, const char* buf, int len) in spool_str() argument 229 if(*left > 1) { in spool_str() 231 (*left)--; in spool_str() 239 print_num(char** at, size_t* left, int* ret, int minw, int precision, in print_num() argument [all …]
|
/freebsd/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 …]
|
/freebsd/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/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/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/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/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/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/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/contrib/wpa/src/tls/ |
H A D | tlsv1_client_read.c | 82 size_t left, len, i; in tls_process_server_hello() local 95 left = *in_len; in tls_process_server_hello() 97 if (left < 4) in tls_process_server_hello() 113 left -= 4; in tls_process_server_hello() 115 if (len > left) in tls_process_server_hello() 224 "TLSv1: Invalid ServerHello extension length: %u (left: %u)", in tls_process_server_hello() 358 size_t left, len, list_len, cert_len, idx; in tls_process_certificate() local 372 left = *in_len; in tls_process_certificate() 374 if (left < 4) { in tls_process_certificate() 376 "(len=%lu)", (unsigned long) left); in tls_process_certificate() [all …]
|