| /freebsd/contrib/less/ |
| H A D | lesskey_parse.c | 157 static void init_tables(struct lesskey_tables *tables) in init_tables() argument 159 tables->currtable = &tables->cmdtable; in init_tables() 161 tables->cmdtable.names = cmdnames; in init_tables() 162 tables->cmdtable.is_var = 0; in init_tables() 163 xbuf_init(&tables->cmdtable.buf); in init_tables() 165 tables->edittable.names = editnames; in init_tables() 166 tables->edittable.is_var = 0; in init_tables() 167 xbuf_init(&tables->edittable.buf); in init_tables() 169 tables->vartable.names = NULL; in init_tables() 170 tables->vartable.is_var = 1; in init_tables() [all …]
|
| /freebsd/contrib/llvm-project/clang/lib/Serialization/ |
| H A D | 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; variable 88 /// Files corresponding to overridden tables that we've not yet 104 /// The current set of on-disk tables. 105 table_range tables() { in tables() function 106 auto Begin = Tables.begin(), End = Tables.end(); in tables() [all …]
|
| /illumos-gate/usr/src/man/man8/ |
| H A D | acpidump.8 | 18 .Nd dump ACPI tables 32 (ACPI) tables that are provided by system firmware. 33 The dumped tables can be used by other utilities, such as 43 Dump all tables to binary files. 45 Enable dumping customized tables. 56 Dump tables from the 71 Dump all ACPI Tables 73 The following example dumps all of the ACPI tables from the system. 76 and the iasl utility to decode the ACPI tables from the system. 77 In this example, all of the tables are written to the file
|
| H A D | acpixtract.8 | 18 .Nd extract binary ACPI tables from a dump file 28 Configuration and Power Interface (ACPI) tables. 42 Extract all of the tables found. 47 tables will be extracted. 51 List tables only, do not extract. 57 tables. 65 Extract all ACPI tables 67 The following example extracts all of the individual ACPI tables from a 68 previously created dump of the ACPI tables from a running system. 72 Extracted tables can then be inspected or disassembled by the [all …]
|
| H A D | in.ripngd.8 | 17 boot time to manage the network routing tables. The routing daemon uses the 35 periodically supplies copies of its routing tables to any directly connected 48 the information maintained in its internal tables. The response packet contains 58 tables if one of the following conditions is satisfied: 88 currently stored in the routing tables; this is determined by comparing the 94 tables and generates a response packet to all directly connected hosts and 97 kernel's routing tables. 107 Hosts acting as internetwork routers gratuitously supply their routing tables 180 Print all changes made to the routing tables to standard output with a 204 The kernel's routing tables may not correspond to those of \fBin.ripngd\fR for
|
| H A D | ipfs.8 | 8 ipfs \- saves and restores information for NAT and state tables 108 Unlock state tables in the kernel. 117 Lock state tables in the kernel. 127 requires the state tables to have already been locked and does not change the 138 the state tables to have already been locked and does not change the lock once 150 can be changed with the \fB-d\fR option. The state tables are locked at the 162 can be changed with the \fB-d\fR option. The state tables are locked at the
|
| /freebsd/usr.sbin/acpi/acpidump/ |
| H A D | acpidump.8 | 35 .Nd dump ACPI tables and ASL 48 utility analyzes ACPI tables in physical memory and can dump them to a file. 55 found in these tables and dump them as ASL 59 ACPI tables have an essential data block (the DSDT, 76 option, it will read ACPI tables from physical memory via 85 for other tables. 86 The RSDT itself and all other tables linked from RSDT are generically 88 (System Description Tables) 97 utility dumps contents of all the ACPI tables, except the DSDT and SSDT. 142 An array of physical pointers to other system description tables, [all …]
|
| /freebsd/contrib/llvm-project/llvm/utils/TableGen/ |
| H A D | DisassemblerEmitter.cpp | 32 /// The emitter produces the tables that the disassembler uses to translate 33 /// instructions. The emitter generates the following tables: 42 /// returned.) This allows considerable space savings in other tables. 43 /// - Six tables (ONEBYTE_SYM, TWOBYTE_SYM, THREEBYTE38_SYM, THREEBYTE3A_SYM, 53 /// occupy the same space in the decode tables. These conflicts are resolved as 57 /// (that is, the attributes specified for it in the LLVM tables specify 74 /// (2) to fix the tables (X86.td and its subsidiaries) so the opcodes are 76 /// (3) to fix the tables to reflect the actual context (for example, required 84 /// X86DisassemblerTables.h contains the interface for the instruction tables, 87 /// tables. [all …]
|
| H A D | X86DisassemblerTables.h | 1 //===- X86DisassemblerTables.h - Disassembler tables ------------*- C++ -*-===// 10 // It contains the interface of the disassembler tables. 32 /// DisassemblerTables - Encapsulates all the decode tables being generated by 33 /// the table emitter. Contains functions to populate the tables as well as 38 /// The decoder tables. There is one for each opcode type: 51 std::unique_ptr<ContextDecision> Tables[12]; 76 /// nnnn is the number of a table for looking up these values. The tables 77 /// are written separately so that tables consisting entirely of zeros will 111 /// stream and indent level for the UID tables generated by 114 /// @param o1 - The output stream to print the ID tables generated by [all …]
|
| H A D | X86RecognizableInstr.h | 240 /// instruction, as extracted from the LLVM instruction tables. Has methods 241 /// to interpret the information available in the LLVM tables, and to emit the 247 /// The instruction name as listed in the tables 271 /// the LLVM tables to an OperandType for use in the operand specifier. 286 /// string provided in the LLVM tables to an OperandEncoding for use in 349 /// emitDecodePath - Populates the proper fields in the decode tables 352 /// \param tables The DisassemblerTables to populate with the decode 354 void emitDecodePath(DisassemblerTables &tables) const; 360 /// \param tables The DisassemblerTables that the specifier will be added to. 363 RecognizableInstr(DisassemblerTables &tables, const CodeGenInstruction &insn, [all …]
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/CodeGen/ |
| H A D | MachineJumpTableInfo.h | 1 //===-- CodeGen/MachineJumpTableInfo.h - Abstract Jump Tables --*- C++ -*-===// 9 // The MachineJumpTableInfo class keeps track of jump tables referenced by 12 // Instructions reference the address of these jump tables through the use of 15 // function jump tables. 62 /// the address of the jump table. This is used for PIC jump tables where 71 /// the address of the jump table. This is used for PIC jump tables where 102 /// isEmpty - Return true if there are no jump tables. 116 /// RemoveMBBFromJumpTables - If MBB is present in any jump tables, remove it. 119 /// ReplaceMBBInJumpTables - If Old is the target of any jump tables, update 120 /// the jump tables t [all...] |
| /freebsd/contrib/flex/src/ |
| H A D | tables.h | 1 /* tables.h - tables serialization code 44 /* Tables serialization API declarations. */ 55 * tablesext - if true, create external tables 56 * tablesfilename - filename for external tables 58 * tableswr - writer for external tables 59 * tablesverify - true if tables-verify option specified 60 * gentables - true if we should spit out the normal C tables
|
| /illumos-gate/usr/src/cmd/lp/filter/postscript/font/ |
| H A D | README | 23 The devpost directory includes width tables for the entire LaserWriter Plus font 24 set (and a few others). The width tables assume a resolution of 720 dpi (which 27 dpost goes there automatically. The width tables were generated on a PostScript 64 3: Build the width tables and install the ASCII files in ./devpost. Width tables 66 in directory ../buildtables and have the printer generate the tables. Widths 74 The fourth column in the width tables is the character code field and is only 115 The devpostaps directory is new and the binary tables won't be built or installed 116 unless you do it by hand. The tables are an attempt to make Linotronic output look 120 build and install the devpostaps tables, 131 The tables should only be used by dpost - troff files should be formatted with
|
| /freebsd/sbin/ipf/ipfs/ |
| H A D | ipfs.8 | 4 ipfs \- saves and restores information for NAT and state tables. 75 Unlock state tables in the kernel. 78 Lock state tables in the kernel. 82 kernel. This requires the state tables to have already been locked 87 This requires the state tables to have already been locked 95 option. The state tables are locked at the beginning of this 103 option. The state tables are locked at the beginning of this
|
| /freebsd/sbin/pfctl/ |
| H A D | pfctl.8 | 154 Private tables can also be put inside anchors, either by having table 166 It is possible to create distinct tables with the same name in the global 191 To flush all rulesets and tables recursively, specify only 230 .It Cm Tables 231 Flush the tables. 251 .Cm Tables 260 may contain macros, tables, options, and normalization, queueing, 262 With the exception of macros and tables, the statements must appear in that 431 Perform reverse DNS lookups on states and tables when displaying them. 513 .It Cm Tables [all …]
|
| /freebsd/sys/contrib/device-tree/Bindings/memory-controllers/ |
| H A D | nvidia,tegra20-emc.txt | 11 set of tables can be present and said tables will be used 63 and the tables are stored directly under the emc node (see below). 67 - name : Should be emc-tables 79 There are two ways of specifying which tables to use: 81 * The simplest is if there is just one set of tables in the device tree, 92 used to select which tables to use. 97 - reg : either an opaque enumerator to tell different tables apart, or
|
| /freebsd/crypto/heimdal/lib/wind/ |
| H A D | 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]
|
| /freebsd/crypto/krb5/src/lib/crypto/builtin/aes/ |
| H A D | aestab.h | 20 This file contains the code for declaring the tables needed to implement 23 the AES tables in a structure so that a pointer can then be added to the 28 tables are initialised. In practice the three code sequences in aeskey.c 32 STATIC_TABLES option that uses static global tables. 34 The following defines can be used to control the way the tables 42 256 byte tables: 47 256 32-bit word OR 4 x 256 32-bit word tables: 56 Other variables and tables: 74 /* make tables far data to avoid using too much DGROUP space (PG) */
|
| /illumos-gate/usr/src/lib/libnisdb/ |
| H A D | db_dictionary.cc | 209 if (dict->tables.tables_val) { in delete_dictionary() 211 for (i = 0; i < dict->tables.tables_len; i++) { in delete_dictionary() 212 bucket = dict->tables.tables_val[i]; in delete_dictionary() 217 delete dict->tables.tables_val; in delete_dictionary() 415 oldsize = dd->tables.tables_len; in grow_dictionary() 416 oldtab = dd->tables.tables_val; in grow_dictionary() 439 dd->tables.tables_val = newtab; in grow_dictionary() 440 dd->tables.tables_len = new_size; in grow_dictionary() 471 for (i = 0; i < dd->tables.tables_len; i++) { in enumerate_dictionary() 472 bucket = dd->tables.tables_val[i]; in enumerate_dictionary() [all …]
|
| /freebsd/share/doc/smm/18.net/ |
| H A D | a.t | 56 Routing tables 58 The network system maintains a set of routing tables for 60 packet to its destination. These tables are of the form: 74 The routing information is organized in two separate tables, one 150 affect on the routing tables. These statistics may be viewed using 161 A protocol accesses the routing tables through 196 kernel routing tables through two \fIioctl\fP calls. The 198 respectively; the tables are read through the /dev/kmem device. 210 Protocol [Xerox82] to maintain up-to-date routing tables in our local
|
| /freebsd/sys/contrib/dev/acpica/components/tables/ |
| H A D | tbdata.c | 181 * RETURN: TRUE if both tables are identical. 200 Status = AcpiTbAcquireTable (&AcpiGbl_RootTableList.Tables[TableIndex], in AcpiTbCompareTables() 247 * tables, since the table is not fully mapped at this time. in AcpiTbInitTableDescriptor() 282 * DESCRIPTION: Acquire an ACPI table. It can be used for tables not 602 * DESCRIPTION: Avoid installing duplicated tables. However table override and 624 /* Do not compare with unverified tables */ in AcpiTbCheckDuplication() 626 if (!(AcpiGbl_RootTableList.Tables[i].Flags & ACPI_TABLE_IS_VERIFIED)) in AcpiTbCheckDuplication() 645 * The assumption here is that the number of different tables that in AcpiTbCheckDuplication() 650 * machines with many table load/unload operations), tables will in AcpiTbCheckDuplication() 654 if (AcpiGbl_RootTableList.Tables[i].Flags & in AcpiTbCheckDuplication() [all …]
|
| /illumos-gate/usr/src/common/acpica/tables/ |
| H A D | tbdata.c | 181 * RETURN: TRUE if both tables are identical. 200 Status = AcpiTbAcquireTable (&AcpiGbl_RootTableList.Tables[TableIndex], in AcpiTbCompareTables() 268 * DESCRIPTION: Acquire an ACPI table. It can be used for tables not 567 * DESCRIPTION: Avoid installing duplicated tables. However table override and 589 /* Do not compare with unverified tables */ in AcpiTbCheckDuplication() 591 if (!(AcpiGbl_RootTableList.Tables[i].Flags & ACPI_TABLE_IS_VERIFIED)) in AcpiTbCheckDuplication() 610 * The assumption here is that the number of different tables that in AcpiTbCheckDuplication() 615 * machines with many table load/unload operations), tables will in AcpiTbCheckDuplication() 619 if (AcpiGbl_RootTableList.Tables[i].Flags & in AcpiTbCheckDuplication() 753 ACPI_TABLE_DESC *Tables; in AcpiTbResizeRootTableList() local [all …]
|
| H A D | tbxfload.c | 172 * DESCRIPTION: Load the ACPI tables from the RSDT/XSDT 205 /* Load the namespace from the tables */ in AcpiLoadTables() 219 "While loading namespace from ACPI tables")); in AcpiLoadTables() 279 * PSDT tables are optional. Verify the DSDT. in ACPI_EXPORT_SYMBOL_INIT() 281 Table = &AcpiGbl_RootTableList.Tables[AcpiGbl_DsdtIndex]; in ACPI_EXPORT_SYMBOL_INIT() 293 * address. We must take care here because the address of the .Tables in ACPI_EXPORT_SYMBOL_INIT() 294 * array can change dynamically as tables are loaded at run-time. Note: in ACPI_EXPORT_SYMBOL_INIT() 321 /* Load and parse tables */ in ACPI_EXPORT_SYMBOL_INIT() 336 /* Load any SSDT or PSDT tables. Note: Loop leaves tables locked */ in ACPI_EXPORT_SYMBOL_INIT() 340 Table = &AcpiGbl_RootTableList.Tables[i]; in ACPI_EXPORT_SYMBOL_INIT() [all …]
|
| /illumos-gate/usr/src/man/man7/ |
| H A D | iconv.7 | 49 iconv \- code set conversion tables 126 The conversions are performed according to the tables contained in the manual 127 pages cross-referenced in the \fBIndex of Conversion Code Tables\fR below. 135 \fBIndex of Conversion Code Tables\fR 211 \fBIndex of Conversion Code Tables\fR 282 Conversion tables. 292 Conversion binary tables. 302 List of conversions supported by conversion tables.
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/DWARFLinkerParallel/ |
| H A D | DWARFLinker.h | |