| /freebsd-12-stable/lib/libugidfw/ |
| D | ugidfw.c | 70 size_t left, len; in bsde_rule_to_string() local 74 left = buflen; in bsde_rule_to_string() 76 len = snprintf(cur, left, "subject "); in bsde_rule_to_string() 77 if (len < 0 || len > left) in bsde_rule_to_string() 79 left -= len; in bsde_rule_to_string() 83 len = snprintf(cur, left, "not "); in bsde_rule_to_string() 84 if (len < 0 || len > left) in bsde_rule_to_string() 86 left -= len; in bsde_rule_to_string() 94 len = snprintf(cur, left, "! "); in bsde_rule_to_string() 95 if (len < 0 || len > left) in bsde_rule_to_string() [all …]
|
| /freebsd-12-stable/contrib/unbound/util/ |
| D | rbtree.c | 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 138 node->left = left->right; in rbtree_rotate_right() 139 if (left->right != RBTREE_NULL) in rbtree_rotate_right() 140 left->right->parent = node; in rbtree_rotate_right() [all …]
|
| /freebsd-12-stable/share/misc/ |
| 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-12-stable/contrib/ldns/ |
| D | rbtree.c | 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 146 node->left = left->right; in ldns_rbtree_rotate_right() 147 if (left->right != LDNS_RBTREE_NULL) in ldns_rbtree_rotate_right() 148 left->right->parent = node; in ldns_rbtree_rotate_right() [all …]
|
| /freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/ |
| 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 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() 171 LLVM_DEBUG(dbgs() << "Depth of SU(" << left->NodeNum << "): " in pickBest() [all …]
|
| /freebsd-12-stable/contrib/ofed/libibverbs/ |
| 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-12-stable/contrib/unbound/compat/ |
| 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-12-stable/contrib/ldns/compat/ |
| 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-12-stable/contrib/binutils/libiberty/ |
| D | splay-tree.c | 85 if (active->left) in splay_tree_delete_helper() 87 KDEL (active->left->key); in splay_tree_delete_helper() 88 VDEL (active->left->value); in splay_tree_delete_helper() 89 active->left->key = (splay_tree_key)pending; in splay_tree_delete_helper() 90 pending = (splay_tree_node)(active->left); in splay_tree_delete_helper() 118 p->left = tmp; in rotate_left() 129 tmp = n->left; in rotate_right() 130 n->left = p; in rotate_right() 156 c = n->left; in splay_tree_splay() 166 || (cmp2 < 0 && !c->left) in splay_tree_splay() [all …]
|
| /freebsd-12-stable/contrib/gcclibs/libiberty/ |
| D | splay-tree.c | 85 if (active->left) in splay_tree_delete_helper() 87 KDEL (active->left->key); in splay_tree_delete_helper() 88 VDEL (active->left->value); in splay_tree_delete_helper() 89 active->left->key = (splay_tree_key)pending; in splay_tree_delete_helper() 90 pending = (splay_tree_node)(active->left); in splay_tree_delete_helper() 118 p->left = tmp; in rotate_left() 129 tmp = n->left; in rotate_right() 130 n->left = p; in rotate_right() 156 c = n->left; in splay_tree_splay() 166 || (cmp2 < 0 && !c->left) in splay_tree_splay() [all …]
|
| /freebsd-12-stable/crypto/openssl/crypto/bio/ |
| D | bio_cb.c | 24 int len, left; in BIO_debug_callback() local 35 left = sizeof(buf) - len; in BIO_debug_callback() 39 BIO_snprintf(p, left, "Free - %s\n", bio->method->name); in BIO_debug_callback() 43 BIO_snprintf(p, left, "read(%d,%lu) - %s fd=%d\n", in BIO_debug_callback() 47 BIO_snprintf(p, left, "read(%d,%lu) - %s\n", in BIO_debug_callback() 52 BIO_snprintf(p, left, "write(%d,%lu) - %s fd=%d\n", in BIO_debug_callback() 56 BIO_snprintf(p, left, "write(%d,%lu) - %s\n", in BIO_debug_callback() 60 BIO_snprintf(p, left, "puts() - %s\n", bio->method->name); in BIO_debug_callback() 63 BIO_snprintf(p, left, "gets(%lu) - %s\n", (unsigned long)argi, in BIO_debug_callback() 67 BIO_snprintf(p, left, "ctrl(%lu) - %s\n", (unsigned long)argi, in BIO_debug_callback() [all …]
|
| /freebsd-12-stable/contrib/ipfilter/ |
| 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-12-stable/sys/netpfil/ipfilter/netinet/ |
| 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-12-stable/crypto/openssh/ |
| D | sftp-realpath.c | 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() 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() 120 memcpy(next_token, left, s - left); in sftp_realpath() 121 next_token[s - left] = '\0'; in sftp_realpath() 122 left_len -= s - left; in sftp_realpath() [all …]
|
| /freebsd-12-stable/sys/dev/sound/pci/ |
| D | spicds.c | 52 unsigned int left, right; member 274 spicds_set(struct spicds_info *codec, int dir, unsigned int left, unsigned int right) in spicds_set() argument 277 device_printf(codec->dev, "spicds_set(codec, %d, %d, %d)\n", dir, left, right); in spicds_set() 280 if (left >= 100) in spicds_set() 283 left = 255; in spicds_set() 285 left = 127; in spicds_set() 289 left = left + 27; in spicds_set() 293 left = left * 255 / 100; in spicds_set() 296 left = left * 127 / 100; in spicds_set() 318 device_printf(codec->dev, "spicds_set(): AK4524(REC) %d/%d\n", left, right); in spicds_set() [all …]
|
| /freebsd-12-stable/contrib/libstdc++/include/ext/pb_ds/detail/binary_heap_/ |
| D | erase_fn_imps.hpp | 129 const size_type left = partition(pred_t(pred)); in erase_if() local 131 _GLIBCXX_DEBUG_ASSERT(m_size >= left); in erase_if() 133 const size_type ersd = m_size - left; in erase_if() 135 for (size_type i = left; i < m_size; ++i) in erase_if() 141 resize_policy::get_new_size_for_arbitrary(left); in erase_if() 145 std::copy(m_a_entries, m_a_entries + left, a_entries); in erase_if() 156 m_size = left; in erase_if() 228 size_type left = 0; in partition() local 231 while (right + 1 != left) in partition() 233 _GLIBCXX_DEBUG_ASSERT(left <= m_size); in partition() [all …]
|
| /freebsd-12-stable/sys/netgraph/ |
| D | ng_tee.c | 75 struct hookinfo left; member 174 if (privdata->left.dest) in ng_tee_newhook() 175 privdata->left.dup = privdata->left.dest; in ng_tee_newhook() 176 privdata->left.dest = hinfo; in ng_tee_newhook() 179 hinfo = &privdata->left; in ng_tee_newhook() 192 if (privdata->left.dest) in ng_tee_newhook() 193 privdata->left.dup = hinfo; in ng_tee_newhook() 195 privdata->left.dest = hinfo; in ng_tee_newhook() 235 bcopy(&sc->left.stats, &stats->left, in ng_tee_rcvmsg() 236 sizeof(stats->left)); in ng_tee_rcvmsg() [all …]
|
| /freebsd-12-stable/lib/libc/stdlib/ |
| D | realpath.c | 60 char left[PATH_MAX], next_token[PATH_MAX], symlink[PATH_MAX]; in realpath1() local 69 left_len = strlcpy(left, path + 1, sizeof(left)); in realpath1() 77 left_len = strlcpy(left, path, sizeof(left)); in realpath1() 79 if (left_len >= sizeof(left) || resolved_len >= PATH_MAX) { in realpath1() 92 p = strchr(left, '/'); in realpath1() 94 next_token_len = p != NULL ? p - left : left_len; in realpath1() 95 memcpy(next_token, left, next_token_len); in realpath1() 100 memmove(left, p + 1, left_len + 1); in realpath1() 102 left[0] = '\0'; in realpath1() 183 left_len = strlcat(symlink, left, in realpath1() [all …]
|
| /freebsd-12-stable/usr.bin/m4/ |
| D | parser.y | 30 %left LOR 31 %left LAND 32 %left '|' 33 %left '^' 34 %left '&' 35 %left EQ NE 36 %left '<' LE '>' GE 37 %left LSHIFT RSHIFT 38 %left '+' '-' 39 %left '*' '/' '%'
|
| /freebsd-12-stable/contrib/subversion/subversion/libsvn_delta/ |
| D | compose_delta.c | 56 range_index_node_t *left, *right; member 245 node->left = node->right = NULL; in alloc_range_index_node() 269 range_index_node_t *left, *right; in splay_range_index() local 274 scratch_node.left = scratch_node.right = NULL; in splay_range_index() 275 left = right = &scratch_node; in splay_range_index() 281 if (tree->left != NULL in splay_range_index() 282 && offset < tree->left->offset) in splay_range_index() 285 range_index_node_t *const node = tree->left; in splay_range_index() 286 tree->left = node->right; in splay_range_index() 290 if (tree->left == NULL) in splay_range_index() [all …]
|
| /freebsd-12-stable/contrib/libxo/tests/core/saved/ |
| D | test_12.J.out | 1 …left","color":"blue","time":"3:45"}, {"name":"thing","color":"green","time":"2:15","hand":"left","…
|
| D | test_12.JP.out | 11 "hand": "left", 19 "hand": "left", 27 "hand": "left", 35 "hand": "left", 43 "hand": "left", 51 "hand": "left", 59 "hand": "left", 67 "hand": "left", 75 "hand": "left", 83 "hand": "left",
|
| /freebsd-12-stable/contrib/ntp/libntp/ |
| D | ntp_realpath.c | 106 char left[NTP_PATH_MAX], next_token[NTP_PATH_MAX], symlink[NTP_PATH_MAX]; in realpath1() local 115 left_len = strlcpy(left, path + 1, sizeof(left)); in realpath1() 123 left_len = strlcpy(left, path, sizeof(left)); in realpath1() 125 if (left_len >= sizeof(left) || resolved_len >= NTP_PATH_MAX) { in realpath1() 138 p = strchr(left, '/'); in realpath1() 140 next_token_len = p != NULL ? (size_t)(p - left) : left_len; in realpath1() 141 memcpy(next_token, left, next_token_len); in realpath1() 146 memmove(left, p + 1, left_len + 1); in realpath1() 148 left[0] = '\0'; in realpath1() 229 left_len = strlcat(symlink, left, in realpath1() [all …]
|
| /freebsd-12-stable/contrib/xz/src/liblzma/lz/ |
| D | lz_decoder.h | 134 uint32_t left = my_min(dict_avail, *len); in dict_repeat() local 135 *len -= left; in dict_repeat() 140 if (distance < left) { in dict_repeat() 146 } while (--left > 0); in dict_repeat() 152 left); in dict_repeat() 153 dict->pos += left; in dict_repeat() 164 if (copy_size < left) { in dict_repeat() 168 copy_size = left - copy_size; in dict_repeat() 173 left); in dict_repeat() 174 dict->pos += left; in dict_repeat() [all …]
|
| /freebsd-12-stable/contrib/wpa/src/tls/ |
| 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() 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() 384 left -= 4; in tls_process_certificate() [all …]
|