Home
last modified time | relevance | path

Searched refs:tab (Results 26 – 50 of 838) sorted by relevance

12345678910>>...34

/freebsd/crypto/heimdal/lib/roken/
H A Dmissing115 rm -f y.tab.c y.tab.h
122 cp "$SRCFILE" y.tab.c
126 cp "$SRCFILE" y.tab.h
131 if [ ! -f y.tab.h ]; then
132 echo >y.tab.h
134 if [ ! -f y.tab.c ]; then
135 echo 'main() { return 0; }' >y.tab.c
/freebsd/sys/crypto/openssl/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[b >> 3 & 0x7]
[all …]
/freebsd/usr.bin/awk/
H A DMakefile8 SRCS= awkgram.y b.c lex.c lib.c main.c parse.c proctab.c run.c tran.c awkgram.tab.h
19 CLEANFILES= maketab proctab.c awkgram.tab.h
21 awkgram.tab.h: awkgram.h
24 proctab.c: awkgram.tab.h
25 ${BTOOLSPATH:U.}/maketab awkgram.tab.h > proctab.c
31 maketab: awkgram.tab.h ${BUILD_TOOLS_META}
/freebsd/crypto/heimdal/
H A Dmissing227 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.c
/freebsd/lib/libsysdecode/tests/
H A Dsysdecode_test.c45 cap_rights_t *rightsp, const char *tab[]) in check_sysdecode_cap_rights() argument
58 for (i = 0; tab[i] != NULL; i++) { in check_sysdecode_cap_rights()
59 if (strcmp(tok, tab[i]) == 0) in check_sysdecode_cap_rights()
62 ATF_REQUIRE_MSG(tab[i] != NULL, in check_sysdecode_cap_rights()
67 for (i = 0; tab[i] != NULL; i++) { in check_sysdecode_cap_rights()
71 if (strcmp(tok, tab[i]) == 0) in check_sysdecode_cap_rights()
76 "did not find '%s' in output stream", tab[i]); in check_sysdecode_cap_rights()
/freebsd/sys/arm64/arm64/
H A Ddisassem.c296 while (tab->name != NULL) { in arm64_disasm_generate_masks()
299 format = tab->format; in arm64_disasm_generate_masks()
339 tab->name); in arm64_disasm_generate_masks()
353 tab->name); in arm64_disasm_generate_masks()
360 tab->tokens[token].len = len; in arm64_disasm_generate_masks()
371 tab->mask = mask; in arm64_disasm_generate_masks()
372 tab->pattern = val; in arm64_disasm_generate_masks()
381 tab->mask = 0; in arm64_disasm_generate_masks()
382 tab->pattern = 0xffffffff; in arm64_disasm_generate_masks()
384 tab->name); in arm64_disasm_generate_masks()
[all …]
/freebsd/usr.bin/mail/
H A Dcmd2.c451 ignore1(char **list, struct ignoretab *tab, const char *which) in ignore1() argument
459 return (igshow(tab, which)); in ignore1()
462 if (member(field, tab)) in ignore1()
469 igp->i_link = tab->i_head[h]; in ignore1()
470 tab->i_head[h] = igp; in ignore1()
471 tab->i_count++; in ignore1()
480 igshow(struct ignoretab *tab, const char *which) in igshow() argument
486 if (tab->i_count == 0) { in igshow()
490 ring = (char **)salloc((tab->i_count + 1) * sizeof(char *)); in igshow()
493 for (igp = tab->i_head[h]; igp != NULL; igp = igp->i_link) in igshow()
[all …]
/freebsd/sbin/setkey/
H A DMakefile39 CLEANFILES= y.tab.c y.tab.h key_test.o keytest
47 SRCS+= y.tab.h
48 y.tab.h: parse.y
58 CLEANFILES+= scriptdump y.tab.h
/freebsd/contrib/netbsd-tests/lib/libc/string/
H A Dt_strchr.c66 const char *tab[] = { in ATF_TC_BODY() local
259 for (t = 0; t < (sizeof(tab) / sizeof(tab[0])); ++t) { in ATF_TC_BODY()
260 int len = strlen(tab[t]) + 1; in ATF_TC_BODY()
261 memcpy(&buf[a], tab[t], len); in ATF_TC_BODY()
H A Dt_strchrnul.c65 const char *tab[] = { in ATF_TC_BODY() local
258 for (t = 0; t < (sizeof(tab) / sizeof(tab[0])); ++t) { in ATF_TC_BODY()
259 int len = strlen(tab[t]) + 1; in ATF_TC_BODY()
260 memcpy(&buf[a], tab[t], len); in ATF_TC_BODY()
/freebsd/lib/libipsec/
H A DMakefile47 CLEANFILES+= y.tab.c y.tab.h
57 SRCS+= y.tab.h
58 y.tab.h: policy_parse.y
/freebsd/contrib/llvm-project/compiler-rt/lib/tsan/rtl/
H A Dtsan_fd.cpp41 atomic_uintptr_t tab[kTableSizeL1]; member
83 atomic_uintptr_t *pl1 = &fdctx.tab[fd / kTableSizeL2]; in fddesc()
150 FdDesc *tab = (FdDesc*)atomic_load(&fdctx.tab[l1], memory_order_relaxed); in FdOnFork() local
151 if (tab == 0) in FdOnFork()
154 FdDesc *d = &tab[l2]; in FdOnFork()
162 FdDesc *tab = (FdDesc*)atomic_load(&fdctx.tab[l1], memory_order_relaxed); in FdLocation() local
163 if (tab == 0) in FdLocation()
165 if (addr >= (uptr)tab && addr < (uptr)(tab + kTableSizeL2)) { in FdLocation()
166 int l2 = (addr - (uptr)tab) / sizeof(FdDesc); in FdLocation()
167 FdDesc *d = &tab[l2]; in FdLocation()
/freebsd/contrib/arm-optimized-routines/pl/math/
H A Dmath_config.h352 } tab[513]; member
366 } tab[645]; member
377 } tab[1 << LOGF_TABLE_BITS]; member
397 } tab[1 << LOG10_TABLE_BITS]; member
425 uint64_t tab[2 * (1 << EXP_TABLE_BITS)]; member
441 } tab[769]; member
455 } tab[3488]; member
488 } tab[1 << LOG_TABLE_BITS]; member
579 uint64_t tab[1 << EXPF_TABLE_BITS]; member
/freebsd/sbin/ipf/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/share/mk/
H A Dbsd.suffixes-posix.mk29 ${CC} ${CFLAGS} -c y.tab.c
30 rm -f y.tab.c
31 mv y.tab.o ${.TARGET}
41 mv y.tab.c ${.TARGET}
/freebsd/contrib/byacc/test/
H A Drun_make.sh122 sed -e '/^#line/s,"run_make.y","'"$input"'",' y.tab.c >run_make.c
124 rm -f y.tab.c
179 if test -f y.tab.c
181 sed -e '/^#line/s,"run_make.y","'"$input"'",' y.tab.c >run_make.c
183 rm -f y.tab.c
/freebsd/contrib/arm-optimized-routines/math/
H A Dmath_config.h365 uint64_t tab[1 << EXP2F_TABLE_BITS]; member
380 } tab[1 << LOGF_TABLE_BITS]; member
392 } tab[1 << LOG2F_TABLE_BITS]; member
409 } tab[1 << POWF_LOG2_TABLE_BITS]; member
440 uint64_t tab[2*(1 << EXP_TABLE_BITS)]; member
452 struct {double invc, logc;} tab[1 << LOG_TABLE_BITS]; member
467 struct {double invc, logc;} tab[1 << LOG2_TABLE_BITS]; member
481 struct {double invc, pad, logc, logctail;} tab[1 << POW_LOG_TABLE_BITS]; member
/freebsd/usr.sbin/rrenumd/
H A DMakefile27 CLEANFILES= y.tab.h
28 SRCS+= y.tab.h
29 y.tab.h: parser.y
/freebsd/contrib/ntp/sntp/libevent/build-aux/
H A Ddepcomp99 sed -e "s,^.*\.[$lower]*:[$tab ]*,," -e 's,$,:,' < "$tmpdepfile"
108 tab=' '
547 s/\(.*\)/'"$tab"'\1 \\/p
551 s/.*/'"$tab"'/
607 sed "s|^[$tab ]*[^:$tab ][^:][^:]*:[$tab ]*|$object: |" > "$tmpdepfile"
758 sed < "$tmpdepfile" -n -e 's% %\\ %g' -e '/^\(.*\)$/ s::'"$tab"'\1 \\:p' >> "$depfile"
759 echo "$tab" >> "$depfile"
/freebsd/contrib/openbsm/config/
H A Ddepcomp99 sed -e "s,^.*\.[$lower]*:[$tab ]*,," -e 's,$,:,' < "$tmpdepfile"
108 tab=' '
547 s/\(.*\)/'"$tab"'\1 \\/p
551 s/.*/'"$tab"'/
607 sed "s|^[$tab ]*[^:$tab ][^:][^:]*:[$tab ]*|$object: |" > "$tmpdepfile"
758 sed < "$tmpdepfile" -n -e 's% %\\ %g' -e '/^\(.*\)$/ s::'"$tab"'\1 \\:p' >> "$depfile"
759 echo "$tab" >> "$depfile"
/freebsd/contrib/sqlite3/
H A Ddepcomp99 sed -e "s,^.*\.[$lower]*:[$tab ]*,," -e 's,$,:,' < "$tmpdepfile"
108 tab=' '
547 s/\(.*\)/'"$tab"'\1 \\/p
551 s/.*/'"$tab"'/
607 sed "s|^[$tab ]*[^:$tab ][^:][^:]*:[$tab ]*|$object: |" > "$tmpdepfile"
758 sed < "$tmpdepfile" -n -e 's% %\\ %g' -e '/^\(.*\)$/ s::'"$tab"'\1 \\:p' >> "$depfile"
759 echo "$tab" >> "$depfile"
/freebsd/contrib/file/
H A Ddepcomp99 sed -e "s,^.*\.[$lower]*:[$tab ]*,," -e 's,$,:,' < "$tmpdepfile"
108 tab=' '
547 s/\(.*\)/'"$tab"'\1 \\/p
551 s/.*/'"$tab"'/
607 sed "s|^[$tab ]*[^:$tab ][^:][^:]*:[$tab ]*|$object: |" > "$tmpdepfile"
758 sed < "$tmpdepfile" -n -e 's% %\\ %g' -e '/^\(.*\)$/ s::'"$tab"'\1 \\:p' >> "$depfile"
759 echo "$tab" >> "$depfile"
/freebsd/contrib/ntp/sntp/libevent/
H A Ddepcomp99 sed -e "s,^.*\.[$lower]*:[$tab ]*,," -e 's,$,:,' < "$tmpdepfile"
108 tab=' '
547 s/\(.*\)/'"$tab"'\1 \\/p
551 s/.*/'"$tab"'/
607 sed "s|^[$tab ]*[^:$tab ][^:][^:]*:[$tab ]*|$object: |" > "$tmpdepfile"
758 sed < "$tmpdepfile" -n -e 's% %\\ %g' -e '/^\(.*\)$/ s::'"$tab"'\1 \\:p' >> "$depfile"
759 echo "$tab" >> "$depfile"
/freebsd/contrib/openpam/
H A Ddepcomp99 sed -e "s,^.*\.[$lower]*:[$tab ]*,," -e 's,$,:,' < "$tmpdepfile"
108 tab=' '
547 s/\(.*\)/'"$tab"'\1 \\/p
551 s/.*/'"$tab"'/
607 sed "s|^[$tab ]*[^:$tab ][^:][^:]*:[$tab ]*|$object: |" > "$tmpdepfile"
758 sed < "$tmpdepfile" -n -e 's% %\\ %g' -e '/^\(.*\)$/ s::'"$tab"'\1 \\:p' >> "$depfile"
759 echo "$tab" >> "$depfile"
/freebsd/contrib/libevent/build-aux/
H A Ddepcomp99 sed -e "s,^.*\.[$lower]*:[$tab ]*,," -e 's,$,:,' < "$tmpdepfile"
108 tab=' '
547 s/\(.*\)/'"$tab"'\1 \\/p
551 s/.*/'"$tab"'/
607 sed "s|^[$tab ]*[^:$tab ][^:][^:]*:[$tab ]*|$object: |" > "$tmpdepfile"
758 sed < "$tmpdepfile" -n -e 's% %\\ %g' -e '/^\(.*\)$/ s::'"$tab"'\1 \\:p' >> "$depfile"
759 echo "$tab" >> "$depfile"

12345678910>>...34