HomeSort by: relevance | last modified time | path
    Searched refs:table (Results 1 - 25 of 1024) sorted by relevancy

1 2 3 4 5 6 7 8 91011>>

  /src/distrib/utils/more/
position.c 43 * Routines dealing with the "position" table.
44 * This is a table which tells the position (in the input file) of the
47 * {{ The position table is scrolled by moving all the entries.
48 * Would be better to have a circular table
58 static off_t *table; /* The position table */ variable in typeref:typename:off_t *
85 return (table[where]);
89 * Add a new file position to the bottom of the position table.
98 * Scroll the position table up.
101 table[i-1] = table[i]
    [all...]
position.c 43 * Routines dealing with the "position" table.
44 * This is a table which tells the position (in the input file) of the
47 * {{ The position table is scrolled by moving all the entries.
48 * Would be better to have a circular table
58 static off_t *table; /* The position table */ variable in typeref:typename:off_t *
85 return (table[where]);
89 * Add a new file position to the bottom of the position table.
98 * Scroll the position table up.
101 table[i-1] = table[i]
    [all...]
  /src/sys/external/bsd/drm2/dist/drm/amd/powerplay/
renoir_ppt.h 35 #define GET_DPM_CUR_FREQ(table, clk_type, dpm_level, freq) \
39 freq = table->SocClocks[dpm_level].Freq; \
42 freq = table->MemClocks[dpm_level].Freq; \
45 freq = table->DcfClocks[dpm_level].Freq; \
48 freq = table->FClocks[dpm_level].Freq; \
renoir_ppt.h 35 #define GET_DPM_CUR_FREQ(table, clk_type, dpm_level, freq) \
39 freq = table->SocClocks[dpm_level].Freq; \
42 freq = table->MemClocks[dpm_level].Freq; \
45 freq = table->DcfClocks[dpm_level].Freq; \
48 freq = table->FClocks[dpm_level].Freq; \
  /src/sys/external/bsd/drm2/dist/drm/i915/gt/
intel_mocs.c 46 const struct drm_i915_mocs_entry *table; member in struct:drm_i915_mocs_table
124 * entries will remain constant and the table will only be updated by
289 struct drm_i915_mocs_table *table)
292 table->size = ARRAY_SIZE(tgl_mocs_table);
293 table->table = tgl_mocs_table;
294 table->n_entries = GEN11_NUM_MOCS_ENTRIES;
296 table->size = ARRAY_SIZE(icl_mocs_table);
297 table->table = icl_mocs_table
418 struct drm_i915_mocs_table table; local in function:intel_mocs_init_engine
441 struct drm_i915_mocs_table table; local in function:init_global_mocs
    [all...]
intel_mocs.c 46 const struct drm_i915_mocs_entry *table; member in struct:drm_i915_mocs_table
124 * entries will remain constant and the table will only be updated by
289 struct drm_i915_mocs_table *table)
292 table->size = ARRAY_SIZE(tgl_mocs_table);
293 table->table = tgl_mocs_table;
294 table->n_entries = GEN11_NUM_MOCS_ENTRIES;
296 table->size = ARRAY_SIZE(icl_mocs_table);
297 table->table = icl_mocs_table
418 struct drm_i915_mocs_table table; local in function:intel_mocs_init_engine
441 struct drm_i915_mocs_table table; local in function:init_global_mocs
    [all...]
  /src/sys/dev/sysmon/
sysmon_envsys_tables.c 140 * Returns the entry from specified table with type == key
145 const struct sme_descr_entry *table = sme_find_table(table_id); local in function:sme_find_table_entry
147 if (table != NULL)
148 for (; table->type != -1; table++)
149 if (table->type == key)
150 return table;
158 const struct sme_descr_entry *table = sme_find_table(table_id); local in function:sme_find_table_desc
160 if (table != NULL)
161 for (; table->type != -1; table++
    [all...]
sysmon_envsys_tables.c 140 * Returns the entry from specified table with type == key
145 const struct sme_descr_entry *table = sme_find_table(table_id); local in function:sme_find_table_entry
147 if (table != NULL)
148 for (; table->type != -1; table++)
149 if (table->type == key)
150 return table;
158 const struct sme_descr_entry *table = sme_find_table(table_id); local in function:sme_find_table_desc
160 if (table != NULL)
161 for (; table->type != -1; table++
    [all...]
  /src/tests/lib/libc/stdlib/
t_abs.c 50 } table[] = { local in function:ATF_TC_BODY
59 for (size_t i = 0; i < __arraycount(table); i++)
60 ATF_CHECK(abs(table[i].val) == table[i].res);
74 } table[] = { local in function:ATF_TC_BODY
86 for (size_t i = 0; i < __arraycount(table); i++)
87 ATF_CHECK(imaxabs(table[i].val) == table[i].res);
101 } table[] = { local in function:ATF_TC_BODY
112 for (size_t i = 0; i < __arraycount(table); i++
127 } table[] = { local in function:ATF_TC_BODY
    [all...]
t_abs.c 50 } table[] = { local in function:ATF_TC_BODY
59 for (size_t i = 0; i < __arraycount(table); i++)
60 ATF_CHECK(abs(table[i].val) == table[i].res);
74 } table[] = { local in function:ATF_TC_BODY
86 for (size_t i = 0; i < __arraycount(table); i++)
87 ATF_CHECK(imaxabs(table[i].val) == table[i].res);
101 } table[] = { local in function:ATF_TC_BODY
112 for (size_t i = 0; i < __arraycount(table); i++
127 } table[] = { local in function:ATF_TC_BODY
    [all...]
  /src/lib/libc/stdlib/
hcreate.c 35 * SysV/XPG4 hash table functions.
91 _DIAGASSERT(htable.table == NULL);
93 /* Make sure this isn't called when a table already exists. */
94 if (htable.table != NULL) {
104 struct internal_head *table; local in function:hcreate_r
124 /* Allocate the table. */
127 table = NULL;
128 errno = reallocarr(&table, nel, sizeof(*table));
131 head->table = (void *)table
160 struct internal_head *table; local in function:hdestroy1_r
201 struct internal_head *table, *chain; local in function:hsearch_r
    [all...]
hcreate.c 35 * SysV/XPG4 hash table functions.
91 _DIAGASSERT(htable.table == NULL);
93 /* Make sure this isn't called when a table already exists. */
94 if (htable.table != NULL) {
104 struct internal_head *table; local in function:hcreate_r
124 /* Allocate the table. */
127 table = NULL;
128 errno = reallocarr(&table, nel, sizeof(*table));
131 head->table = (void *)table
160 struct internal_head *table; local in function:hdestroy1_r
201 struct internal_head *table, *chain; local in function:hsearch_r
    [all...]
  /src/sys/lib/libkern/
scanc.c 38 scanc(u_int size, const u_char *cp, const u_char table[], int mask)
42 while (cp < end && (table[*cp] & mask) == 0)
scanc.c 38 scanc(u_int size, const u_char *cp, const u_char table[], int mask)
42 while (cp < end && (table[*cp] & mask) == 0)
  /src/sys/external/bsd/drm2/dist/drm/amd/powerplay/smumgr/
vega20_smumgr.h 35 void *table; member in struct:smu_table_entry
57 uint8_t *table, uint16_t workload_type);
59 uint8_t *table, uint16_t workload_type);
vega20_smumgr.h 35 void *table; member in struct:smu_table_entry
57 uint8_t *table, uint16_t workload_type);
59 uint8_t *table, uint16_t workload_type);
amdgpu_vegam_smumgr.c 453 SMU75_Discrete_DpmTable *table)
463 table->SmioTable2.Pattern[level].Voltage = PP_HOST_TO_SMC_US(
466 table->SmioTable2.Pattern[level].Smio =
468 table->Smio[level] |=
471 table->SmioMask2 = data->mvdd_voltage_table.mask_low;
473 table->MvddLevelCount = (uint32_t) PP_HOST_TO_SMC_UL(count);
480 struct SMU75_Discrete_DpmTable *table)
491 table->SmioTable1.Pattern[level].Voltage = PP_HOST_TO_SMC_US(
493 table->SmioTable1.Pattern[level].Smio = (uint8_t) level;
495 table->Smio[level] |= data->vddci_voltage_table.entries[level].smio_low
725 const SMU75_Discrete_DpmTable *table = &(smu_data->smc_state_table); local in function:vegam_calculate_sclk_params
1445 SMU75_Discrete_DpmTable *table = &(smu_data->smc_state_table); local in function:vegam_populate_bapm_parameters_in_dpm_table
1569 SMU75_Discrete_DpmTable *table = &(smu_data->smc_state_table); local in function:vegam_populate_avfs_parameters
1927 struct SMU75_Discrete_DpmTable *table = &(smu_data->smc_state_table); local in function:vegam_init_smc_table
    [all...]
  /src/sys/external/bsd/drm2/dist/drm/virtio/
virtgpu_prime.c 40 struct sg_table *table)
virtgpu_prime.c 40 struct sg_table *table)
  /src/sys/arch/luna68k/dev/
psgpam_enc.c 85 #define BULK(table) *d++ = table[v]
87 #define W8(table) *d++ = table[v]
89 #define W16(table) do { \
90 uint16_t t = (uint16_t)table[v]; \
94 #define W32(table) do { \
95 uint32_t t = (uint32_t)table[v]; \
102 #define SPLIT3(table) do { \
103 uint16_t t = (uint16_t)table[v];
    [all...]
psgpam_enc.c 85 #define BULK(table) *d++ = table[v]
87 #define W8(table) *d++ = table[v]
89 #define W16(table) do { \
90 uint16_t t = (uint16_t)table[v]; \
94 #define W32(table) do { \
95 uint32_t t = (uint32_t)table[v]; \
102 #define SPLIT3(table) do { \
103 uint16_t t = (uint16_t)table[v];
    [all...]
  /src/sys/arch/ia64/acpi/
madt.c 124 ACPI_TABLE_MADT *table; local in function:ia64_probe_sapics
141 table = (ACPI_TABLE_MADT *)
145 printf("Table '%c%c%c%c' at %p\n",
146 table->Header.Signature[0],
147 table->Header.Signature[1],
148 table->Header.Signature[2],
149 table->Header.Signature[3], table);
151 if (strncmp(table->Header.Signature, ACPI_SIG_MADT,
153 ACPI_FAILURE(AcpiUtChecksum((void *)table,
224 ACPI_TABLE_MADT *table; local in function:ia64_count_cpus
    [all...]
madt.c 124 ACPI_TABLE_MADT *table; local in function:ia64_probe_sapics
141 table = (ACPI_TABLE_MADT *)
145 printf("Table '%c%c%c%c' at %p\n",
146 table->Header.Signature[0],
147 table->Header.Signature[1],
148 table->Header.Signature[2],
149 table->Header.Signature[3], table);
151 if (strncmp(table->Header.Signature, ACPI_SIG_MADT,
153 ACPI_FAILURE(AcpiUtChecksum((void *)table,
224 ACPI_TABLE_MADT *table; local in function:ia64_count_cpus
    [all...]
  /src/sys/external/bsd/drm2/dist/drm/
drm_hashtab.c 55 ht->table = NULL;
56 if (size <= PAGE_SIZE / sizeof(*ht->table))
57 ht->table = kcalloc(size, sizeof(*ht->table), GFP_KERNEL);
59 ht->table = vzalloc(array_size(size, sizeof(*ht->table)));
60 if (!ht->table) {
61 DRM_ERROR("Out of memory for hash table\n");
77 h_list = &ht->table[hashed_key];
90 h_list = &ht->table[hashed_key]
    [all...]
drm_hashtab.c 55 ht->table = NULL;
56 if (size <= PAGE_SIZE / sizeof(*ht->table))
57 ht->table = kcalloc(size, sizeof(*ht->table), GFP_KERNEL);
59 ht->table = vzalloc(array_size(size, sizeof(*ht->table)));
60 if (!ht->table) {
61 DRM_ERROR("Out of memory for hash table\n");
77 h_list = &ht->table[hashed_key];
90 h_list = &ht->table[hashed_key]
    [all...]

Completed in 37 milliseconds

1 2 3 4 5 6 7 8 91011>>