| /freebsd-src/contrib/unbound/util/ |
| H A D | rbtree.c | 2 * rbtree.c -- generic red black tree 4 * Copyright (c) 2001-2007, NLnet Labs. All rights reserved. 55 RBTREE_NULL, /* Left. */ 56 RBTREE_NULL, /* Right. */ 61 /** rotate subtree left (to preserve redblack property) */ 63 /** rotate subtree right (to preserve redblack property) */ 98 rbtree->root = RBTREE_NULL; in rbtree_init() 99 rbtree->count = 0; in rbtree_init() 100 rbtree->cmp = cmpf; in rbtree_init() 104 * Rotates the node to the left. [all …]
|
| /freebsd-src/share/misc/ |
| H A D | operator | 2 ------------------------------------------------------------- 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 [all …]
|
| /freebsd-src/contrib/ldns/ |
| H A D | rbtree.c | 2 * rbtree.c -- generic red black tree 6 * Copyright (c) 2001-2008, NLnet Labs. All rights reserved. 57 LDNS_RBTREE_NULL, /* Left. */ 58 LDNS_RBTREE_NULL, /* Right. */ 64 /** rotate subtree left (to preserve redblack property) */ 66 /** rotate subtree right (to preserve redblack property) */ 100 rbtree->root = LDNS_RBTREE_NULL; in ldns_rbtree_init() 101 rbtree->count = 0; in ldns_rbtree_init() 102 rbtree->cmp = cmpf; in ldns_rbtree_init() 112 * Rotates the node to the left. [all …]
|
| /freebsd-src/share/i18n/csmapper/APPLE/ |
| H A D | HEBREW%UCS.src | 4 SRC_ZONE 0x00-0xFF 16 # Copyright: (c) 1995-2002, 2005 by Apple Computer, Inc., all rights 23 # c02 2005-Apr-05 Update header comments; add section on 26 # b3,c1 2002-Dec-19 Don't require left-right context for digits 27 # 0x30-0x39. Change mapping of 0x81 to use 31 # b02 1999-Sep-22 Update contact e-mail address. Matches 34 # n03 1998-Feb-05 Show required Unicode character 40 # n01 1995-Nov-15 First version. Matches internal ufrm<n8>. 43 # ---------------- 68 # ------- [all …]
|
| /freebsd-src/sys/netpfil/ipfilter/netinet/ |
| H A D | ipf_rb.h | 14 struct _t *left; \ 15 struct _t *right; \ 42 parent = node->_f.parent; \ 43 tmp1 = node->_f.right; \ 44 tmp2 = tmp1->_f.left; \ 45 node->_f.right = tmp2; \ 47 tmp2->_f.parent = node; \ 49 head->top._f.right = tmp1; \ 50 else if (parent->_f.right == node) \ 51 parent->_f.right = tmp1; \ [all …]
|
| /freebsd-src/share/man/man7/ |
| H A D | operator.7 | 35 .Bd -ragged -offset indent -compact 36 .Bl -column "! ~ ++ -- - (type) * & sizeof new delete" 38 .It "-------- -------------" 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" [all …]
|
| /freebsd-src/contrib/ofed/libibverbs/ |
| H A D | memory.c | 15 * - Redistributions of source code must retain the above 19 * - Redistributions in binary form must reproduce the above 55 struct ibv_mem_node *left, *right; member 107 n = sscanf(buf, "%" SCNxPTR "-%" SCNxPTR, &range_start, &range_end); in get_page_size() 148 tmp_aligned = (void *) ((uintptr_t) tmp & ~(size - 1)); in ibv_fork_init() 166 mm_root->parent = NULL; in ibv_fork_init() 167 mm_root->left = NULL; in ibv_fork_init() 168 mm_root->right = NULL; in ibv_fork_init() 169 mm_root->color = IBV_BLACK; in ibv_fork_init() 170 mm_root->start = 0; in ibv_fork_init() [all …]
|
| /freebsd-src/contrib/libdiff/test/ |
| H A D | results_test.c | 21 printf("\n--- %s()\n", __func__); in test_minus_after_plus() 34 .left = &d_left, in test_minus_after_plus() 35 .right = &d_right, in test_minus_after_plus() 38 diff_atomize_text_by_line(NULL, result->left); in test_minus_after_plus() 39 diff_atomize_text_by_line(NULL, result->right); 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() 48 diff_data_init_subsection(&state.right, result->right, in test_minus_after_plus() 49 result->right->atoms.head, in test_minus_after_plus() [all …]
|
| /freebsd-src/contrib/llvm-project/clang/lib/Format/ |
| H A D | TokenAnnotator.cpp | 1 //===--- TokenAnnotator.cpp - Format C++ code ------ 65 isLambdaParameterList(const FormatToken * Left) isLambdaParameterList() argument 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 3725 const FormatToken &Right = Tok; 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/llvm-project/llvm/lib/Target/AMDGPU/ |
| H A D | GCNILPSched.cpp | 1 //===---------- 132 BUCompareLatency(const SUnit * left,const SUnit * right) BUCompareLatency() argument 162 pickBest(const SUnit * left,const SUnit * right) pickBest() argument [all...] |
| /freebsd-src/contrib/libdiff/lib/ |
| H A D | diff_main.c | 41 if (!chunk->left_count && !chunk->right_count) in diff_chunk_type() 43 if (!chunk->solved) in diff_chunk_type() 45 if (!chunk->right_count) in diff_chunk_type() 47 if (!chunk->left_count) in diff_chunk_type() 49 if (chunk->left_count != chunk->right_count) in diff_chunk_type() 59 if (fseeko(f, at_pos, SEEK_SET) == -1) in read_at() 70 buf_cmp(const unsigned char *left, size_t left_len, in buf_cmp() argument 71 const unsigned char *right, size_t right_len, in buf_cmp() argument 79 unsigned char cl = left[il]; in buf_cmp() 80 unsigned char cr = right[ir]; in buf_cmp() [all …]
|
| H A D | diff_output_unidiff.c | 36 return c->left_start->pos; in diff_chunk_get_left_start_pos() 42 return c->right_start->pos; in diff_chunk_get_right_start_pos() 48 return diff_range_empty(&cc->chunk); in diff_chunk_context_empty() 55 int left_start = diff_atom_root_idx(r->left, c->left_start); in diff_chunk_get_left_start() 56 return MAX(0, left_start - context_lines); in diff_chunk_get_left_start() 64 return MIN(r->left->atoms.len, in diff_chunk_get_left_end() 65 left_start + c->left_count + context_lines); in diff_chunk_get_left_end() 72 int right_start = diff_atom_root_idx(r->right, c->right_start); in diff_chunk_get_right_start() 73 return MAX(0, right_start - context_lines); in diff_chunk_get_right_start() 81 return MIN(r->right->atoms.len, in diff_chunk_get_right_end() [all …]
|
| /freebsd-src/sys/netgraph/ |
| H A D | ng_tee.c | 6 /*- 7 * Copyright (c) 1996-1999 Whistle Communications, Inc. 25 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, OR NON-INFRINGEMENT. 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 80 struct hookinfo right; member 177 hinfo = &privdata->right; in ng_tee_newhook() [all …]
|
| /freebsd-src/sys/contrib/openzfs/include/os/linux/spl/sys/ |
| H A D | debug.h | 32 * the SPL. To enable assertions use the --enable-debug with configure. 35 * PANIC() - Panic the node and print message. 36 * ASSERT() - Assert X is true, if not panic. 37 * ASSERT3B() - Assert boolean X OP Y is true, if not panic. 38 * ASSERT3S() - Assert signed X OP Y is true, if not panic. 39 * ASSERT3U() - Assert unsigned X OP Y is true, if not panic. 40 * ASSERT3P() - Assert pointer X OP Y is true, if not panic. 41 * ASSERT0() - Asser 117 VERIFY3B(LEFT,OP,RIGHT) global() argument 128 VERIFY3S(LEFT,OP,RIGHT) global() argument 139 VERIFY3U(LEFT,OP,RIGHT) global() argument 150 VERIFY3P(LEFT,OP,RIGHT) global() argument 161 VERIFY0(RIGHT) global() argument 170 VERIFY0P(RIGHT) global() argument 187 VERIFY3BF(LEFT,OP,RIGHT,STR,...) global() argument 199 VERIFY3SF(LEFT,OP,RIGHT,STR,...) global() argument 211 VERIFY3UF(LEFT,OP,RIGHT,STR,...) global() argument 223 VERIFY3PF(LEFT,OP,RIGHT,STR,...) global() argument 235 VERIFY0PF(RIGHT,STR,...) global() argument 246 VERIFY0F(RIGHT,STR,...) global() argument [all...] |
| /freebsd-src/sys/contrib/openzfs/include/os/freebsd/spl/sys/ |
| H A D | debug.h | 32 * the SPL. To enable assertions use the --enable-debug with configure. 35 * PANIC() - Panic the node and print message. 36 * ASSERT() - Assert X is true, if not panic. 37 * ASSERT3B() - Assert boolean X OP Y is true, if not panic. 38 * ASSERT3S() - Assert signed X OP Y is true, if not panic. 39 * ASSERT3U() - Assert unsigned X OP Y is true, if not panic. 40 * ASSERT3P() - Assert pointer X OP Y is true, if not panic. 41 * ASSERT0() - Asser 117 VERIFY3B(LEFT,OP,RIGHT) global() argument 128 VERIFY3S(LEFT,OP,RIGHT) global() argument 139 VERIFY3U(LEFT,OP,RIGHT) global() argument 150 VERIFY3P(LEFT,OP,RIGHT) global() argument 161 VERIFY0(RIGHT) global() argument 170 VERIFY0P(RIGHT) global() argument 187 VERIFY3BF(LEFT,OP,RIGHT,STR,...) global() argument 199 VERIFY3SF(LEFT,OP,RIGHT,STR,...) global() argument 211 VERIFY3UF(LEFT,OP,RIGHT,STR,...) global() argument 223 VERIFY3PF(LEFT,OP,RIGHT,STR,...) global() argument 235 VERIFY0PF(RIGHT,STR,...) global() argument 246 VERIFY0F(RIGHT,STR,...) global() argument [all...] |
| /freebsd-src/crypto/heimdal/doc/doxyout/ntlm/html/ |
| H A D | doxygen.css | 2 font-family: Geneva, Arial, Helvetica, sans-serif; 5 font-size: 90%; 8 text-align: center; 9 font-size: 160%; 12 font-size: 120%; 15 font-size: 100%; 18 font-weight: bold 22 background-color: #e8eef2; 24 text-align: center; 27 line-height: 140%; [all …]
|
| /freebsd-src/crypto/heimdal/doc/doxyout/hx509/html/ |
| H A D | doxygen.css | 2 font-family: Geneva, Arial, Helvetica, sans-serif; 5 font-size: 90%; 8 text-align: center; 9 font-size: 160%; 12 font-size: 120%; 15 font-size: 100%; 18 font-weight: bold 22 background-color: #e8eef2; 24 text-align: center; 27 line-height: 140%; [all …]
|
| /freebsd-src/crypto/heimdal/doc/doxyout/gssapi/html/ |
| H A D | doxygen.css | 2 font-family: Geneva, Arial, Helvetica, sans-serif; 5 font-size: 90%; 8 text-align: center; 9 font-size: 160%; 12 font-size: 120%; 15 font-size: 100%; 18 font-weight: bold 22 background-color: #e8eef2; 24 text-align: center; 27 line-height: 140%; [all …]
|
| /freebsd-src/crypto/heimdal/doc/doxyout/hcrypto/html/ |
| H A D | doxygen.css | 2 font-family: Geneva, Arial, Helvetica, sans-serif; 5 font-size: 90%; 8 text-align: center; 9 font-size: 160%; 12 font-size: 120%; 15 font-size: 100%; 18 font-weight: bold 22 background-color: #e8eef2; 24 text-align: center; 27 line-height: 140%; [all …]
|
| /freebsd-src/crypto/heimdal/doc/doxyout/hdb/html/ |
| H A D | doxygen.css | 2 font-family: Geneva, Arial, Helvetica, sans-serif; 5 font-size: 90%; 8 text-align: center; 9 font-size: 160%; 12 font-size: 120%; 15 font-size: 100%; 18 font-weight: bold 22 background-color: #e8eef2; 24 text-align: center; 27 line-height: 140%; [all …]
|
| /freebsd-src/crypto/heimdal/doc/doxyout/krb5/html/ |
| H A D | doxygen.css | 2 font-family: Geneva, Arial, Helvetica, sans-serif; 5 font-size: 90%; 8 text-align: center; 9 font-size: 160%; 12 font-size: 120%; 15 font-size: 100%; 18 font-weight: bold 22 background-color: #e8eef2; 24 text-align: center; 27 line-height: 140%; [all …]
|
| /freebsd-src/crypto/heimdal/doc/doxyout/wind/html/ |
| H A D | doxygen.css | 2 font-family: Geneva, Arial, Helvetica, sans-serif; 5 font-size: 90%; 8 text-align: center; 9 font-size: 160%; 12 font-size: 120%; 15 font-size: 100%; 18 font-weight: bold 22 background-color: #e8eef2; 24 text-align: center; 27 line-height: 140%; [all …]
|
| /freebsd-src/share/doc/psd/02.implement/ |
| H A D | fig2.pic | 4 .\" Copyright (C) Caldera International Inc. 2001-2002. All rights reserved. 44 A: box invis ht .4i wid 1i "Per-User Open" "File Table" 49 move down 1.0625i left 1.25i from PUOFT.D.s 56 move down 1.0625i right 1.25i from PUOFT.D.s 58 A: box invis ht .4i wid 1i "Active I-node" "Table" 66 B: box ht .25i "I-node" with .n at A.s 71 move right 1.5i from IF.D.w 77 line left .15i from FMA.se 78 line left .15i from FMA.ne 79 line right .15i from FMA.nw [all …]
|
| /freebsd-src/contrib/llvm-project/llvm/include/llvm/ADT/ |
| H A D | IntervalTree.h | 1 //===-- IntervalTree.h -------- 205 PointType Right; global() variable 210 IntervalData(PointType Left,PointType Right,ValueType Value) IntervalData() argument 215 PointType left() const { return Left; } left() function 216 PointType right() const { return Right; } right() function 221 bool left(const PointType &Point) const { return left() <= Point; } left() function 225 bool right(const PointType &Point) const { return Point <= right(); } right() function 269 IntervalNode *Left = nullptr; // LS - Left subtree. global() variable 270 IntervalNode *Right = nullptr; // RS - Right subtree. global() variable 544 find_iterator(const IntervalReferences * Left,const IntervalReferences * Right,IntervalNode * Node,PointType Point) find_iterator() argument 545 find_iterator(const IntervalReferences * Left,const IntervalReferences * Right,IntervalNode * Node,PointType Point) find_iterator() argument 609 insert(PointType Left,PointType Right,ValueType Value) insert() argument [all...] |
| /freebsd-src/sys/contrib/openzfs/lib/libspl/include/ |
| H A D | assert.h | 10 * or https://opensource.org/licenses/CDDL-1.0. 37 /* Workaround for non-Clang compilers */ 49 /* Set to non-zero to avoid abort()ing on an assertion failure */ 86 #define VERIFY3B(LEFT, OP, RIGHT) \ argument 88 const boolean_t __left = (boolean_t)(LEFT); \ 89 const boolean_t __right = (boolean_t)(RIGHT); \ 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); \ 99 const int64_t __right = (int64_t)(RIGHT); \ [all …]
|