Home
last modified time | relevance | path

Searched refs:dtable (Results 1 – 7 of 7) sorted by relevance

/freebsd-12.1/sys/contrib/zstd/doc/educational_decoder/
H A Dzstd_decompress.c951 FSE_dtable dtable; in fse_decode_hufweights() local
961 FSE_free_dtable(&dtable); in fse_decode_hufweights()
1944 free(dtable->symbols); in HUF_free_dtable()
1945 free(dtable->num_bits); in HUF_free_dtable()
2085 if (!dtable->symbols || !dtable->num_bits || !dtable->new_state_base) { in FSE_init_dtable()
2264 if (!dtable->symbols || !dtable->num_bits || !dtable->new_state_base) { in FSE_init_dtable_rle()
2270 dtable->symbols[0] = symb; in FSE_init_dtable_rle()
2271 dtable->num_bits[0] = 0; in FSE_init_dtable_rle()
2273 dtable->accuracy_log = 0; in FSE_init_dtable_rle()
2277 free(dtable->symbols); in FSE_free_dtable()
[all …]
/freebsd-12.1/libexec/mknetid/
H A Dmknetid.c85 struct member_entry *dtable[TABLESIZE]; variable
222 if (lookup(dtable, writebuf)) { in main()
228 mstore(dtable, writebuf, 0, 1); in main()
264 if (lookup(dtable, (char *)&writebuf)) { in main()
270 mstore(dtable, (char *)&writebuf, 0, 1); in main()
293 if (lookup(dtable, (char *)&readbuf)) { in main()
299 mstore(dtable, (char *)&readbuf, 0, 1); in main()
/freebsd-12.1/contrib/wpa/src/utils/
H A Dbase64.c90 unsigned char dtable[256], *out, *pos, block[4], tmp; in base64_gen_decode() local
95 os_memset(dtable, 0x80, 256); in base64_gen_decode()
97 dtable[table[i]] = (unsigned char) i; in base64_gen_decode()
98 dtable['='] = 0; in base64_gen_decode()
102 if (dtable[src[i]] != 0x80) in base64_gen_decode()
123 tmp = dtable[val]; in base64_gen_decode()
/freebsd-12.1/usr.sbin/rtadvctl/
H A Drtadvctl.c109 } dtable[] = { variable
142 for (i = 0; (size_t)i < sizeof(dtable)/sizeof(dtable[0]); i++) { in usage()
143 if (dtable[i].dt_comm == NULL) in usage()
145 printf("%s\n", dtable[i].dt_comm); in usage()
177 for (i = 0; (size_t)i < sizeof(dtable)/sizeof(dtable[0]); i++) { in main()
178 if (dtable[i].dt_comm == NULL || in main()
179 strcmp(dtable[i].dt_comm, argv[0]) == 0) { in main()
180 action = dtable[i].dt_act; in main()
188 error = (dtable[i].dt_act)(--argc, ++argv); in main()
190 fprintf(stderr, "%s failed", dtable[i].dt_comm); in main()
/freebsd-12.1/contrib/gcclibs/libcpp/
H A Ddirectives.c178 static const directive dtable[] = variable
282 if (pfile->directive != &dtable[T_DEFINE]) in end_directive()
308 if (pfile->directive != &dtable[T_DEFINE]) in prepare_directive_trad()
314 pfile->state.in_expression = (pfile->directive == &dtable[T_IF] in prepare_directive_trad()
315 || pfile->directive == &dtable[T_ELIF]); in prepare_directive_trad()
353 if (dir == &dtable[T_ELIF]) in directive_diagnostics()
398 dir = &dtable[dname->val.node->directive_index]; in _cpp_handle_directive()
501 pfile->directive = &dtable[dir_no]; in run_directive()
688 if (pfile->directive == &dtable[T_PRAGMA]) in parse_include()
2212 "unterminated #%s", dtable[ifs->type].name); in _cpp_pop_buffer()
[all …]
/freebsd-12.1/contrib/gcc/
H A DChangeLog-200026138 (directive_table): Rename to dtable. Generate it, the
H A DChangeLog-200215434 * cpplib.c (dtable): Update.