Home
last modified time | relevance | path

Searched full:table (Results 1 – 25 of 4589) sorted by relevance

12345678910>>...184

/freebsd/contrib/unbound/util/storage/
H A Dlruhash.c67 struct lruhash* table = (struct lruhash*)calloc(1, in lruhash_create() local
69 if(!table) in lruhash_create()
71 lock_quick_init(&table->lock); in lruhash_create()
72 table->sizefunc = sizefunc; in lruhash_create()
73 table->compfunc = compfunc; in lruhash_create()
74 table->delkeyfunc = delkeyfunc; in lruhash_create()
75 table->deldatafunc = deldatafunc; in lruhash_create()
76 table->cb_arg = arg; in lruhash_create()
77 table->size = start_size; in lruhash_create()
78 table->size_mask = (int)(start_size-1); in lruhash_create()
[all …]
H A Dslabhash.h39 * Hash table that consists of smaller hash tables.
52 * Hash table formed from several smaller ones.
53 * This results in a partitioned lruhash table, a 'slashtable'.
69 * Create new slabbed hash table.
73 * @param maxmem: maximum amount of memory this table is allowed to use.
74 * so every table gets maxmem/numtables to use for itself.
80 * @return: new hash table or NULL on malloc failure.
88 * Delete hash table. Entries are all deleted.
89 * @param table: to delete.
91 void slabhash_delete(struct slabhash* table);
[all …]
H A Dlruhash.h41 * The hash table keeps a maximum memory size. Old entries are removed
48 * so that the next thread can access the lookup table.
145 * Hash table that keeps LRU list of entries.
150 /** the size function for entries in this table */
152 /** the compare function for entries in this table. */
175 /** the number of entries in the hash table. */
179 /** the amount of space the hash table is maximally allowed to use. */
199 * An entry into the hash table.
228 * Create new hash table.
230 * @param maxmem: maximum amount of memory this table is allowed to use.
[all …]
/freebsd/contrib/llvm-project/llvm/lib/Target/WebAssembly/
H A DWebAssemblyRuntimeLibcallSignatures.cpp14 /// table providing type signatures for all runtime library functions that LLVM
93 std::vector<RuntimeLibcallSignature> Table; member
96 RuntimeLibcallSignatureTable() : Table(RTLIB::UNKNOWN_LIBCALL, unsupported) { in RuntimeLibcallSignatureTable()
98 Table[RTLIB::SHL_I16] = i16_func_i16_i16; in RuntimeLibcallSignatureTable()
99 Table[RTLIB::SHL_I32] = i32_func_i32_i32; in RuntimeLibcallSignatureTable()
100 Table[RTLIB::SHL_I64] = i64_func_i64_i64; in RuntimeLibcallSignatureTable()
101 Table[RTLIB::SHL_I128] = i64_i64_func_i64_i64_i32; in RuntimeLibcallSignatureTable()
102 Table[RTLIB::SRL_I16] = i16_func_i16_i16; in RuntimeLibcallSignatureTable()
103 Table[RTLIB::SRL_I32] = i32_func_i32_i32; in RuntimeLibcallSignatureTable()
104 Table[RTLIB::SRL_I64] = i64_func_i64_i64; in RuntimeLibcallSignatureTable()
[all …]
H A DWebAssemblyInstrTable.td1 // WebAssemblyInstrTable.td - WebAssembly Table codegen support -*- tablegen -*-
10 /// WebAssembly Table operand code-gen constructs.
23 multiclass TABLE<WebAssemblyRegClass rc, string suffix> {
25 defm TABLE_GET_#rc : I<(outs rc:$res), (ins table32_op:$table, I32:$i),
26 (outs), (ins table32_op:$table),
27 …cast<Intrinsic>("int_wasm_table_get_" # suffix) (WebAssemblyWrapper tglobaladdr:$table), I32:$i))],
28 "table.get\t$res, $table, $i",
29 "table.get\t$table",
33 defm TABLE_SET_#rc : I<(outs), (ins table32_op:$table, I32:$i, rc:$val),
34 (outs), (ins table32_op:$table),
[all …]
/freebsd/crypto/heimdal/lib/roken/
H A Drtbl.c69 rtbl_set_flags (rtbl_t table, unsigned int flags) in rtbl_set_flags() argument
71 table->flags = flags; in rtbl_set_flags()
75 rtbl_get_flags (rtbl_t table) in rtbl_get_flags() argument
77 return table->flags; in rtbl_get_flags()
81 rtbl_get_column_by_id (rtbl_t table, unsigned int id) in rtbl_get_column_by_id() argument
84 for(i = 0; i < table->num_columns; i++) in rtbl_get_column_by_id()
85 if(table->columns[i]->column_id == id) in rtbl_get_column_by_id()
86 return table->columns[i]; in rtbl_get_column_by_id()
91 rtbl_get_column (rtbl_t table, const char *column) in rtbl_get_column() argument
94 for(i = 0; i < table->num_columns; i++) in rtbl_get_column()
[all …]
H A Drtbl.357 .Fn rtbl_add_column "rtbl_t table" "const char *column_name" "unsigned int flags"
59 .Fn rtbl_add_column_by_id "rtbl_t table" "unsigned int column_id" "const char *column_header" "unsi…
61 .Fn rtbl_add_column_entry "rtbl_t table" "const char *column_name" "const char *cell_entry"
63 .Fn rtbl_add_column_entry_by_id "rtbl_t table" "unsigned int column_id" "const char *cell_entry"
67 .Fn rtbl_destroy "rtbl_t table"
69 .Fn rtbl_new_row "rtbl_t table"
71 .Fn rtbl_set_column_affix_by_id "rtbl_t table" "unsigned int column_id "const char *prefix" "const …
73 .Fn rtbl_set_column_prefix "rtbl_t table" "const char *column_name" "const char *prefix"
75 .Fn rtbl_get_flags "rtbl_t table"
77 .Fn rtbl_set_flags "rtbl_t table" "unsigned int flags"
[all …]
/freebsd/usr.sbin/bhyve/
H A Dbasl.c97 basl_dump_table(const struct basl_table *const table, const bool mem) in basl_dump_table() argument
99 const ACPI_TABLE_HEADER *const header = table->data; in basl_dump_table()
103 data = table->data; in basl_dump_table()
105 data = vm_map_gpa(table->ctx, BHYVE_ACPI_BASE + table->off, in basl_dump_table()
106 table->len); in basl_dump_table()
113 BHYVE_ACPI_BASE + table->off, mem ? "Memory" : "FwCfg"); in basl_dump_table()
114 hexdump(data, table->len, NULL, 0); in basl_dump_table()
122 struct basl_table *table; in basl_dump() local
124 STAILQ_FOREACH(table, &basl_tables, chain) { in basl_dump()
125 BASL_EXEC(basl_dump_table(table, mem)); in basl_dump()
[all …]
/freebsd/sys/contrib/openzfs/module/os/linux/spl/
H A Dspl-tsd.c25 * Thread specific data has implemented using a hash table, this avoids
30 * The majority of the entries in the hash table are for specific tsd
37 * By default the hash table is sized to 512 bins which is expected to
40 * The hash table contains two additional type of entries. They first
92 * tsd_hash_search - searches hash table for tsd_hash_entry
93 * @table: hash table
98 tsd_hash_search(tsd_hash_table_t *table, uint_t key, pid_t pid) in tsd_hash_search() argument
105 hash = hash_long((ulong_t)key * (ulong_t)pid, table->ht_bits); in tsd_hash_search()
106 bin = &table->ht_bins[hash]; in tsd_hash_search()
144 * tsd_hash_add - adds an entry to hash table
[all …]
/freebsd/contrib/kyua/utils/text/
H A Dtable_test.cpp29 #include "utils/text/table.hpp"
46 /// Because of the flattening of the formatted table into a string, we risk
48 /// a table. This should not happen, and not accounting for this little detail
51 /// \param expected Textual representation of the table, as a collection of
54 /// \param table The table to format.
58 const text::table& table) in table_formatter_check() argument
60 ATF_REQUIRE_EQ(expected, text::join(formatter.format(table), "\n") + "\n"); in table_formatter_check()
68 ATF_REQUIRE_EQ(5, text::table(5).ncolumns()); in ATF_TEST_CASE_BODY()
69 ATF_REQUIRE_EQ(10, text::table(10).ncolumns()); in ATF_TEST_CASE_BODY()
83 text::table table(2); in ATF_TEST_CASE_BODY() local
[all …]
/freebsd/contrib/wpa/src/utils/
H A Deloop.c72 struct eloop_sock *table; member
80 size_t count; /* sum of all table counts */
126 static void eloop_trace_sock_add_ref(struct eloop_sock_table *table) in eloop_trace_sock_add_ref() argument
130 if (table == NULL || table->table == NULL) in eloop_trace_sock_add_ref()
132 for (i = 0; i < table->count; i++) { in eloop_trace_sock_add_ref()
133 wpa_trace_add_ref(&table->table[i], eloop, in eloop_trace_sock_add_ref()
134 table->table[i].eloop_data); in eloop_trace_sock_add_ref()
135 wpa_trace_add_ref(&table->table[i], user, in eloop_trace_sock_add_ref()
136 table->table[i].user_data); in eloop_trace_sock_add_ref()
141 static void eloop_trace_sock_remove_ref(struct eloop_sock_table *table) in eloop_trace_sock_remove_ref() argument
[all …]
/freebsd/sys/contrib/dev/acpica/common/
H A Dahtable.c3 * Module Name: ahtable - Table of known ACPI tables with descriptions
173 * DESCRIPTION: Find a match in the "help" table of supported ACPI tables
202 {ACPI_SIG_AEST, "Arm Error Source Table"},
203 {ACPI_SIG_AGDI, "Arm Generic Diagnostic Dump and Reset Device Interface Table"},
204 {ACPI_SIG_ASF, "Alert Standard Format Table"},
205 {ACPI_SIG_ASPT, "AMD Secure Processor Table"},
206 {ACPI_SIG_BDAT, "BIOS Data ACPI Table"},
207 {ACPI_SIG_BERT, "Boot Error Record Table"},
208 {ACPI_SIG_BGRT, "Boot Graphics Resource Table"},
209 {ACPI_SIG_BOOT, "Simple Boot Flag Table"},
[all …]
H A Ddmtbdump3.c167 * PARAMETERS: Table - A SLIC table
177 ACPI_TABLE_HEADER *Table) in AcpiDmDumpSlic() argument
180 (void) AcpiDmDumpTable (Table->Length, sizeof (ACPI_TABLE_HEADER), in AcpiDmDumpSlic()
181 (void *) ((UINT8 *)Table + sizeof (*Table)), in AcpiDmDumpSlic()
182 Table->Length - sizeof (*Table), AcpiDmTableInfoSlic); in AcpiDmDumpSlic()
190 * PARAMETERS: Table - An SLIT
200 ACPI_TABLE_HEADER *Table) in AcpiDmDumpSlit() argument
210 /* Main table */ in AcpiDmDumpSlit()
212 Status = AcpiDmDumpTable (Table->Length, 0, Table, 0, AcpiDmTableInfoSlit); in AcpiDmDumpSlit()
220 Localities = (UINT32) ACPI_CAST_PTR (ACPI_TABLE_SLIT, Table)->LocalityCount; in AcpiDmDumpSlit()
[all …]
H A Ddmtbdump2.c169 * PARAMETERS: Table - A IORT table
179 ACPI_TABLE_HEADER *Table) in AcpiDmDumpIort() argument
197 /* Main table */ in AcpiDmDumpIort()
199 Status = AcpiDmDumpTable (Table->Length, 0, Table, 0, AcpiDmTableInfoIort); in AcpiDmDumpIort()
205 Revision = Table->Revision; in AcpiDmDumpIort()
216 Iort = ACPI_CAST_PTR (ACPI_TABLE_IORT, Table); in AcpiDmDumpIort()
223 Status = AcpiDmDumpTable (Table->Length, Offset, Table, in AcpiDmDumpIort()
232 while (Offset < Table->Length) in AcpiDmDumpIort()
236 IortNode = ACPI_ADD_PTR (ACPI_IORT_NODE, Table, Offset); in AcpiDmDumpIort()
242 Status = AcpiDmDumpTable (Table->Length, Offset, in AcpiDmDumpIort()
[all …]
/freebsd/sys/ofed/drivers/infiniband/core/
H A Dib_cache.c53 u16 table[0]; member
82 /* MODIFY only updates the GID table. Currently only used by
97 /* In RoCE, adding a GID to the table requires:
113 /* This lock protects the table entries from being
176 struct ib_gid_table *table, int ix, in write_gid() argument
181 __releases(&table->rwlock) __acquires(&table->rwlock) in write_gid()
192 table->data_vec[ix].props |= GID_TABLE_ENTRY_INVALID; in write_gid()
193 write_unlock_irq(&table->rwlock); in write_gid()
199 &table->data_vec[ix].context); in write_gid()
202 &table->data_vec[ix].context); in write_gid()
[all …]
/freebsd/sys/contrib/dev/iwlwifi/fw/
H A Ddump.c120 struct iwl_umac_error_event_table table = {}; in iwl_fwrt_dump_umac_error_log() local
129 iwl_trans_read_mem_bytes(trans, base, &table, sizeof(table)); in iwl_fwrt_dump_umac_error_log()
131 if (table.valid) in iwl_fwrt_dump_umac_error_log()
132 fwrt->dump.umac_err_id = table.error_id; in iwl_fwrt_dump_umac_error_log()
141 if (ERROR_START_OFFSET <= table.valid * ERROR_ELEM_SIZE) { in iwl_fwrt_dump_umac_error_log()
144 fwrt->trans->status, table.valid); in iwl_fwrt_dump_umac_error_log()
147 if ((table.error_id & ~FW_SYSASSERT_CPU_MASK) == in iwl_fwrt_dump_umac_error_log()
154 IWL_ERR(fwrt, "0x%08X | %s\n", table.error_id, in iwl_fwrt_dump_umac_error_log()
155 iwl_fw_lookup_assert_desc(table in iwl_fwrt_dump_umac_error_log()
174 struct iwl_error_event_table table = {}; iwl_fwrt_dump_lmac_error_log() local
298 struct iwl_tcm_error_event_table table = {}; iwl_fwrt_dump_tcm_error_log() local
372 struct iwl_rcm_error_event_table table = {}; iwl_fwrt_dump_rcm_error_log() local
[all...]
/freebsd/sys/dev/mlx4/mlx4_core/
H A Dmlx4_icm.c250 int mlx4_table_get(struct mlx4_dev *dev, struct mlx4_icm_table *table, u32 obj, in mlx4_table_get() argument
253 u32 i = (obj & (table->num_obj - 1)) / in mlx4_table_get()
254 (MLX4_TABLE_CHUNK_SIZE / table->obj_size); in mlx4_table_get()
257 mutex_lock(&table->mutex); in mlx4_table_get()
259 if (table->icm[i]) { in mlx4_table_get()
260 ++table->icm[i]->refcount; in mlx4_table_get()
264 table->icm[i] = mlx4_alloc_icm(dev, MLX4_TABLE_CHUNK_SIZE >> PAGE_SHIFT, in mlx4_table_get()
265 (table->lowmem ? gfp : GFP_HIGHUSER) | in mlx4_table_get()
266 __GFP_NOWARN, table->coherent); in mlx4_table_get()
267 if (!table->icm[i]) { in mlx4_table_get()
[all …]
/freebsd/sys/dev/vmware/vmci/
H A Dvmci_hashtable.c21 static int hashtable_unlink_entry(struct vmci_hashtable *table,
23 static bool vmci_hashtable_entry_exists_locked(struct vmci_hashtable *table,
45 struct vmci_hashtable *table; in vmci_hashtable_create() local
47 table = vmci_alloc_kernel_mem(sizeof(*table), in vmci_hashtable_create()
49 if (table == NULL) in vmci_hashtable_create()
51 memset(table, 0, sizeof(*table)); in vmci_hashtable_create()
53 table->entries = vmci_alloc_kernel_mem(sizeof(*table->entries) * size, in vmci_hashtable_create()
55 if (table->entries == NULL) { in vmci_hashtable_create()
56 vmci_free_kernel_mem(table, sizeof(*table)); in vmci_hashtable_create()
59 memset(table->entries, 0, sizeof(*table->entries) * size); in vmci_hashtable_create()
[all …]
/freebsd/stand/common/
H A Dpart.c209 /* Check CRC only when buffer size is enough for table. */ in gpt_checktbl()
212 DPRINTF("GPT table's CRC doesn't match"); in gpt_checktbl()
228 ptable_gptread(struct ptable *table, void *dev, diskread_t dread) in ptable_gptread() argument
238 buf = malloc(table->sectorsize); in ptable_gptread()
241 tbl = malloc(table->sectorsize * MAXTBLSZ); in ptable_gptread()
248 ptable_close(table); in ptable_gptread()
249 table = NULL; in ptable_gptread()
254 phdr = gpt_checkhdr((struct gpt_hdr *)buf, 1, table->sectors - 1, in ptable_gptread()
255 table->sectorsize); in ptable_gptread()
257 /* Read the primary GPT table. */ in ptable_gptread()
[all …]
/freebsd/contrib/ofed/opensm/opensm/
H A Dst.c104 #define EQUAL(table,x,y) ((x)==(y) || (*table->type->compare)(((void*)x),((void *)y)) == 0) argument
106 #define do_hash(key,table) (unsigned int)(*(table)->type->hash)(((void*)key)) argument
107 #define do_hash_bin(key,table) (do_hash(key, table)%(table)->num_bins) argument
116 Table of prime numbers 2^n+a, 2<=n<=30.
234 void st_free_table(st_table *table) in st_free_table() argument
239 for (i = 0; i < table->num_bins; i++) { in st_free_table()
240 ptr = table->bins[i]; in st_free_table()
247 free(table->bins); in st_free_table()
248 free(table); in st_free_table()
251 #define PTR_NOT_EQUAL(table, ptr, hash_val, key) \ argument
[all …]
/freebsd/sys/contrib/dev/rtw89/
H A Dfw.h652 static inline void SET_CTRL_INFO_MACID(void *table, u32 val)
654 le32p_replace_bits((__le32 *)(table) + 0, val, GENMASK(6, 0)); in SET_CMC_TBL_AMPDU_LEN_SEL()
657 static inline void SET_CTRL_INFO_OPERATION(void *table, u32 val) in SET_CMC_TBL_AMPDU_LEN_SEL()
659 le32p_replace_bits((__le32 *)(table) + 0, val, BIT(7));
662 static inline void SET_CMC_TBL_DATARATE(void *table, u32 val) in SET_CMC_TBL_RTS_TXCNT_LMT_SEL()
664 le32p_replace_bits((__le32 *)(table) + 1, val, GENMASK(8, 0)); in SET_CMC_TBL_RTS_TXCNT_LMT_SEL()
665 le32p_replace_bits((__le32 *)(table) + 9, SET_CMC_TBL_MASK_DATARATE, in SET_CMC_TBL_RTS_TXCNT_LMT_SEL()
669 static inline void SET_CMC_TBL_FORCE_TXOP(void *table, u32 val) in SET_CMC_TBL_RTS_TXCNT_LMT()
671 le32p_replace_bits((__le32 *)(table) + 1, val, BIT(9)); in SET_CMC_TBL_RTS_TXCNT_LMT()
672 le32p_replace_bits((__le32 *)(table) in SET_CMC_TBL_RTS_TXCNT_LMT()
531 SET_CTRL_INFO_MACID(void * table,u32 val) SET_CTRL_INFO_MACID() argument
536 SET_CTRL_INFO_OPERATION(void * table,u32 val) SET_CTRL_INFO_OPERATION() argument
541 SET_CMC_TBL_DATARATE(void * table,u32 val) SET_CMC_TBL_DATARATE() argument
548 SET_CMC_TBL_FORCE_TXOP(void * table,u32 val) SET_CMC_TBL_FORCE_TXOP() argument
555 SET_CMC_TBL_DATA_BW(void * table,u32 val) SET_CMC_TBL_DATA_BW() argument
562 SET_CMC_TBL_DATA_GI_LTF(void * table,u32 val) SET_CMC_TBL_DATA_GI_LTF() argument
569 SET_CMC_TBL_DARF_TC_INDEX(void * table,u32 val) SET_CMC_TBL_DARF_TC_INDEX() argument
576 SET_CMC_TBL_ARFR_CTRL(void * table,u32 val) SET_CMC_TBL_ARFR_CTRL() argument
583 SET_CMC_TBL_ACQ_RPT_EN(void * table,u32 val) SET_CMC_TBL_ACQ_RPT_EN() argument
590 SET_CMC_TBL_MGQ_RPT_EN(void * table,u32 val) SET_CMC_TBL_MGQ_RPT_EN() argument
597 SET_CMC_TBL_ULQ_RPT_EN(void * table,u32 val) SET_CMC_TBL_ULQ_RPT_EN() argument
604 SET_CMC_TBL_TWTQ_RPT_EN(void * table,u32 val) SET_CMC_TBL_TWTQ_RPT_EN() argument
611 SET_CMC_TBL_DISRTSFB(void * table,u32 val) SET_CMC_TBL_DISRTSFB() argument
618 SET_CMC_TBL_DISDATAFB(void * table,u32 val) SET_CMC_TBL_DISDATAFB() argument
625 SET_CMC_TBL_TRYRATE(void * table,u32 val) SET_CMC_TBL_TRYRATE() argument
632 SET_CMC_TBL_AMPDU_DENSITY(void * table,u32 val) SET_CMC_TBL_AMPDU_DENSITY() argument
639 SET_CMC_TBL_DATA_RTY_LOWEST_RATE(void * table,u32 val) SET_CMC_TBL_DATA_RTY_LOWEST_RATE() argument
646 SET_CMC_TBL_AMPDU_TIME_SEL(void * table,u32 val) SET_CMC_TBL_AMPDU_TIME_SEL() argument
653 SET_CMC_TBL_AMPDU_LEN_SEL(void * table,u32 val) SET_CMC_TBL_AMPDU_LEN_SEL() argument
660 SET_CMC_TBL_RTS_TXCNT_LMT_SEL(void * table,u32 val) SET_CMC_TBL_RTS_TXCNT_LMT_SEL() argument
667 SET_CMC_TBL_RTS_TXCNT_LMT(void * table,u32 val) SET_CMC_TBL_RTS_TXCNT_LMT() argument
674 SET_CMC_TBL_RTSRATE(void * table,u32 val) SET_CMC_TBL_RTSRATE() argument
681 SET_CMC_TBL_VCS_STBC(void * table,u32 val) SET_CMC_TBL_VCS_STBC() argument
688 SET_CMC_TBL_RTS_RTY_LOWEST_RATE(void * table,u32 val) SET_CMC_TBL_RTS_RTY_LOWEST_RATE() argument
695 SET_CMC_TBL_DATA_TX_CNT_LMT(void * table,u32 val) SET_CMC_TBL_DATA_TX_CNT_LMT() argument
702 SET_CMC_TBL_DATA_TXCNT_LMT_SEL(void * table,u32 val) SET_CMC_TBL_DATA_TXCNT_LMT_SEL() argument
709 SET_CMC_TBL_MAX_AGG_NUM_SEL(void * table,u32 val) SET_CMC_TBL_MAX_AGG_NUM_SEL() argument
716 SET_CMC_TBL_RTS_EN(void * table,u32 val) SET_CMC_TBL_RTS_EN() argument
723 SET_CMC_TBL_CTS2SELF_EN(void * table,u32 val) SET_CMC_TBL_CTS2SELF_EN() argument
730 SET_CMC_TBL_CCA_RTS(void * table,u32 val) SET_CMC_TBL_CCA_RTS() argument
737 SET_CMC_TBL_HW_RTS_EN(void * table,u32 val) SET_CMC_TBL_HW_RTS_EN() argument
744 SET_CMC_TBL_RTS_DROP_DATA_MODE(void * table,u32 val) SET_CMC_TBL_RTS_DROP_DATA_MODE() argument
751 SET_CMC_TBL_AMPDU_MAX_LEN(void * table,u32 val) SET_CMC_TBL_AMPDU_MAX_LEN() argument
758 SET_CMC_TBL_UL_MU_DIS(void * table,u32 val) SET_CMC_TBL_UL_MU_DIS() argument
765 SET_CMC_TBL_AMPDU_MAX_TIME(void * table,u32 val) SET_CMC_TBL_AMPDU_MAX_TIME() argument
772 SET_CMC_TBL_MAX_AGG_NUM(void * table,u32 val) SET_CMC_TBL_MAX_AGG_NUM() argument
779 SET_CMC_TBL_BA_BMAP(void * table,u32 val) SET_CMC_TBL_BA_BMAP() argument
786 SET_CMC_TBL_VO_LFTIME_SEL(void * table,u32 val) SET_CMC_TBL_VO_LFTIME_SEL() argument
793 SET_CMC_TBL_VI_LFTIME_SEL(void * table,u32 val) SET_CMC_TBL_VI_LFTIME_SEL() argument
800 SET_CMC_TBL_BE_LFTIME_SEL(void * table,u32 val) SET_CMC_TBL_BE_LFTIME_SEL() argument
807 SET_CMC_TBL_BK_LFTIME_SEL(void * table,u32 val) SET_CMC_TBL_BK_LFTIME_SEL() argument
814 SET_CMC_TBL_SECTYPE(void * table,u32 val) SET_CMC_TBL_SECTYPE() argument
821 SET_CMC_TBL_MULTI_PORT_ID(void * table,u32 val) SET_CMC_TBL_MULTI_PORT_ID() argument
828 SET_CMC_TBL_BMC(void * table,u32 val) SET_CMC_TBL_BMC() argument
835 SET_CMC_TBL_MBSSID(void * table,u32 val) SET_CMC_TBL_MBSSID() argument
842 SET_CMC_TBL_NAVUSEHDR(void * table,u32 val) SET_CMC_TBL_NAVUSEHDR() argument
849 SET_CMC_TBL_TXPWR_MODE(void * table,u32 val) SET_CMC_TBL_TXPWR_MODE() argument
856 SET_CMC_TBL_DATA_DCM(void * table,u32 val) SET_CMC_TBL_DATA_DCM() argument
863 SET_CMC_TBL_DATA_ER(void * table,u32 val) SET_CMC_TBL_DATA_ER() argument
870 SET_CMC_TBL_DATA_LDPC(void * table,u32 val) SET_CMC_TBL_DATA_LDPC() argument
877 SET_CMC_TBL_DATA_STBC(void * table,u32 val) SET_CMC_TBL_DATA_STBC() argument
884 SET_CMC_TBL_A_CTRL_BQR(void * table,u32 val) SET_CMC_TBL_A_CTRL_BQR() argument
891 SET_CMC_TBL_A_CTRL_UPH(void * table,u32 val) SET_CMC_TBL_A_CTRL_UPH() argument
898 SET_CMC_TBL_A_CTRL_BSR(void * table,u32 val) SET_CMC_TBL_A_CTRL_BSR() argument
905 SET_CMC_TBL_A_CTRL_CAS(void * table,u32 val) SET_CMC_TBL_A_CTRL_CAS() argument
912 SET_CMC_TBL_DATA_BW_ER(void * table,u32 val) SET_CMC_TBL_DATA_BW_ER() argument
919 SET_CMC_TBL_LSIG_TXOP_EN(void * table,u32 val) SET_CMC_TBL_LSIG_TXOP_EN() argument
926 SET_CMC_TBL_CTRL_CNT_VLD(void * table,u32 val) SET_CMC_TBL_CTRL_CNT_VLD() argument
933 SET_CMC_TBL_CTRL_CNT(void * table,u32 val) SET_CMC_TBL_CTRL_CNT() argument
940 SET_CMC_TBL_RESP_REF_RATE(void * table,u32 val) SET_CMC_TBL_RESP_REF_RATE() argument
947 SET_CMC_TBL_ALL_ACK_SUPPORT(void * table,u32 val) SET_CMC_TBL_ALL_ACK_SUPPORT() argument
954 SET_CMC_TBL_BSR_QUEUE_SIZE_FORMAT(void * table,u32 val) SET_CMC_TBL_BSR_QUEUE_SIZE_FORMAT() argument
961 SET_CMC_TBL_NTX_PATH_EN(void * table,u32 val) SET_CMC_TBL_NTX_PATH_EN() argument
968 SET_CMC_TBL_PATH_MAP_A(void * table,u32 val) SET_CMC_TBL_PATH_MAP_A() argument
975 SET_CMC_TBL_PATH_MAP_B(void * table,u32 val) SET_CMC_TBL_PATH_MAP_B() argument
982 SET_CMC_TBL_PATH_MAP_C(void * table,u32 val) SET_CMC_TBL_PATH_MAP_C() argument
989 SET_CMC_TBL_PATH_MAP_D(void * table,u32 val) SET_CMC_TBL_PATH_MAP_D() argument
996 SET_CMC_TBL_ANTSEL_A(void * table,u32 val) SET_CMC_TBL_ANTSEL_A() argument
1003 SET_CMC_TBL_ANTSEL_B(void * table,u32 val) SET_CMC_TBL_ANTSEL_B() argument
1010 SET_CMC_TBL_ANTSEL_C(void * table,u32 val) SET_CMC_TBL_ANTSEL_C() argument
1017 SET_CMC_TBL_ANTSEL_D(void * table,u32 val) SET_CMC_TBL_ANTSEL_D() argument
1025 SET_CMC_TBL_NOMINAL_PKT_PADDING_V1(void * table,u32 val) SET_CMC_TBL_NOMINAL_PKT_PADDING_V1() argument
1032 SET_CMC_TBL_NOMINAL_PKT_PADDING40_V1(void * table,u32 val) SET_CMC_TBL_NOMINAL_PKT_PADDING40_V1() argument
1039 SET_CMC_TBL_NOMINAL_PKT_PADDING80_V1(void * table,u32 val) SET_CMC_TBL_NOMINAL_PKT_PADDING80_V1() argument
1046 SET_CMC_TBL_NOMINAL_PKT_PADDING160_V1(void * table,u32 val) SET_CMC_TBL_NOMINAL_PKT_PADDING160_V1() argument
1054 SET_CMC_TBL_ADDR_CAM_INDEX(void * table,u32 val) SET_CMC_TBL_ADDR_CAM_INDEX() argument
1061 SET_CMC_TBL_PAID(void * table,u32 val) SET_CMC_TBL_PAID() argument
1068 SET_CMC_TBL_ULDL(void * table,u32 val) SET_CMC_TBL_ULDL() argument
1075 SET_CMC_TBL_DOPPLER_CTRL(void * table,u32 val) SET_CMC_TBL_DOPPLER_CTRL() argument
1081 SET_CMC_TBL_NOMINAL_PKT_PADDING(void * table,u32 val) SET_CMC_TBL_NOMINAL_PKT_PADDING() argument
1088 SET_CMC_TBL_NOMINAL_PKT_PADDING40(void * table,u32 val) SET_CMC_TBL_NOMINAL_PKT_PADDING40() argument
1095 SET_CMC_TBL_TXPWR_TOLERENCE(void * table,u32 val) SET_CMC_TBL_TXPWR_TOLERENCE() argument
1102 SET_CMC_TBL_NOMINAL_PKT_PADDING80(void * table,u32 val) SET_CMC_TBL_NOMINAL_PKT_PADDING80() argument
1109 SET_CMC_TBL_NC(void * table,u32 val) SET_CMC_TBL_NC() argument
1116 SET_CMC_TBL_NR(void * table,u32 val) SET_CMC_TBL_NR() argument
1123 SET_CMC_TBL_NG(void * table,u32 val) SET_CMC_TBL_NG() argument
1130 SET_CMC_TBL_CB(void * table,u32 val) SET_CMC_TBL_CB() argument
1137 SET_CMC_TBL_CS(void * table,u32 val) SET_CMC_TBL_CS() argument
1144 SET_CMC_TBL_CSI_TXBF_EN(void * table,u32 val) SET_CMC_TBL_CSI_TXBF_EN() argument
1151 SET_CMC_TBL_CSI_STBC_EN(void * table,u32 val) SET_CMC_TBL_CSI_STBC_EN() argument
1158 SET_CMC_TBL_CSI_LDPC_EN(void * table,u32 val) SET_CMC_TBL_CSI_LDPC_EN() argument
1165 SET_CMC_TBL_CSI_PARA_EN(void * table,u32 val) SET_CMC_TBL_CSI_PARA_EN() argument
1172 SET_CMC_TBL_CSI_FIX_RATE(void * table,u32 val) SET_CMC_TBL_CSI_FIX_RATE() argument
1179 SET_CMC_TBL_CSI_GI_LTF(void * table,u32 val) SET_CMC_TBL_CSI_GI_LTF() argument
1186 SET_CMC_TBL_NOMINAL_PKT_PADDING160(void * table,u32 val) SET_CMC_TBL_NOMINAL_PKT_PADDING160() argument
1194 SET_CMC_TBL_CSI_BW(void * table,u32 val) SET_CMC_TBL_CSI_BW() argument
1201 SET_DCTL_MACID_V1(void * table,u32 val) SET_DCTL_MACID_V1() argument
1206 SET_DCTL_OPERATION_V1(void * table,u32 val) SET_DCTL_OPERATION_V1() argument
1212 SET_DCTL_QOS_FIELD_V1(void * table,u32 val) SET_DCTL_QOS_FIELD_V1() argument
1220 SET_DCTL_HW_EXSEQ_MACID_V1(void * table,u32 val) SET_DCTL_HW_EXSEQ_MACID_V1() argument
1228 SET_DCTL_QOS_DATA_V1(void * table,u32 val) SET_DCTL_QOS_DATA_V1() argument
1236 SET_DCTL_AES_IV_L_V1(void * table,u32 val) SET_DCTL_AES_IV_L_V1() argument
1244 SET_DCTL_AES_IV_H_V1(void * table,u32 val) SET_DCTL_AES_IV_H_V1() argument
1252 SET_DCTL_SEQ0_V1(void * table,u32 val) SET_DCTL_SEQ0_V1() argument
1260 SET_DCTL_SEQ1_V1(void * table,u32 val) SET_DCTL_SEQ1_V1() argument
1268 SET_DCTL_AMSDU_MAX_LEN_V1(void * table,u32 val) SET_DCTL_AMSDU_MAX_LEN_V1() argument
1276 SET_DCTL_STA_AMSDU_EN_V1(void * table,u32 val) SET_DCTL_STA_AMSDU_EN_V1() argument
1284 SET_DCTL_CHKSUM_OFLD_EN_V1(void * table,u32 val) SET_DCTL_CHKSUM_OFLD_EN_V1() argument
1292 SET_DCTL_WITH_LLC_V1(void * table,u32 val) SET_DCTL_WITH_LLC_V1() argument
1300 SET_DCTL_SEQ2_V1(void * table,u32 val) SET_DCTL_SEQ2_V1() argument
1308 SET_DCTL_SEQ3_V1(void * table,u32 val) SET_DCTL_SEQ3_V1() argument
1316 SET_DCTL_TGT_IND_V1(void * table,u32 val) SET_DCTL_TGT_IND_V1() argument
1324 SET_DCTL_TGT_IND_EN_V1(void * table,u32 val) SET_DCTL_TGT_IND_EN_V1() argument
1332 SET_DCTL_HTC_LB_V1(void * table,u32 val) SET_DCTL_HTC_LB_V1() argument
1340 SET_DCTL_MHDR_LEN_V1(void * table,u32 val) SET_DCTL_MHDR_LEN_V1() argument
1348 SET_DCTL_VLAN_TAG_VALID_V1(void * table,u32 val) SET_DCTL_VLAN_TAG_VALID_V1() argument
1356 SET_DCTL_VLAN_TAG_SEL_V1(void * table,u32 val) SET_DCTL_VLAN_TAG_SEL_V1() argument
1364 SET_DCTL_HTC_ORDER_V1(void * table,u32 val) SET_DCTL_HTC_ORDER_V1() argument
1372 SET_DCTL_SEC_KEY_ID_V1(void * table,u32 val) SET_DCTL_SEC_KEY_ID_V1() argument
1380 SET_DCTL_WAPI_V1(void * table,u32 val) SET_DCTL_WAPI_V1() argument
1388 SET_DCTL_SEC_ENT_MODE_V1(void * table,u32 val) SET_DCTL_SEC_ENT_MODE_V1() argument
1396 SET_DCTL_SEC_ENT0_KEYID_V1(void * table,u32 val) SET_DCTL_SEC_ENT0_KEYID_V1() argument
1403 SET_DCTL_SEC_ENT1_KEYID_V1(void * table,u32 val) SET_DCTL_SEC_ENT1_KEYID_V1() argument
1410 SET_DCTL_SEC_ENT2_KEYID_V1(void * table,u32 val) SET_DCTL_SEC_ENT2_KEYID_V1() argument
1417 SET_DCTL_SEC_ENT3_KEYID_V1(void * table,u32 val) SET_DCTL_SEC_ENT3_KEYID_V1() argument
1424 SET_DCTL_SEC_ENT4_KEYID_V1(void * table,u32 val) SET_DCTL_SEC_ENT4_KEYID_V1() argument
1431 SET_DCTL_SEC_ENT5_KEYID_V1(void * table,u32 val) SET_DCTL_SEC_ENT5_KEYID_V1() argument
1438 SET_DCTL_SEC_ENT6_KEYID_V1(void * table,u32 val) SET_DCTL_SEC_ENT6_KEYID_V1() argument
1446 SET_DCTL_SEC_ENT_VALID_V1(void * table,u32 val) SET_DCTL_SEC_ENT_VALID_V1() argument
1454 SET_DCTL_SEC_ENT0_V1(void * table,u32 val) SET_DCTL_SEC_ENT0_V1() argument
1461 SET_DCTL_SEC_ENT1_V1(void * table,u32 val) SET_DCTL_SEC_ENT1_V1() argument
1468 SET_DCTL_SEC_ENT2_V1(void * table,u32 val) SET_DCTL_SEC_ENT2_V1() argument
1475 SET_DCTL_SEC_ENT3_V1(void * table,u32 val) SET_DCTL_SEC_ENT3_V1() argument
1482 SET_DCTL_SEC_ENT4_V1(void * table,u32 val) SET_DCTL_SEC_ENT4_V1() argument
1489 SET_DCTL_SEC_ENT5_V1(void * table,u32 val) SET_DCTL_SEC_ENT5_V1() argument
1496 SET_DCTL_SEC_ENT6_V1(void * table,u32 val) SET_DCTL_SEC_ENT6_V1() argument
[all...]
/freebsd/sys/contrib/dev/acpica/components/tables/
H A Dtbdata.c3 * Module Name: tbdata - Table manager data structure functions
178 * PARAMETERS: TableDesc - Table 1 descriptor to be compared
179 * TableIndex - Index of table 2 to be compared
183 * DESCRIPTION: This function compares a table with another table that has
184 * already been installed in the root table list.
195 ACPI_TABLE_HEADER *Table; in AcpiTbCompareTables() local
201 &Table, &TableLength, &TableFlags); in AcpiTbCompareTables()
208 * Check for a table match on the entire table length, in AcpiTbCompareTables()
212 memcmp (TableDesc->Pointer, Table, TableLength)) ? in AcpiTbCompareTables()
215 /* Release the acquired table */ in AcpiTbCompareTables()
[all …]
/freebsd/contrib/elftoolchain/libelftc/
H A Delftc_string_table_create.345 .Fn elftc_string_table_destroy "Elftc_String_Table *table"
50 .Fa "Elftc_String_Table *table"
55 .Fa "Elftc_String_Table *table"
60 .Fa "Elftc_String_Table *table"
65 .Fa "Elftc_String_Table *table"
70 .Fa "Elftc_String_Table *table"
79 creates a new, empty string table.
83 the table.
90 destroys the previously allocated string table specified by
92 .Ar table ,
[all …]
/freebsd/contrib/less/
H A Dposition.c12 * Routines dealing with the "position" table.
13 * This is a table which tells the position (in the input file) of the
16 * {{ The position table is scrolled by moving all the entries.
17 * Would be better to have a circular table
24 static POSITION *table = NULL; /* The position table */ variable
53 return (table[sindex]); in position()
57 * Add a new file position to the bottom of the position table.
64 * Scroll the position table up. in add_forw_pos()
67 table[ in add_forw_pos()
[all...]
/freebsd/contrib/ofed/opensm/include/opensm/
H A Dosm_mcast_tbl.h40 * This object represents a multicast forwarding table.
60 /****s* OpenSM: Forwarding Table/osm_mcast_tbl_t
65 * Multicast Forwarding Table structure.
88 * Maximum bit mask position for this table. This value
92 * Maximum block number supported in the table. This value
97 * Number of entries in the table (aka number of MLIDs supported).
101 * port mask table.
105 * table.
115 /****f* OpenSM: Forwarding Table/osm_mcast_tbl_init
120 * This function initializes a Multicast Forwarding Table object.
[all …]

12345678910>>...184