Searched refs:tables (Results 1 - 25 of 68) sorted by relevance

123

/freebsd-current/contrib/llvm-project/libcxx/src/include/ryu/
H A Ddigit_table.h42 #include <__charconv/tables.h>
/freebsd-current/usr.bin/getaddrinfo/
H A DMakefile5 SRCS= getaddrinfo.c tables.h
14 CLEANFILES+= tables.h
15 tables.h: tables.awk ${SYS_SOCKET_H}
/freebsd-current/contrib/less/
H A Dlesskey_parse.c143 static void init_tables(struct lesskey_tables *tables) argument
145 tables->currtable = &tables->cmdtable;
147 tables->cmdtable.names = cmdnames;
148 tables->cmdtable.is_var = 0;
149 xbuf_init(&tables->cmdtable.buf);
151 tables->edittable.names = editnames;
152 tables->edittable.is_var = 0;
153 xbuf_init(&tables->edittable.buf);
155 tables
343 add_cmd_char(unsigned char c, struct lesskey_tables *tables) argument
348 erase_cmd_char(struct lesskey_tables *tables) argument
356 add_cmd_str(char *s, struct lesskey_tables *tables) argument
385 version_line(char *s, struct lesskey_tables *tables) argument
421 control_line(char *s, struct lesskey_tables *tables) argument
456 findaction(char *actname, struct lesskey_tables *tables) argument
474 parse_cmdline(char *p, struct lesskey_tables *tables) argument
531 add_cmd_str(tstr(&p, 0), tables); local
540 parse_varline(char *line, struct lesskey_tables *tables) argument
587 parse_line(char *line, struct lesskey_tables *tables) argument
615 parse_lesskey(char *infile, struct lesskey_tables *tables) argument
[all...]
H A Dlesskey.h63 extern int parse_lesskey(char *infile, struct lesskey_tables *tables);
H A Dlesskey.c279 struct lesskey_tables tables; local
308 errors = parse_lesskey(infile, &tables);
340 fputint(out, tables.cmdtable.buf.end);
341 fputbytes(out, (char *)tables.cmdtable.buf.data, tables.cmdtable.buf.end);
344 fputint(out, tables.edittable.buf.end);
345 fputbytes(out, (char *)tables.edittable.buf.data, tables.edittable.buf.end);
349 fputint(out, tables.vartable.buf.end);
350 fputbytes(out, (char *)tables
[all...]
H A Ddecode.c26 * There may be many command tables.
28 * Other tables are read in from "lesskey" files.
29 * All the tables are linked together and are searched in order.
225 * Structure to support a list of command tables.
235 * List of command tables and list of line-edit tables.
302 * Expand special key abbreviations in a list of command tables.
314 * Expand special key abbreviations in all command tables.
331 * Add the default command tables.
337 /* Try to add tables i
851 static struct lesskey_tables tables; local
[all...]
/freebsd-current/lib/clang/
H A DMakefile.inc9 DEBUG_FILES_CFLAGS= -gline-tables-only
/freebsd-current/usr.bin/clang/
H A DMakefile.inc8 DEBUG_FILES_CFLAGS= -gline-tables-only
/freebsd-current/crypto/heimdal/lib/wind/
H A Dgen-errorlist.py50 tables = rfc3454.read(sys.argv[1]) variable
54 tables[x] = t2[x]
89 for l in tables[t]:
104 (start, length, description, tables) = x
105 symbols = stringprep.symbols(error_list, tables)
110 % (start, length, symbols, ",".join(tables), description))
H A Dgen-map.py51 tables = rfc3454.read(sys.argv[1]) variable
55 tables[x] = t2[x]
92 for l in tables[t]:
130 (key, value, description, tables) = x
131 symbols = stringprep.symbols(map_list, tables)
133 print "no symbol for %s %s (%s)" % (key, description, tables)
137 % (key, len(v), offsetTable[key], symbols, ",".join(tables), description))
H A Dgen-normalize.py143 tables = {} variable
147 global table, tables
150 tables[ret] = [0] + [None] * 16
161 add(tables[table[i]], k[1:], v)
166 add(tables[top], k, v)
173 for k in sortedKeys(tables) :
174 t = tables[k]
196 for k in sortedKeys(tables) :
197 t = tables[k]
H A Dgen-bidi.py48 tables = rfc3454.read(sys.argv[1]) variable
82 for l in tables[table]:
H A Dstringprep.py53 def symbols(tabledict, tables):
56 for x in tables:
/freebsd-current/contrib/byacc/
H A Dyaccpar.c46 const char *const tables[] = variable
H A Dbtyaccpar.c46 const char *const tables[] = variable
/freebsd-current/contrib/ntp/libntp/lib/isc/
H A Dresult.c112 static ISC_LIST(resulttable) tables;
141 ISC_LIST_APPEND(tables, table, link);
153 ISC_LIST_INIT(tables);
182 for (table = ISC_LIST_HEAD(tables);
/freebsd-current/sbin/dhclient/tests/
H A DMakefile11 tables.c parse.c conflex.c tree.c fake.c \
/freebsd-current/bin/pax/
H A DMakefile8 tables.c tar.c tty_subs.c
/freebsd-current/usr.sbin/acpi/
H A DMakefile.inc24 ${ACPICA_DIR}/components/tables \
/freebsd-current/sbin/ipfw/
H A DMakefile10 SRCS= ipfw2.c dummynet.c ipv6.c main.c nat.c tables.c
/freebsd-current/lib/libgcc_eh/
H A DMakefile.inc24 CFLAGS.${file}+= -fno-exceptions -funwind-tables
31 CXXFLAGS.${file}+= -fno-exceptions -funwind-tables
/freebsd-current/lib/libclang_rt/
H A DMakefile.inc33 CFLAGS+= -funwind-tables
/freebsd-current/contrib/llvm-project/clang/lib/Serialization/
H A DMultiOnDiskHashTable.h1 //===- MultiOnDiskHashTable.h - Merged set of hash tables -------*- C++ -*-===//
12 // Multiple hash tables from different files are implicitly merged to improve
39 /// A collection of on-disk hash tables, merged when relevant for performance.
42 /// A handle to a file, used when overriding tables.
81 /// The current set of on-disk and merged tables.
88 /// Files corresponding to overridden tables that we've not yet
104 /// The current set of on-disk tables.
105 table_range tables() { function in class:clang::serialization::MultiOnDiskHashTable
119 /// Delete all our current on-disk tables.
121 for (auto *T : tables())
[all...]
/freebsd-current/contrib/ofed/opensm/opensm/
H A Dosm_qos_parser_l.l146 VLARB_TABLES_START vlarb\-tables
147 VLARB_TABLES_END end\-vlarb\-tables
155 SL2VL_TABLES_START sl2vl\-tables
156 SL2VL_TABLES_END end\-sl2vl\-tables
/freebsd-current/sbin/dhclient/
H A DMakefile38 tree.c conflex.c errwarn.c inet.c packet.c convert.c tables.c \

Completed in 160 milliseconds

123