Searched refs:tab (Results 26 - 50 of 307) sorted by relevance

1234567891011>>

/freebsd-12-stable/crypto/heimdal/base/
H A Ddict.c47 struct hashentry **tab; member in struct:heim_dict_data
56 for (h = dict->tab; h < &dict->tab[dict->size]; ++h) {
64 free(dict->tab);
124 dict->tab = calloc(dict->size, sizeof(dict->tab[0]));
125 if (dict->tab == NULL) {
154 for (p = dict->tab[v % dict->size]; p != NULL; p = p->next)
212 tabptr = &dict->tab[v % dict->size];
260 for (h = dict->tab;
[all...]
/freebsd-12-stable/sbin/setkey/
H A DMakefile41 CLEANFILES= y.tab.c y.tab.h key_test.o keytest
49 SRCS+= y.tab.h
50 y.tab.h: parse.y
60 CLEANFILES+= scriptdump y.tab.h
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/Utils/
H A DAMDKernelCodeTUtils.h28 const char *tab);
/freebsd-12-stable/usr.bin/colldef/
H A DMakefile4 SRCS= parse.y scan.l y.tab.h
/freebsd-12-stable/usr.bin/mklocale/
H A DMakefile5 SRCS= yacc.y lex.l y.tab.h
/freebsd-12-stable/contrib/netbsd-tests/lib/libc/string/
H A Dt_strchr.c66 const char *tab[] = { local
259 for (t = 0; t < (sizeof(tab) / sizeof(tab[0])); ++t) {
260 int len = strlen(tab[t]) + 1;
261 memcpy(&buf[a], tab[t], len);
/freebsd-12-stable/crypto/openssl/crypto/bn/
H A Dbn_gf2m.c64 BN_ULONG tab[8], top2b = a >> 30; local
71 tab[0] = 0;
72 tab[1] = a1;
73 tab[2] = a2;
74 tab[3] = a1 ^ a2;
75 tab[4] = a4;
76 tab[5] = a1 ^ a4;
77 tab[6] = a2 ^ a4;
78 tab[7] = a1 ^ a2 ^ a4;
80 s = tab[
133 BN_ULONG tab[16], top3b = a >> 61; local
[all...]
/freebsd-12-stable/contrib/binutils/bfd/
H A Dhash.c740 _bfd_stringtab_add (struct bfd_strtab_hash *tab,
749 entry = strtab_hash_lookup (tab, str, TRUE, copy);
755 entry = bfd_hash_allocate (&tab->table, sizeof (* entry));
764 n = bfd_hash_allocate (&tab->table, strlen (str) + 1);
775 entry->index = tab->size;
776 tab->size += strlen (str) + 1;
777 if (tab->xcoff)
780 tab->size += 2;
782 if (tab->first == NULL)
783 tab
738 _bfd_stringtab_add(struct bfd_strtab_hash *tab, const char *str, bfd_boolean hash, bfd_boolean copy) argument
793 _bfd_stringtab_size(struct bfd_strtab_hash *tab) argument
802 _bfd_stringtab_emit(bfd *abfd, struct bfd_strtab_hash *tab) argument
[all...]
/freebsd-12-stable/contrib/ncurses/include/
H A Dcapdefaults.c83 if (VALID_STRING(tab) && (capval = EXTRACT_DELAY(tab)))
/freebsd-12-stable/sbin/ipf/ippool/
H A DMakefile16 y.tab.c > ${.TARGET}
18 y.tab.h > ${.TARGET:.c=.h}
24 -e 's/y.tab.h/ippool_y.h/' \
/freebsd-12-stable/contrib/gdb/
H A Dmissing71 bison create \`y.tab.[ch]', if possible, from existing .[ch]
77 yacc create \`y.tab.[ch]', if possible, from existing .[ch]"
192 rm -f y.tab.c y.tab.h
199 cp "$SRCFILE" y.tab.c
203 cp "$SRCFILE" y.tab.h
208 if [ ! -f y.tab.h ]; then
209 echo >y.tab.h
211 if [ ! -f y.tab.c ]; then
212 echo 'main() { return 0; }' >y.tab
[all...]
/freebsd-12-stable/contrib/ipfilter/iplang/
H A DMakefile27 mv y.tab.c $(DESTDIR)/iplang_y.c
28 mv y.tab.h $(DESTDIR)/iplang_y.h
31 /bin/rm -f *.o lex.yy.c y.tab.c y.tab.h
/freebsd-12-stable/contrib/binutils/
H A Dmissing81 bison create \`y.tab.[ch]', if possible, from existing .[ch]
87 yacc create \`y.tab.[ch]', if possible, from existing .[ch]
216 rm -f y.tab.c y.tab.h
223 cp "$SRCFILE" y.tab.c
227 cp "$SRCFILE" y.tab.h
232 if [ ! -f y.tab.h ]; then
233 echo >y.tab.h
235 if [ ! -f y.tab.c ]; then
236 echo 'main() { return 0; }' >y.tab
[all...]
/freebsd-12-stable/sys/arm64/arm64/
H A Ddisassem.c183 arm64_disasm_generate_masks(struct arm64_insn *tab) argument
192 while (tab->name != NULL) {
195 format = tab->format;
225 memset(tab->tokens[token].name, 0,
226 sizeof(tab->tokens[token].name));
229 tab->tokens[token].name[i] = *format;
234 tab->name);
247 tab->name);
253 tab->tokens[token].pos = a + 1;
254 tab
[all...]
/freebsd-12-stable/crypto/heimdal/
H A Dmissing82 bison create \`y.tab.[ch]', if possible, from existing .[ch]
88 yacc create \`y.tab.[ch]', if possible, from existing .[ch]
227 rm -f y.tab.c y.tab.h
234 cp "$SRCFILE" y.tab.c
238 cp "$SRCFILE" y.tab.h
243 if test ! -f y.tab.h; then
244 echo >y.tab.h
246 if test ! -f y.tab.c; then
247 echo 'main() { return 0; }' >y.tab
[all...]
/freebsd-12-stable/sbin/ipf/
H A DMakefile.inc25 CLEANFILES+= y.tab.c y.tab.h
/freebsd-12-stable/usr.sbin/apmd/
H A DMakefile7 SRCS= apmd.c apmdlex.l apmdparse.y y.tab.h
/freebsd-12-stable/contrib/byacc/
H A Ddefs.h76 #define HT '\t' /* horizontal tab */
77 #define VT '\013' /* vertical tab */
95 #define DEFINES_SUFFIX ".tab.h"
96 #define EXTERNS_SUFFIX ".tab.i"
97 #define OUTPUT_SUFFIX ".tab.c"
/freebsd-12-stable/sbin/hastctl/
H A DMakefile20 SRCS+= y.tab.h
40 CLEANFILES=y.tab.c y.tab.h y.output
/freebsd-12-stable/sbin/hastd/
H A DMakefile20 SRCS+= y.tab.h
38 CLEANFILES=y.tab.c y.tab.h y.output
/freebsd-12-stable/usr.sbin/bsnmpd/modules/snmp_hast/
H A DMakefile15 SRCS+= y.tab.h
39 CLEANFILES=y.tab.c y.tab.h y.output
/freebsd-12-stable/usr.sbin/ctld/
H A DMakefile10 SRCS+= login.c parse.y pdu.c token.l y.tab.h uclparse.c
21 CLEANFILES= y.tab.c y.tab.h y.output
/freebsd-12-stable/secure/lib/libcrypto/arm/
H A Darmv4-gf2m.S17 str r4,[sp,#0] @ tab[0]=0
19 str r5,[sp,#4] @ tab[1]=a1
21 str r6,[sp,#8] @ tab[2]=a2
23 str r7,[sp,#12] @ tab[3]=a1^a2
25 str r8,[sp,#16] @ tab[4]=a4
27 str r9,[sp,#20] @ tab[5]=a1^a4
29 str r4,[sp,#24] @ tab[6]=a2^a4
31 str r7,[sp,#28] @ tab[7]=a1^a2^a4
34 ldr r5,[sp,r8] @ tab[b & 0x7]
36 ldr r7,[sp,r9] @ tab[
[all...]
/freebsd-12-stable/usr.bin/mail/
H A Dcmd2.c458 ignore1(char **list, struct ignoretab *tab, const char *which) argument
466 return (igshow(tab, which));
469 if (member(field, tab))
476 igp->i_link = tab->i_head[h];
477 tab->i_head[h] = igp;
478 tab->i_count++;
487 igshow(struct ignoretab *tab, const char *which) argument
493 if (tab->i_count == 0) {
497 ring = (char **)salloc((tab->i_count + 1) * sizeof(char *));
500 for (igp = tab
[all...]
/freebsd-12-stable/contrib/bmake/unit-tests/
H A Descape.exp47 printf "%s=:%s:\n" VAR1BSNL00 first\ line; printf "%s=:%s:\n" VAR1BSNL0 first\ line\ no\ space\ on\ second\ line; printf "%s=:%s:\n" VAR1BSNLs first\ line\ one\ space\ on\ second\ line; printf "%s=:%s:\n" VAR1BSNLss first\ line\ two\ spaces\ on\ second\ line; printf "%s=:%s:\n" VAR1BSNLt first\ line\ one\ tab\ on\ second\ line; printf "%s=:%s:\n" VAR1BSNLtt first\ line\ two\ tabs\ on\ second\ line; printf "%s=:%s:\n" VAR1BSNLxx first\ line\ many\ spaces\ and\ tabs\ \[\ \ \ \ \]\ on\ second\ line;
52 VAR1BSNLt=:first line one tab on second line:
67 second line tab should be elided':
69 second line tab should be elided:
71 only one tab should be elided, second tab remains'
73 only one tab should be elided, second tab remains
97 second line tab should be elided':
99 second line tab shoul
[all...]

Completed in 506 milliseconds

1234567891011>>