Home
last modified time | relevance | path

Searched refs:labels (Results 1 – 25 of 816) sorted by relevance

12345678910>>...33

/netbsd-src/external/mpl/dhcp/bind/dist/lib/dns/
H A Dipkeylist.c33 ipkl->labels = NULL; in dns_ipkeylist_init()
70 if (ipkl->labels != NULL) { in dns_ipkeylist_clear()
72 if (ipkl->labels[i] == NULL) { in dns_ipkeylist_clear()
75 if (dns_name_dynamic(ipkl->labels[i])) { in dns_ipkeylist_clear()
76 dns_name_free(ipkl->labels[i], mctx); in dns_ipkeylist_clear()
78 isc_mem_put(mctx, ipkl->labels[i], sizeof(dns_name_t)); in dns_ipkeylist_clear()
80 isc_mem_put(mctx, ipkl->labels, in dns_ipkeylist_clear()
126 if (src->labels != NULL) { in dns_ipkeylist_copy()
128 if (src->labels[i] != NULL) { in dns_ipkeylist_copy()
129 dst->labels[i] = in dns_ipkeylist_copy()
[all …]
H A Dname.c121 name->labels = 0; \
188 name->labels = 0; in dns_name_invalidate()
205 if (name->length > 255U || name->labels > 127U) { in dns_name_isvalid()
236 if (nlabels != name->labels || offset != name->length) { in dns_name_isvalid()
300 REQUIRE(name->labels > 0); in dns_name_ismailbox()
355 REQUIRE(name->labels > 0); in dns_name_ishostname()
406 REQUIRE(name->labels > 0); in dns_name_iswildcard()
429 REQUIRE(name->labels > 0); in dns_name_internalwildcard()
442 while (label + 1 < name->labels) { in dns_name_internalwildcard()
463 if (name->labels == 0) { in dns_name_hash()
[all …]
H A Dcompress.c226 unsigned int labels, i, n; in dns_compress_findglobal() local
242 labels = dns_name_countlabels(name); in dns_compress_findglobal()
243 INSIST(labels > 0); in dns_compress_findglobal()
247 numlabels = labels > 3U ? 3U : labels; in dns_compress_findglobal()
291 l = labels - n; in dns_compress_findglobal()
292 if (ISC_UNLIKELY(node->name.labels != l)) { in dns_compress_findglobal()
475 node->name.labels = tname.labels; in dns_compress_add()
/netbsd-src/external/mpl/bind/dist/lib/dns/
H A Dipkeylist.c34 ipkl->labels = NULL; in dns_ipkeylist_init()
83 if (ipkl->labels != NULL) { in dns_ipkeylist_clear()
85 if (ipkl->labels[i] != NULL) { in dns_ipkeylist_clear()
86 if (dns_name_dynamic(ipkl->labels[i])) { in dns_ipkeylist_clear()
87 dns_name_free(ipkl->labels[i], mctx); in dns_ipkeylist_clear()
89 isc_mem_put(mctx, ipkl->labels[i], in dns_ipkeylist_clear()
90 sizeof(*ipkl->labels[i])); in dns_ipkeylist_clear()
93 isc_mem_cput(mctx, ipkl->labels, ipkl->allocated, in dns_ipkeylist_clear()
94 sizeof(ipkl->labels[0])); in dns_ipkeylist_clear()
152 if (src->labels ! in dns_ipkeylist_copy()
165 dns_name_t **labels = NULL; dns_ipkeylist_resize() local
[all...]
H A Dname.c71 name->labels = 0; \
113 name->labels > DNS_NAME_MAXLABELS)
145 if (nlabels != name->labels || offset != name->length) {
194 REQUIRE(name->labels > 0); in dns_name_invalidate()
249 REQUIRE(name->labels > 0); in dns_name_setbuffer()
300 REQUIRE(name->labels > 0); in dns_name_ismailbox()
323 REQUIRE(name->labels > 0); in dns_name_ismailbox()
334 * Check all but the last of the remaining labels. in dns_name_ismailbox()
336 while (label + 1 < name->labels) { in dns_name_ismailbox()
387 *nlabelsp = name1->labels; in dns_name_ishostname()
850 unsigned int nlabels, labels; dns_name_matcheswildcard() local
1066 unsigned int tlen, nrem, nused, digits = 0, labels, tused; dns_name_fromtext() local
1342 unsigned int labels; dns_name_totext2() local
1519 unsigned int labels; dns_name_tofilenametext() local
1631 unsigned int nlen, count, labels; dns_name_downcase() local
1817 uint32_t labels = 0; dns_name_fromwire() local
2040 unsigned int nrem, labels, prefix_length, length; dns_name_concatenate() local
[all...]
/netbsd-src/external/gpl2/rcs/dist/src/
H A Dmerge.c50 int labels, tostdout; variable
52 labels = 0;
69 if (3 <= labels)
71 if (!(label[labels++] = *++argv))
98 for (; labels < 3; labels++)
99 label[labels] = arg[labels];
/netbsd-src/external/gpl2/dtc/dist/tests/
H A Ddelete_reinstate_multilabel.dts3 /* Create some nodes and properties with multiple labels */
13 /* Delete them, and everything that's part of them, i.e. the labels */
21 * Re-instate them. None of the old labels should come back
23 * Note: Do not add any new/extra labels here. As of the time of writing,
24 * when dtc adds labels to an object, they are added to the head of the list
25 * of labels, and this test is specifically about ensuring the correct
26 * handling of lists of labels where the first label in the list is marked as
H A Dvalue-labels.c51 const struct val_label* labels, int n) in check_prop_labels() argument
70 int off = labels[i].propoff; in check_prop_labels()
75 p = dlsym(sohandle, labels[i].labelname); in check_prop_labels()
81 "in property \"%s\"", labels[i].labelname, in check_prop_labels()
/netbsd-src/external/gpl3/gcc.old/dist/gcc/d/dmd/
H A Diasmgcc.c191 Identifiers *labels = NULL; in parseExtAsmGotoLabels() local
199 return labels; in parseExtAsmGotoLabels()
202 if (!labels) in parseExtAsmGotoLabels()
203 labels = new Identifiers(); in parseExtAsmGotoLabels()
204 labels->push(p->token.ident); in parseExtAsmGotoLabels()
222 return labels; in parseExtAsmGotoLabels()
274 s->labels = parseExtAsmGotoLabels(p); in parseGccAsm()
330 if (s->labels && s->outputargs) in gccAsmSemantic()
367 if (s->labels) in gccAsmSemantic()
369 for (size_t i = 0; i < s->labels->dim; i++) in gccAsmSemantic()
[all …]
/netbsd-src/external/apache2/llvm/dist/clang/docs/
H A DDataFlowSanitizerDesign.rst12 a number of taint labels with any data stored in any memory region
14 it operates on a running program, and tracks how the labels propagate
16 of labels, such that programs which operate on large numbers of data
31 A number of functions are provided which will create taint labels,
32 attach labels to memory regions and extract the set of labels
70 labels. This poses an implementation challenge, as most multiple-label
72 union taint labels using a bitwise or operation. This will not scale
73 to clients which use hundreds or thousands of taint labels, as the
74 label union operation becomes O(n) in the number of supported labels,
84 of a taint label is a 16-bit integer, and new labels are allocated
[all …]
/netbsd-src/external/gpl3/gcc/dist/gcc/d/
H A Dtoir.cc71 pop_label (Statement * const &, d_label_entry *ent, vec <tree> &labels) in pop_label() argument
80 labels.safe_push (ent->label); in pop_label()
132 if (d_function_chain->labels) in pop_binding_level()
134 auto_vec <tree> labels; in pop_binding_level() local
135 d_function_chain->labels->traverse <vec <tree> &, in pop_binding_level()
136 &pop_label> (labels); in pop_binding_level()
137 d_function_chain->labels->empty (); in pop_binding_level()
138 labels.qsort (cmp_labels); in pop_binding_level()
139 for (unsigned i = 0; i < labels.length (); ++i) in pop_binding_level()
141 DECL_CHAIN (labels[i]) = BLOCK_VARS (block); in pop_binding_level()
[all …]
/netbsd-src/external/gpl3/gcc.old/dist/gcc/d/
H A Dtoir.cc71 pop_label (Statement * const &, d_label_entry *ent, vec<tree> &labels) in pop_label() argument
80 labels.safe_push (ent->label); in pop_label()
132 if (d_function_chain->labels) in pop_binding_level()
134 auto_vec<tree> labels; in pop_binding_level() local
135 d_function_chain->labels->traverse<vec<tree> &, &pop_label> (labels); in pop_binding_level()
136 d_function_chain->labels->empty (); in pop_binding_level()
137 labels.qsort (cmp_labels); in pop_binding_level()
138 for (unsigned i = 0; i < labels.length (); ++i) in pop_binding_level()
140 DECL_CHAIN (labels[i]) = BLOCK_VARS (block); in pop_binding_level()
141 BLOCK_VARS (block) = labels[i]; in pop_binding_level()
[all …]
/netbsd-src/external/gpl2/gettext/dist/gettext-tools/examples/hello-java-swing/
H A DHello.java35 JPanel labels = new JPanel(); in main() local
36 labels.setLayout(new GridLayout(2, 1)); in main()
37 labels.add(label1); in main()
38 labels.add(label2); in main()
43 frame.getContentPane().add(labels, BorderLayout.CENTER); in main()
/netbsd-src/external/gpl2/gettext/dist/gettext-tools/examples/hello-java-awt/
H A DHello.java38 Container labels = new Container(); in main() local
39 labels.setLayout(new GridLayout(2, 1)); in main()
40 labels.add(label1); in main()
41 labels.add(label2); in main()
46 frame.add(labels, BorderLayout.CENTER); in main()
/netbsd-src/external/gpl3/gcc.old/dist/libgcc/config/avr/libf7/
H A Dlibf7-c-object.mk9 $o-label := $(firstword $(iter-labels))
10 iter-labels := $(wordlist 2,$(words $(iter-labels)),$(iter-labels))
H A Dlibf7-asm-object.mk9 $o-label := $(firstword $(iter-labels))
10 iter-labels := $(wordlist 2,$(words $(iter-labels)),$(iter-labels))
/netbsd-src/external/gpl3/gcc/dist/libgcc/config/avr/libf7/
H A Dlibf7-c-object.mk9 $o-label := $(firstword $(iter-labels))
10 iter-labels := $(wordlist 2,$(words $(iter-labels)),$(iter-labels))
H A Dlibf7-asm-object.mk9 $o-label := $(firstword $(iter-labels))
10 iter-labels := $(wordlist 2,$(words $(iter-labels)),$(iter-labels))
/netbsd-src/external/gpl3/gcc/dist/libgcc/
H A Dsiditi-object.mk8 $o-label := $(firstword $(iter-labels))
9 iter-labels := $(wordlist 2,$(words $(iter-labels)),$(iter-labels))
H A Dfixed-obj.mk8 $o-label := $(firstword $(iter-labels))
9 iter-labels := $(wordlist 2,$(words $(iter-labels)),$(iter-labels))
/netbsd-src/external/gpl3/gcc.old/dist/libgcc/
H A Dsiditi-object.mk8 $o-label := $(firstword $(iter-labels))
9 iter-labels := $(wordlist 2,$(words $(iter-labels)),$(iter-labels))
H A Dfixed-obj.mk8 $o-label := $(firstword $(iter-labels))
9 iter-labels := $(wordlist 2,$(words $(iter-labels)),$(iter-labels))
/netbsd-src/external/gpl3/gcc/dist/gcc/d/dmd/
H A Diasmgcc.d199 Identifiers *labels; in parseExtAsmGotoLabels() local
207 return labels; in parseExtAsmGotoLabels()
210 if (!labels) in parseExtAsmGotoLabels()
211 labels = new Identifiers(); in parseExtAsmGotoLabels()
212 labels.push(p.token.ident); in parseExtAsmGotoLabels()
230 return labels; in parseExtAsmGotoLabels()
282 s.labels = p.parseExtAsmGotoLabels(); in parseGccAsm()
332 if (s.labels && s.outputargs) in gccAsmSemantic()
369 if (s.labels) in gccAsmSemantic()
371 foreach (i; 0 .. s.labels.dim) in gccAsmSemantic()
[all …]
/netbsd-src/external/gpl3/gcc.old/dist/libgcc/config/avr/
H A Dlib2-object.mk9 $o-label := $(firstword $(iter-labels))
10 iter-labels := $(wordlist 2,$(words $(iter-labels)),$(iter-labels))
/netbsd-src/external/gpl3/gcc/dist/libgcc/config/avr/
H A Dlib2-object.mk9 $o-label := $(firstword $(iter-labels))
10 iter-labels := $(wordlist 2,$(words $(iter-labels)),$(iter-labels))

12345678910>>...33