/freebsd/contrib/less/ |
H A D | lesskey_parse.c | 150 static void init_tables(struct lesskey_tables *tables) in init_tables() 152 tables->currtable = &tables->cmdtable; in init_tables() 154 tables->cmdtable.names = cmdnames; in init_tables() 155 tables->cmdtable.is_var = 0; in init_tables() 156 xbuf_init(&tables->cmdtable.buf); in init_tables() 158 tables->edittable.names = editnames; in init_tables() 159 tables->edittable.is_var = 0; 160 xbuf_init(&tables->edittable.buf); 162 tables 143 init_tables(struct lesskey_tables * tables) init_tables() argument 343 add_cmd_char(unsigned char c,struct lesskey_tables * tables) add_cmd_char() argument 348 erase_cmd_char(struct lesskey_tables * tables) erase_cmd_char() argument 356 add_cmd_str(char * s,struct lesskey_tables * tables) add_cmd_str() argument 385 version_line(char * s,struct lesskey_tables * tables) version_line() argument 421 control_line(char * s,struct lesskey_tables * tables) control_line() argument 456 findaction(char * actname,struct lesskey_tables * tables) findaction() argument 474 parse_cmdline(char * p,struct lesskey_tables * tables) parse_cmdline() argument 540 parse_varline(char * line,struct lesskey_tables * tables) parse_varline() argument 587 parse_line(char * line,struct lesskey_tables * tables) parse_line() argument 615 parse_lesskey(char * infile,struct lesskey_tables * tables) parse_lesskey() argument [all...] |
H A D | decode.c | 26 * 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. 248 * Structure to support a list of command tables. in expand_special_keys() 258 * List of command tables and list of line-edit tables. in expand_special_keys() 325 * Expand special key abbreviations in a list of command tables. 337 * Expand special key abbreviations in all command tables. in init_cmds() 353 * Add the default command tables. in init_cmds() 360 /* Try to add tables i in init_cmds() 851 static struct lesskey_tables tables; lesskey_src() local [all...] |
H A D | lesskey.c | 286 struct lesskey_tables tables; in main() 315 errors = parse_lesskey(infile, &tables); in main() 347 fputint(out, tables.cmdtable.buf.end); in main() 348 fputbytes(out, xbuf_char_data(&tables.cmdtable.buf), tables.cmdtable.buf.end); in main() 351 fputint(out, tables.edittable.buf.end); in main() 352 fputbytes(out, xbuf_char_data(&tables.edittable.buf), tables.edittable.buf.end); in main() 356 fputint(out, tables.vartable.buf.end); in main() 357 fputbytes(out, xbuf_char_data(&tables in main() 279 struct lesskey_tables tables; main() local [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 …]
|
/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 …]
|
H A D | X86MnemonicTables.cpp | 1 //==- X86MnemonicTables.cpp - Generate mnemonic extraction tables. -*- C++ -*-// 9 // This tablegen backend is responsible for emitting tables that group 30 // Output X86 mnemonic tables. 35 emitSourceFileHeader("X86 Mnemonic tables", OS); in run() 91 X("gen-x86-mnemonic-tables", "Generate X86 mnemonic tables");
|
/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
|
/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/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/sbin/pfctl/ |
H A D | pfctl.8 | 152 Private tables can also be put inside anchors, either by having table 164 It is possible to create distinct tables with the same name in the global 221 .It Fl F Cm Tables 222 Flush the tables. 233 may contain macros, tables, options, and normalization, queueing, 235 With the exception of macros and tables, the statements must appear in that 459 .It Fl s Cm Tables 460 Show the list of tables. 645 Similarly, it is possible to view global information about the tables 650 .Cm Tables [all …]
|
/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]
|
H A D | 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))
|
H A D | 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))
|
/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 …]
|
/freebsd/contrib/llvm-project/llvm/include/llvm/DWARFLinkerParallel/ |
H A D | DWARFLinker.h |
|
/freebsd/usr.bin/getaddrinfo/ |
H A D | Makefile | 5 SRCS= getaddrinfo.c tables.h 14 CLEANFILES+= tables.h 15 tables.h: tables.awk ${SYS_SOCKET_H}
|
/freebsd/sys/contrib/openzfs/module/icp/asm-x86_64/aes/ |
H A D | aestab.h | 27 * This file contains the code for declaring the tables needed to implement 30 * the AES tables in a structure so that a pointer can then be added to the 35 * tables are initialised. In practice the three code sequences in aeskey.c 39 * FIXED_TABLES option that uses static global tables. 41 * The following defines can be used to control the way the tables 49 * 256 byte tables: 54 * 256 32-bit word OR 4 x 256 32-bit word tables: 63 * Other variables and tables:
|
H A D | aesopt.h | 193 * ASM_X86_V1C uses the assembler (aes_x86_v1.asm) with large tables for 195 * ASM_X86_V2 uses assembler (aes_x86_v2.asm) with compressed tables for 197 * ASM_X86_V2C uses assembler (aes_x86_v2.asm) with compressed tables for 199 * ASM_AMD64_C uses assembler (aes_amd64.asm) with compressed tables for 282 * If this section is included, tables are used to provide faster finite 302 * 8. FIXED OR DYNAMIC TABLES 304 * When this section is included the tables used by the code are compiled 328 * tables on particular boundaries. This define should be set to a power of 354 * up using tables. The basic tables are 256 32-bit words, with either 355 * one or four tables being required for each round function depending on [all …]
|
/freebsd/usr.sbin/bhyve/ |
H A D | basl.c | 169 * Install ACPI tables directly in guest memory for use by guests which in basl_finish_install_guest_tables() 171 * generated ACPI tables instead, but it doesn't hurt to install the in basl_finish_install_guest_tables() 172 * tables always. in basl_finish_install_guest_tables() 215 * Install ACPI tables directly in guest memory for use by in basl_finish_patch_checksums() 217 * to the firmware generated ACPI tables instead, but it doesn't in basl_finish_patch_checksums() 218 * hurt to install the tables always. in basl_finish_patch_checksums() 301 * Install ACPI tables directly in guest memory for use by in basl_finish_patch_pointers() 303 * to the firmware generated ACPI tables instead, but it doesn't in basl_finish_patch_pointers() 304 * hurt to install the tables always. in basl_finish_patch_pointers() 351 warnx("%s: no ACPI tables found", __func__); in basl_finish() [all …]
|
/freebsd/contrib/llvm-project/llvm/lib/Target/X86/ |
H A D | X86InstrFoldTables.cpp | 1 //===-- X86InstrFoldTables.cpp - X86 Instruction Folding Tables -----------===// 9 // This file contains the X86 memory folding tables. 21 // These tables are sorted by their RegOp value allowing them to be binary 24 // makes sorting these tables a simple matter of alphabetizing the table. 98 // Make sure the tables are sorted. in lookupFoldTableImpl() 165 // This class stores the memory unfolding tables. It is instantiated as a 168 // Stores memory unfolding tables entries sorted by opcode. 196 // Broadcast tables. in X86MemUnfoldTable() 241 // This class stores the memory -> broadcast folding tables. It is instantiated 244 // Stores memory broadcast folding tables entries sorted by opcode. [all …]
|