Home
last modified time | relevance | path

Searched refs:anchor (Results 1 – 25 of 482) sorted by relevance

12345678910>>...20

/freebsd/sys/netpfil/pf/
H A Dpf_ruleset.c180 struct pf_kanchor *anchor; in pf_find_kruleset() local
186 anchor = pf_find_kanchor(path); in pf_find_kruleset()
187 if (anchor == NULL) in pf_find_kruleset()
190 return (&anchor->ruleset); in pf_find_kruleset()
198 struct pf_kanchor *anchor = NULL, *dup, *parent = NULL; in pf_find_or_create_kruleset() local
214 parent = ruleset->anchor; in pf_find_or_create_kruleset()
236 anchor = (struct pf_kanchor *)rs_malloc(sizeof(*anchor)); in pf_find_or_create_kruleset()
237 if (anchor == NULL) { in pf_find_or_create_kruleset()
241 RB_INIT(&anchor->children); in pf_find_or_create_kruleset()
242 strlcpy(anchor->name, q, sizeof(anchor->name)); in pf_find_or_create_kruleset()
[all …]
/freebsd/sys/dev/isci/scil/
H A Dsci_fast_list.h88 #define sci_fast_list_init(anchor) \ argument
90 (anchor)->list_head = NULL; \
91 (anchor)->list_tail = NULL; \
92 (anchor)->element_count = 0; \
108 #define sci_fast_list_is_empty(anchor) ((anchor)->list_head == NULL) argument
120 #define sci_fast_list_get_head(anchor) \ argument
121 ((anchor)->list_head == NULL ? NULL: (anchor)->list_head->object)
133 #define sci_fast_list_get_tail(anchor) \ argument
134 ((anchor)->list_tail == NULL ? NULL: (anchor)->list_head->object)
173 #define sci_fast_list_is_on_this_list(anchor, element) \ argument
[all …]
H A Dsci_simple_list.h85 #define sci_simple_list_init(anchor) \ argument
87 (anchor)->list_head = NULL; \
88 (anchor)->list_tail = NULL; \
89 (anchor)->list_count = 0; \
105 #define sci_simple_list_is_empty(anchor) ((anchor)->list_head == NULL) argument
111 #define sci_simple_list_get_head(anchor) ((anchor)->list_head) argument
117 #define sci_simple_list_get_tail(anchor) ((anchor)->list_tail) argument
122 #define sci_simple_list_get_count(anchor) ((anchor)->list_count) argument
174 SCI_SIMPLE_LIST_T * anchor, in sci_simple_list_insert_head() argument
178 if (anchor->list_tail == NULL) in sci_simple_list_insert_head()
[all …]
/freebsd/sbin/pfctl/
H A Dpf_ruleset.c160 struct pfctl_anchor *anchor; in pf_find_ruleset() local
166 anchor = pf_find_anchor(path); in pf_find_ruleset()
167 if (anchor == NULL) in pf_find_ruleset()
170 return (&anchor->ruleset); in pf_find_ruleset()
178 struct pfctl_anchor *anchor = NULL, *dup, *parent = NULL; in pf_find_or_create_ruleset() local
194 parent = ruleset->anchor; in pf_find_or_create_ruleset()
216 anchor = (struct pfctl_anchor *)rs_malloc(sizeof(*anchor)); in pf_find_or_create_ruleset()
217 if (anchor == NULL) { in pf_find_or_create_ruleset()
221 RB_INIT(&anchor->children); in pf_find_or_create_ruleset()
222 strlcpy(anchor->name, q, sizeof(anchor->name)); in pf_find_or_create_ruleset()
[all …]
/freebsd/contrib/llvm-project/clang/lib/ExtractAPI/
H A DAPI.cpp126 void GlobalFunctionRecord::anchor() {} in anchor() function in GlobalFunctionRecord
127 void GlobalVariableRecord::anchor() {} in anchor() function in GlobalVariableRecord
128 void EnumConstantRecord::anchor() {} in anchor() function in EnumConstantRecord
129 void EnumRecord::anchor() {} in anchor() function in EnumRecord
130 void StructFieldRecord::anchor() {} in anchor() function in StructFieldRecord
131 void StructRecord::anchor() {} in anchor() function in StructRecord
132 void UnionFieldRecord::anchor() {} in anchor() function in UnionFieldRecord
133 void UnionRecord::anchor() {} in anchor() function in UnionRecord
134 void CXXFieldRecord::anchor() {} in anchor() function in CXXFieldRecord
135 void CXXClassRecord::anchor() {} in anchor() function in CXXClassRecord
[all …]
/freebsd/contrib/ntp/include/
H A Dntp_lists.h60 * anchor contains the head and indirect tail pointers. Example:
81 * HEAD_FIFO(anchor)
82 * TAIL_FIFO(anchor)
85 * LINK_FIFO(anchor, pentry, nextlink)
88 * UNLINK_FIFO(punlinked, anchor, nextlink)
236 #define HEAD_FIFO(anchor) ((anchor).phead)
237 #define TAIL_FIFO(anchor) ((NULL == (anchor).pptail) \
239 : *((anchor)
234 HEAD_FIFO(anchor) global() argument
235 TAIL_FIFO(anchor) global() argument
244 CHECK_FIFO_CONSISTENCY(anchor) global() argument
246 CHECK_FIFO_CONSISTENCY(anchor) global() argument
264 LINK_FIFO(anchor,pentry,nextlink) global() argument
281 UNLINK_FIFO(punlinked,anchor,nextlink) global() argument
298 UNLINK_MID_FIFO(punlinked,anchor,tounlink,nextlink,entrytype) global() argument
[all...]
/freebsd/sbin/pfctl/tests/files/
H A Dpf0100.in2 anchor "a/b"
3 anchor "1/2/3" # test anchors with multiple path components
4 anchor "relative" {
7 anchor "camield/*" # empty wildcard anchor
9 anchor "relayd/*"
11 anchor "foo" in on lo0 {
12 anchor "bar" in { # nested named inlined anchor
13 anchor "/1/2/3" # absolute multicomponent path
14 anchor "/relative" # absolute path
17 anchor in { # nested unnamed inlined anchor
H A Dpf0092.in1 anchor { # testing comments
2 anchor in {
7 anchor out {
8 anchor in {
9 anchor out {
10 anchor in {
11 anchor out {
12 anchor in {
13 anchor out {
14 anchor in {
[all …]
H A Dpf0041.in1 anchor foo
2 anchor bar all
3 anchor bar from any to any
4 anchor foo inet
5 anchor foo inet6
6 anchor foo inet all
7 anchor foo proto tcp
8 anchor foo inet proto tcp from 10.1.2.3 port smtp to 10.2.3.4 port ssh
9 anchor foobar inet6 proto udp from ::1 port 1 to ::1 port 2
10 anchor filteropt out proto tcp to any port 22 user root
[all …]
H A Dpf0041.ok1 anchor "foo" all
2 anchor "bar" all
3 anchor "bar" all
4 anchor "foo" inet all
5 anchor "foo" inet6 all
6 anchor "foo" inet all
7 anchor "foo" proto tcp all
8 anchor "foo" inet proto tcp from 10.1.2.3 port = smtp to 10.2.3.4 port = ssh
9 anchor "foobar" inet6 proto udp from ::1 port = tcpmux to ::1 port = compressnet
10 anchor "filteropt" out proto tcp from any to any port = ssh user = 0
[all …]
H A Dpf0092.ok1 anchor all {
2 anchor in all {
5 anchor out all {
6 anchor in all {
7 anchor out all {
8 anchor in all {
9 anchor out all {
10 anchor in all {
11 anchor out all {
12 anchor in all {
[all …]
H A Dpf0100.ok2 anchor "a/b" all
3 anchor "1/2/3" all
4 anchor "relative" all {
7 anchor "camield/*" all
8 anchor "relayd/*" all
9 anchor "foo" in on lo0 all {
10 anchor "bar" in all {
11 anchor "/1/2/3" all
12 anchor "/relative" all
15 anchor in all {
/freebsd/contrib/less/
H A Dlinenum.c62 static struct linenum_info anchor; /* Anchor of the list */ variable
93 * Initialize the anchor. in clr_linenum()
95 anchor.next = anchor.prev = &anchor; in clr_linenum()
96 anchor.gap = 0; in clr_linenum()
97 anchor.pos = (POSITION)0; in clr_linenum()
98 anchor.line = 1; in clr_linenum()
107 * Don't bother to compute a gap for the anchor. in calcgap()
112 if (p == &anchor || in calcgap()
[all...]
H A Difile.c50 static struct ifile anchor = { &anchor, &anchor, NULL, NULL, NULL, 0, 0, '\0', variable
56 for (; p != &anchor; p = p->h_next) in incr_index()
69 prev = &anchor; in link_ifile()
156 p = (h == NULL_IFILE) ? &anchor : int_ifile(h); in next_ifile()
157 if (p->h_next == &anchor) in next_ifile()
169 p = (h == NULL_IFILE) ? &anchor : int_ifile(h); in prev_ifile()
170 if (p->h_prev == &anchor) in prev_ifile()
205 for (p = anchor in find_ifile()
[all...]
/freebsd/crypto/heimdal/lib/hx509/
H A Dtest_chain.in55 anchor:FILE:$srcdir/data/ca.crt > /dev/null || exit 1
61 anchor:FILE:$srcdir/data/ca.crt > /dev/null || exit 1
66 anchor:FILE:$srcdir/data/ca.crt > /dev/null || exit 1
72 anchor:FILE:$srcdir/data/ca.crt > /dev/null && exit 1
79 anchor:FILE:$srcdir/data/ca.crt > /dev/null || exit 1
84 anchor:FILE:$srcdir/data/sub-ca.crt > /dev/null || exit 1
91 anchor:FILE:$srcdir/data/ca.crt > /dev/null || exit 1
98 anchor:FILE:$srcdir/data/ca.crt > /dev/null || exit 1
104 anchor:FILE:$srcdir/data/ca.crt > /dev/null || exit 1
111 anchor:FILE:$srcdir/data/ca.crt > /dev/null && exit 1
[all …]
/freebsd/contrib/unbound/validator/
H A Dautotrust.c72 static void do_revoked(struct module_env* env, struct autr_ta* anchor, int* c);
854 struct trust_anchor** anchor) in parse_var_line() argument
856 struct trust_anchor* tp = *anchor; in parse_var_line()
859 *anchor = parse_id(anchors, line+6); in parse_var_line()
860 if(!*anchor) return -1; in parse_var_line()
1733 do_newkey(struct module_env* env, struct autr_ta* anchor, int* c) in do_newkey() argument
1735 if (anchor->s == AUTR_STATE_START) in do_newkey()
1736 set_trustanchor_state(env, anchor, c, AUTR_STATE_ADDPEND); in do_newkey()
1741 do_addtime(struct module_env* env, struct autr_ta* anchor, int* c) in do_addtime() argument
1746 time_t exceeded = check_holddown(env, anchor, env->cfg->add_holddown); in do_addtime()
[all …]
/freebsd/contrib/libxo/tests/xo/saved/
H A Dxo_01.X.out1anchor><address>0xdeadbeef</address><foo>1</foo></anchor><anchor><address>0xdeadbeef</address><foo…
H A Dxo_01.XP.out22 <anchor>
25 </anchor>
26 <anchor>
29 </anchor>
30 <anchor>
33 </anchor>
34 <anchor>
37 </anchor>
/freebsd/contrib/llvm-project/clang/lib/Driver/
H A DAction.cpp174 void InputAction::anchor() {} in anchor() function in InputAction
179 void BindArchAction::anchor() {} in anchor() function in BindArchAction
184 void OffloadAction::anchor() {} in anchor() function in OffloadAction
336 void JobAction::anchor() {} in anchor() function in JobAction
344 void PreprocessJobAction::anchor() {} in anchor() function in PreprocessJobAction
349 void PrecompileJobAction::anchor() {} in anchor() function in PrecompileJobAction
360 void ExtractAPIJobAction::anchor() {} in anchor() function in ExtractAPIJobAction
365 void AnalyzeJobAction::anchor() {} in anchor() function in AnalyzeJobAction
370 void MigrateJobAction::anchor() {} in anchor() function in MigrateJobAction
375 void CompileJobAction::anchor() {} in anchor() function in CompileJobAction
[all …]
/freebsd/sys/contrib/openzfs/module/zstd/lib/compress/
H A Dzstd_fast.c62 const BYTE* anchor = istart; in ZSTD_compressBlock_fast_generic() local
133 { size_t const step = ((size_t)(ip0-anchor) >> (kSearchStrength - 1)) + stepSize; in ZSTD_compressBlock_fast_generic()
146 while (((ip0>anchor) & (match0>prefixStart)) in ZSTD_compressBlock_fast_generic()
152 ZSTD_storeSeq(seqStore, (size_t)(ip0-anchor), anchor, iend, offcode, mLength-MINMATCH); in ZSTD_compressBlock_fast_generic()
155 anchor = ip0; in ZSTD_compressBlock_fast_generic()
170 … ZSTD_storeSeq(seqStore, 0 /*litLen*/, anchor, iend, 0 /*offCode*/, rLength-MINMATCH); in ZSTD_compressBlock_fast_generic()
171 anchor = ip0; in ZSTD_compressBlock_fast_generic()
182 return (size_t)(iend - anchor); in ZSTD_compressBlock_fast_generic()
219 const BYTE* anchor = istart; in ZSTD_compressBlock_fast_dictMatchState_generic() local
275 ZSTD_storeSeq(seqStore, (size_t)(ip-anchor), anchor, iend, 0, mLength-MINMATCH); in ZSTD_compressBlock_fast_dictMatchState_generic()
[all …]
H A Dzstd_double_fast.c64 const BYTE* anchor = istart; in ZSTD_compressBlock_doubleFast_generic() local
151 ZSTD_storeSeq(seqStore, (size_t)(ip-anchor), anchor, iend, 0, mLength-MINMATCH); in ZSTD_compressBlock_doubleFast_generic()
160 ZSTD_storeSeq(seqStore, (size_t)(ip-anchor), anchor, iend, 0, mLength-MINMATCH); in ZSTD_compressBlock_doubleFast_generic()
169 …while (((ip>anchor) & (matchLong>prefixLowest)) && (ip[-1] == matchLong[-1])) { ip--; matchLong--;… in ZSTD_compressBlock_doubleFast_generic()
181 …while (((ip>anchor) & (dictMatchL>dictStart)) && (ip[-1] == dictMatchL[-1])) { ip--; dictMatchL--;… in ZSTD_compressBlock_doubleFast_generic()
200 ip += ((ip-anchor) >> kSearchStrength) + 1; in ZSTD_compressBlock_doubleFast_generic()
220 …while (((ip>anchor) & (matchL3>prefixLowest)) && (ip[-1] == matchL3[-1])) { ip--; matchL3--; mLeng… in ZSTD_compressBlock_doubleFast_generic()
232 …while (((ip>anchor) & (dictMatchL3>dictStart)) && (ip[-1] == dictMatchL3[-1])) { ip--; dictMatchL3… in ZSTD_compressBlock_doubleFast_generic()
240 …while (((ip>anchor) & (match>dictStart)) && (ip[-1] == match[-1])) { ip--; match--; mLength++; } /… in ZSTD_compressBlock_doubleFast_generic()
244 …while (((ip>anchor) & (match>prefixLowest)) && (ip[-1] == match[-1])) { ip--; match--; mLength++; … in ZSTD_compressBlock_doubleFast_generic()
[all …]
/freebsd/sys/contrib/zstd/lib/compress/
H A Dzstd_double_fast.c62 const BYTE* anchor = istart; in ZSTD_compressBlock_doubleFast_noDict_generic() local
134 … ZSTD_storeSeq(seqStore, (size_t)(ip-anchor), anchor, iend, STORE_REPCODE_1, mLength); in ZSTD_compressBlock_doubleFast_noDict_generic()
145 …while (((ip>anchor) & (matchl0>prefixLowest)) && (ip[-1] == matchl0[-1])) { ip--; matchl0--; mLeng… in ZSTD_compressBlock_doubleFast_noDict_generic()
183 return (size_t)(iend - anchor); in ZSTD_compressBlock_doubleFast_noDict_generic()
193 …while (((ip>anchor) & (matchl1>prefixLowest)) && (ip[-1] == matchl1[-1])) { ip--; matchl1--; mLeng… in ZSTD_compressBlock_doubleFast_noDict_generic()
201 …while (((ip>anchor) & (matchs0>prefixLowest)) && (ip[-1] == matchs0[-1])) { ip--; matchs0--; mLeng… in ZSTD_compressBlock_doubleFast_noDict_generic()
220 ZSTD_storeSeq(seqStore, (size_t)(ip-anchor), anchor, iend, STORE_OFFSET(offset), mLength); in ZSTD_compressBlock_doubleFast_noDict_generic()
225 anchor = ip; in ZSTD_compressBlock_doubleFast_noDict_generic()
246 ZSTD_storeSeq(seqStore, 0, anchor, iend, STORE_REPCODE_1, rLength); in ZSTD_compressBlock_doubleFast_noDict_generic()
248 anchor = ip; in ZSTD_compressBlock_doubleFast_noDict_generic()
[all …]
H A Dzstd_fast.c111 const BYTE* anchor = istart; in ZSTD_compressBlock_fast_noDict_generic() local
262 return (size_t)(iend - anchor); in ZSTD_compressBlock_fast_noDict_generic()
274 while (((ip0>anchor) & (match0>prefixStart)) && (ip0[-1] == match0[-1])) { in ZSTD_compressBlock_fast_noDict_generic()
285 ZSTD_storeSeq(seqStore, (size_t)(ip0 - anchor), anchor, iend, offcode, mLength); in ZSTD_compressBlock_fast_noDict_generic()
288 anchor = ip0; in ZSTD_compressBlock_fast_noDict_generic()
309 ZSTD_storeSeq(seqStore, 0 /*litLen*/, anchor, iend, STORE_REPCODE_1, rLength); in ZSTD_compressBlock_fast_noDict_generic()
310 anchor = ip0; in ZSTD_compressBlock_fast_noDict_generic()
384 const BYTE* anchor = istart; in ZSTD_compressBlock_fast_dictMatchState_generic() local
442 ZSTD_storeSeq(seqStore, (size_t)(ip-anchor), anchor, iend, STORE_REPCODE_1, mLength); in ZSTD_compressBlock_fast_dictMatchState_generic()
450 ip += ((ip-anchor) >> kSearchStrength) + stepSize; in ZSTD_compressBlock_fast_dictMatchState_generic()
[all …]
/freebsd/contrib/llvm-project/llvm/utils/TableGen/
H A DX86ModRMFilters.cpp13 void ModRMFilter::anchor() {} in anchor() function in ModRMFilter
15 void DumbFilter::anchor() {} in anchor() function in DumbFilter
17 void ModFilter::anchor() {} in anchor() function in ModFilter
19 void ExtendedFilter::anchor() {} in anchor() function in ExtendedFilter
21 void ExtendedRMFilter::anchor() {} in anchor() function in ExtendedRMFilter
23 void ExactFilter::anchor() {} in anchor() function in ExactFilter
/freebsd/contrib/llvm-project/clang/include/clang/Driver/
H A DAction.h232 virtual void anchor();
249 virtual void anchor();
269 virtual void anchor();
400 virtual void anchor();
414 void anchor() override;
425 void anchor() override;
439 void anchor() override;
452 void anchor() override;
463 void anchor() override;
474 void anchor() override;
[all …]

12345678910>>...20