Home
last modified time | relevance | path

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

1234567

/freebsd-10-stable/contrib/dialog/
Dbuttons.c90 count_labels(const char **labels) in count_labels() argument
93 if (labels != 0) { in count_labels()
94 while (*labels++ != 0) { in count_labels()
130 get_hotkeys(const char **labels) in get_hotkeys() argument
133 size_t count = count_labels(labels); in get_hotkeys()
138 const char *label = labels[n]; in get_hotkeys()
223 dlg_button_count(const char **labels) in dlg_button_count() argument
226 while (*labels++ != 0) in dlg_button_count()
236 dlg_button_sizes(const char **labels, in dlg_button_sizes() argument
245 for (n = 0; labels[n] != 0; n++) { in dlg_button_sizes()
[all …]
/freebsd-10-stable/contrib/ldns/drill/
Dsecuretrace.c135 ldns_rdf **labels = NULL; in do_secure_trace() local
255 labels = LDNS_XMALLOC(ldns_rdf*, labels_count + 2); in do_secure_trace()
256 if (!labels) { in do_secure_trace()
259 labels[0] = ldns_dname_new_frm_str(LDNS_ROOT_LABEL_STR); in do_secure_trace()
260 labels[1] = ldns_rdf_clone(name); in do_secure_trace()
262 labels[i] = ldns_dname_left_chop(labels[i - 1]); in do_secure_trace()
269 status = ldns_resolver_send(&local_p, res, labels[i], LDNS_RR_TYPE_NS, c, 0); in do_secure_trace()
297 if (ldns_dname_is_subdomain(pop, labels[i])) { in do_secure_trace()
327 status = ldns_verify_denial(local_p, labels[i], LDNS_RR_TYPE_NS, &nsec_rrs, &nsec_rr_sigs); in do_secure_trace()
343 ldns_rdf_print(stdout, labels[i]); in do_secure_trace()
[all …]
/freebsd-10-stable/gnu/usr.bin/rcs/merge/
Dmerge.c48 int labels, tostdout; variable
50 labels = 0;
67 if (3 <= labels)
69 if (!(label[labels++] = *++argv))
96 for (; labels < 3; labels++)
97 label[labels] = arg[labels];
/freebsd-10-stable/lib/libc/posix1e/
Dmac.c90 mac_add_type(const char *name, const char *labels) in mac_add_type() argument
104 labels_dup = strdup(labels); in mac_add_type()
209 char *name, *labels; in mac_init_internal() local
212 labels = next_token(&parse); in mac_init_internal()
213 if (name == NULL || labels == NULL || in mac_init_internal()
222 if (mac_add_type(name, labels) == -1) { in mac_init_internal()
231 char *labels, *type; in mac_init_internal() local
241 labels = next_token(&parse); in mac_init_internal()
242 if (labels == NULL || next_token(&parse) != NULL) { in mac_init_internal()
250 if (mac_add_type(type, labels) == -1) { in mac_init_internal()
/freebsd-10-stable/contrib/dtc/
Dlivetree.c27 void add_label(struct label **labels, char *label) in add_label() argument
32 for_each_label_withdel(*labels, new) in add_label()
41 new->next = *labels; in add_label()
42 *labels = new; in add_label()
45 void delete_labels(struct label **labels) in delete_labels() argument
49 for_each_label(*labels, label) in delete_labels()
146 for_each_label_withdel(new_node->labels, l) in merge_nodes()
147 add_label(&old_node->labels, l->label); in merge_nodes()
167 for_each_label_withdel(new_prop->labels, l) in merge_nodes()
168 add_label(&old_prop->labels, l->label); in merge_nodes()
[all …]
Dflattree.c55 void (*beginnode)(void *, struct label *labels);
56 void (*endnode)(void *, struct label *labels);
57 void (*property)(void *, struct label *labels);
92 static void bin_emit_beginnode(void *e, struct label *labels) in bin_emit_beginnode() argument
97 static void bin_emit_endnode(void *e, struct label *labels) in bin_emit_endnode() argument
102 static void bin_emit_property(void *e, struct label *labels) in bin_emit_property() argument
194 static void asm_emit_beginnode(void *e, struct label *labels) in asm_emit_beginnode() argument
199 for_each_label(labels, l) { in asm_emit_beginnode()
207 static void asm_emit_endnode(void *e, struct label *labels) in asm_emit_endnode() argument
214 for_each_label(labels, l) { in asm_emit_endnode()
[all …]
Ddtc.h142 struct label *labels; member
160 struct label *labels; member
184 void add_label(struct label **labels, char *label);
185 void delete_labels(struct label **labels);
228 struct label *labels; member
Dtreesource.c243 for_each_label(tree->labels, l) in write_tree_source_node()
252 for_each_label(prop->labels, l) in write_tree_source_node()
275 for_each_label(re->labels, l) in dt_to_source()
Ddtc-parser.y130 add_label(&$2->labels, $1);
200 add_label(&$2->labels, $1);
457 add_label(&$2->labels, $1);
/freebsd-10-stable/crypto/heimdal/lib/krb5/
Dget_host_realm.c98 const char **labels; in dns_find_realm() local
105 labels = (const char **)config_labels; in dns_find_realm()
107 labels = default_labels; in dns_find_realm()
110 for (i = 0; labels[i] != NULL; i++) { in dns_find_realm()
111 ret = snprintf(dom, sizeof(dom), "%s.%s.", labels[i], domain); in dns_find_realm()
/freebsd-10-stable/crypto/heimdal/lib/wind/
Drfc3490.txt86 IDNA works by allowing applications to use certain ASCII name labels
87 (beginning with a special prefix) to represent non-ASCII name labels.
142 name labels. While such names are very user-unfriendly to read and
269 "www.example.com" is composed of three labels: "www", "example", and
273 IDNA extends the set of usable characters in labels that are text.
292 generalization, embracing both old ASCII labels and new non-ASCII
293 labels. Although most Unicode characters can appear in
294 internationalized labels, ToASCII will fail for some input strings,
295 and such strings are not valid internationalized labels.
305 labels in their zones. Such restrictions have no impact on the
[all …]
/freebsd-10-stable/cddl/contrib/opensolaris/lib/libdtrace/common/
Ddt_as.c213 uint_t *labels = NULL; in dt_as() local
277 if ((labels = dt_alloc(dtp, sizeof (uint_t) * dlp->dl_label)) == NULL) in dt_as()
288 labels[dip->di_label] = i; in dt_as()
337 labels[DIF_INSTR_LABEL(instr)]); in dt_as()
341 dt_free(dtp, labels); in dt_as()
/freebsd-10-stable/contrib/gcc/config/i386/
Dt-i386elf2 # end labels to the .ctors and .dtors section when we link using gcc.
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/Driver/
DCC1AsOptions.td36 def msave_temp_labels : Flag<["-"], "msave-temp-labels">,
37 HelpText<"Save temporary labels in the symbol table. "
/freebsd-10-stable/usr.bin/systat/
Dmain.c170 labels(); in main()
184 labels(void) in labels() function
Dextern.h129 void labels(void);
Dcmds.c139 labels(); in command()
/freebsd-10-stable/contrib/gcc/
Dtree-ssa-uncprop.c195 tree labels = SWITCH_LABELS (stmt); in associate_equivalences_with_edges() local
196 int i, n_labels = TREE_VEC_LENGTH (labels); in associate_equivalences_with_edges()
204 tree label = TREE_VEC_ELT (labels, i); in associate_equivalences_with_edges()
Dtree-eh.c1067 } *labels; in lower_try_finally_copy() local
1070 labels = XCNEWVEC (struct labels_s, return_index + 1); in lower_try_finally_copy()
1078 if (!labels[index].q) in lower_try_finally_copy()
1079 labels[index].q = q; in lower_try_finally_copy()
1086 q = labels[index].q; in lower_try_finally_copy()
1090 lab = labels[index].label = create_artificial_label (); in lower_try_finally_copy()
1114 if (labels[index].q == q) in lower_try_finally_copy()
1117 lab = labels[index].label; in lower_try_finally_copy()
1126 free (labels); in lower_try_finally_copy()
/freebsd-10-stable/usr.sbin/bsdconfig/networking/include/
Dmessages.subr52 msg_hostname_label_contains_invalid_chars="ERROR! One or more individual labels within the hostname…
53 msg_hostname_label_exceeds_max_length="ERROR! One or more individual labels within the hostname\n(s…
54 msg_hostname_label_is_null="ERROR! One or more individual labels within the hostname\n(separated by…
55 msg_hostname_label_starts_or_ends_with_hyphen="ERROR! One or more individual labels within the host…
/freebsd-10-stable/usr.bin/sed/
Dcompile.c65 } *labels[LHSZ]; variable
896 lhp = &labels[h & LHMASK]; in enterlabel()
922 for (lh = labels[h & LHMASK]; lh != NULL; lh = lh->lh_next) { in findlabel()
942 for (lh = labels[i]; lh != NULL; lh = next) { in uselabel()
/freebsd-10-stable/share/examples/ppp/
Dppp.linkdown.sample6 # ppp searches the labels in this file as follows:
/freebsd-10-stable/crypto/heimdal/lib/roken/
Dresolve.h150 unsigned labels; member
Dresolve-test.c139 sig->algorithm, sig->labels, sig->orig_ttl, in main()
/freebsd-10-stable/gnu/usr.bin/grep/
Ddfa.c1935 charclass labels[NOTCHAR]; /* Labels corresponding to the groups. */ in dfastate() local
2031 && !tstbit(d->tokens[pos.index], labels[j])) in dfastate()
2038 (intersect[k] = matches[k] & labels[j][k]) ? (intersectf = 1) : 0; in dfastate()
2047 int match = matches[k], label = labels[j][k]; in dfastate()
2056 copyset(leftovers, labels[ngrps]); in dfastate()
2057 copyset(intersect, labels[j]); in dfastate()
2077 copyset(matches, labels[ngrps]); in dfastate()
2176 if (tstbit(eolbyte, labels[i])) in dfastate()
2183 if (labels[i][j] & letters[j]) in dfastate()
2204 if (labels[i][j] & 1 << k) in dfastate()

1234567