/freebsd/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/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/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/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/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/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/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/contrib/llvm-project/clang/lib/Format/ |
H A D | TokenAnnotator.cpp | 1 //===--- TokenAnnotator.cpp - Format C++ code -----------------------------===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 13 //===----------------------------------------------------------------------===// 22 #define DEBUG_TYPE "format-token-annotator" 49 /// an Objective-C \c \@selector, \c false otherwise. 52 /// Objective-C++, C++ keywords like \c new and \c delete are 53 /// lexed as tok::kw_*, not tok::identifier, even for Objective-C. 55 /// For Objective-C and Objective-C++, both identifiers and keywords 58 /// keyword as a potential Objective-C selector component. [all …]
|
/freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/ |
H A D | GCNILPSched.cpp | 1 //===---------------------------- GCNILPSched.cpp - -----------------------===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 11 //===----------------------------------------------------------------------===// 17 #define DEBUG_TYPE "machine-scheduler" 37 /// CurCycle - The current scheduler state corresponds to this cycle. 42 const SUnit *pickBest(const SUnit *left, const SUnit *right); 55 /// CalcNodeSethiUllmanNumber - Compute Sethi Ullman number. 59 unsigned &SethiUllmanNumber = SUNumbers[SU->NodeNum]; in CalcNodeSethiUllmanNumber() 64 for (const SDep &Pred : SU->Preds) { in CalcNodeSethiUllmanNumber() [all …]
|
/freebsd/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/tests/sys/kern/ |
H A D | socket_splice.c | 1 /*- 2 * SPDX-License-Identifier: BSD-2-Clause 25 #include <atf-c.h> 54 ATF_REQUIRE_MSG(flags != -1, "fcntl failed: %s", strerror(errno)); in noblocking() 100 error = bind(sd[0], sinp, sinp->sa_len); in tcp_socketpair() 105 error = getsockname(sd[0], sinp, &(socklen_t){ sinp->sa_len }); in tcp_socketpair() 108 error = connect(sd[1], sinp, sinp->sa_len); in tcp_socketpair() 157 sp->sp_fd = fd; in splice_init() 158 sp->sp_max = max; in splice_init() 160 sp->sp_idle = *tv; in splice_init() [all …]
|
/freebsd/contrib/libdiff/lib/ |
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/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() - Assert value is zero, if not panic. 42 * ASSERT0P() - Assert pointer is null, if not panic. 43 * VERIFY() - Verify X is true, if not panic. [all …]
|
/freebsd/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() - Assert value is zero, if not panic. 42 * ASSERT0P() - Assert pointer is null, if not panic. 43 * VERIFY() - Verify X is true, if not panic. [all …]
|
/freebsd/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/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/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/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/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/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/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/contrib/llvm-project/llvm/include/llvm/ADT/ |
H A D | IntervalTree.h | 1 //===-- IntervalTree.h ------------------------------------------*- C++ -*-===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 14 //===----------------------------------------------------------------------===// 51 // void insert(PointT Left, PointT Right, ValueT Value); 65 //===----------------------------------------------------------------------===// 69 // [a, b] <- (x) 75 // [30, 35] <- (3035), [39, 50] <- (3950), [55, 61] <- (5561), 76 // [31, 56] <- (3156), [12, 21] <- (1221), [25, 41] <- (2541), 77 // [49, 65] <- (4965), [71, 79] <- (7179), [11, 16] <- (1116), [all …]
|
/freebsd/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/sys/dev/sound/pci/ |
H A D | spicds.c | 1 /*- 2 * SPDX-License-Identifier: BSD-2-Clause 49 unsigned int dvc; /* De-emphasis and Volume Control */ 50 unsigned int left, right; member 59 if (codec->cif) in spicds_wrbit() 67 codec->ctrl(codec->devinfo, cs, 0, cdti); in spicds_wrbit() 69 codec->ctrl(codec->devinfo, cs, 1, cdti); in spicds_wrbit() 81 device_printf(codec->dev, "spicds_wrcd(codec, 0x%02x, 0x%02x)\n", reg, val); in spicds_wrcd() 84 if (codec->cif) in spicds_wrcd() 85 codec->ctrl(codec->devinfo, 1, 1, 0); in spicds_wrcd() [all …]
|
/freebsd/contrib/bmake/unit-tests/ |
H A D | deptgt-suffixes.exp | 2 # ".custom-null" (num 1, ref 1) (SUFF_NULL) 6 # ".src-left" (num 2, ref 2) 7 # To: .tgt-right 10 # ".tgt-right" (num 3, ref 2) 12 # From: .src-left 14 # ".tgt-left" (num 4, ref 2) 16 # From: .src-right 18 # ".src-right" (num 5, ref 2) 19 # To: .tgt-left 23 .src-left.tgt-right: [all …]
|