HomeSort by: relevance | last modified time | path
    Searched defs:tables (Results 1 - 25 of 31) sorted by relevancy

1 2

  /src/crypto/external/bsd/heimdal/dist/lib/wind/
gen-bidi.py 48 tables = rfc3454.read(sys.argv[1]) variable
82 for l in tables[table]:
gen-errorlist.py 50 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))
gen-map.py 51 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))
gen-normalize.py 143 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]
  /src/sys/arch/ia64/ia64/
mainbus.c 76 int tables, i; local
87 tables = (UINT64 *)((char *)xsdt + xsdt->Header.Length) -
90 for (i = 0; i < tables; i++) {
  /src/usr.bin/cksum/
crc.c 149 tables(void) function
169 /* Compute the tables once. */
171 tables();
  /src/external/bsd/byacc/dist/
btyaccpar.c 48 const char *const tables[] = variable
yaccpar.c 48 const char *const tables[] = variable
  /src/sys/arch/ia64/acpi/
madt.c 128 int t, tables; local
137 tables = (UINT64 *)((char *)xsdt + xsdt->Header.Length) -
140 for (t = 0; t < tables; t++) {
228 int cpus, t, tables; local
236 tables = (UINT64 *)((char *)xsdt + xsdt->Header.Length) -
241 for (t = 0; t < tables; t++) {
  /src/usr.sbin/npf/npftest/libnpftest/
npf_table_test.c 234 const char *tables[] = { IPSET_NAME, LPM_NAME, IFADDR_NAME }; local
237 for (unsigned i = 0; i < __arraycount(tables); i++) {
245 t = npf_tableset_getbyname(tblset, tables[i]);
464 * Fill IPSET and LPM tables with IPv4 addresses.
  /src/external/bsd/less/dist/
lesskey.c 281 struct lesskey_tables tables; local
310 errors = parse_lesskey(infile, &tables);
342 fputint(out, tables.cmdtable.buf.end);
343 fputbytes(out, (char *)tables.cmdtable.buf.data, tables.cmdtable.buf.end);
346 fputint(out, tables.edittable.buf.end);
347 fputbytes(out, (char *)tables.edittable.buf.data, tables.edittable.buf.end);
351 fputint(out, tables.vartable.buf.end);
352 fputbytes(out, (char *)tables.vartable.buf.data, tables.vartable.buf.end)
    [all...]
lesskey_parse.c 145 static void init_tables(struct lesskey_tables *tables)
147 tables->currtable = &tables->cmdtable;
149 tables->cmdtable.names = cmdnames;
150 tables->cmdtable.is_var = 0;
151 xbuf_init(&tables->cmdtable.buf);
153 tables->edittable.names = editnames;
154 tables->edittable.is_var = 0;
155 xbuf_init(&tables->edittable.buf);
157 tables->vartable.names = NULL
533 add_cmd_str(tstr(&p, 0), tables); local
    [all...]
decode.c 28 * There may be many command tables.
30 * Other tables are read in from "lesskey" files.
31 * All the tables are linked together and are searched in order.
227 * Structure to support a list of command tables.
237 * List of command tables and list of line-edit tables.
304 * Expand special key abbreviations in a list of command tables.
316 * Expand special key abbreviations in all command tables.
333 * Add the default command tables.
339 /* Try to add tables in the OLD system lesskey file. *
853 static struct lesskey_tables tables; local
    [all...]
  /src/sys/dev/ic/
siop_common.c 249 /* prepare tables before sending a cmd */
340 struct siop_common_xfer *tables = siop_cmd->siop_tables; local
344 switch (tables->msg_in[3]) {
368 tables->msg_in[3]);
369 tables->t_msgout.count = siop_htoc32(sc, 1);
370 tables->msg_out[0] = MSG_MESSAGE_REJECT;
373 tables->id = siop_htoc32(sc, sc->targets[target]->id);
390 if (tables->msg_in[3] >= MSG_EXT_WDTR_BUS_16_BIT
398 tables->id = siop_htoc32(sc, sc->targets[target]->id);
420 struct siop_common_xfer *tables = siop_cmd->siop_tables local
529 struct siop_common_xfer *tables = siop_cmd->siop_tables; local
    [all...]
  /src/sys/external/bsd/drm2/dist/drm/amd/powerplay/
amdgpu_smu_v12_0.c 292 struct smu_table *tables = NULL; local
294 if (smu_table->tables)
297 tables = kcalloc(SMU_TABLE_COUNT, sizeof(struct smu_table),
299 if (!tables)
302 smu_table->tables = tables;
304 return smu_tables_init(smu, tables);
311 if (!smu_table->tables)
315 kfree(smu_table->tables);
318 smu_table->tables = NULL
    [all...]
amdgpu_smu.c 538 table_size = smu_table->tables[table_index].size;
856 * Create smu_table structure, and init smc tables such as
861 pr_err("Failed to init smc tables!\n");
990 struct smu_table *tables = smu_table->tables; local
996 if (tables[SMU_TABLE_PMSTATUSLOG].size) {
998 tables[SMU_TABLE_PMSTATUSLOG].size,
999 tables[SMU_TABLE_PMSTATUSLOG].align,
1000 tables[SMU_TABLE_PMSTATUSLOG].domain,
1001 &tables[SMU_TABLE_PMSTATUSLOG].bo
1047 struct smu_table *tables = smu_table->tables; local
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/Serialization/
MultiOnDiskHashTable.h 1 //===- 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.
86 TableVector 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
106 auto Begin = Tables.begin(), End = Tables.end()
    [all...]
  /src/external/bsd/ipf/dist/tools/
ipnat.c 267 void *tables[2]; local
279 kmemcpy((char *)&tables, nat_nlist[0].n_value, sizeof(tables));
280 nsp->ns_side[0].ns_table = tables[0];
281 nsp->ns_side[1].ns_table = tables[1];
ippool.c 489 printf("%lu\thash tables\n", htstat.iphs_numtables);
770 iphtable_t *tables[IPL_LOGSIZE]; local
776 bzero(&tables, sizeof(tables));
777 if (kmemcpy((char *)&tables, names[0].n_value, sizeof(tables)))
781 hptr = tables[role];
788 hptr = tables[role];
  /src/external/gpl3/gdb/dist/sim/igen/
gen.h 123 /* list of all the generated instruction tables */
124 gen_list *tables; member in struct:_gen_table
  /src/external/gpl3/gdb.old/dist/sim/igen/
gen.h 123 /* list of all the generated instruction tables */
124 gen_list *tables; member in struct:_gen_table
  /src/sys/dev/dm/
dm.h 98 dm_table_t tables[2]; member in struct:dm_table_head
127 * It points to SLIST of device tables and mirrored, snapshoted etc. devices.
  /src/sys/net/npf/
npf_ctl.c 33 * Implementation of (re)loading, construction of tables and rules.
198 const nvlist_t * const *tables; local
203 if (nvlist_exists_nvlist_array(req, "tables")) {
204 tables = nvlist_get_nvlist_array(req, "tables", &nitems);
210 tables = NULL;
215 const nvlist_t *table = tables[i];
565 * passed rules, tables, etc and atomically activate them all.
  /src/external/apache2/llvm/dist/llvm/include/llvm/Object/
Wasm.h 143 ArrayRef<wasm::WasmTable> tables() const { return Tables; } function in class:llvm::object::WasmObjectFile
278 std::vector<wasm::WasmTable> Tables;
  /src/external/mpl/bind/dist/lib/isc/
hashmap.c 62 /* We have two tables for incremental rehashing */
91 hashmap_table_t tables[HASHMAP_NUM_TABLES]; member in struct:isc_hashmap
126 return hashmap->tables[hashmap_nexttable(hashmap->hindex)].table !=
150 hashmap->tables[idx].hashbits, hashmap->tables[idx].size);
151 for (size_t i = 0; i < hashmap->tables[idx].size; i++) {
152 hashmap_node_t *node = &hashmap->tables[idx].table[i];
155 node->hashval, hashmap->tables[idx].hashbits);
171 REQUIRE(hashmap->tables[idx].hashbits == HASHMAP_NO_BITS);
172 REQUIRE(hashmap->tables[idx].table == NULL)
    [all...]

Completed in 54 milliseconds

1 2