/src/sys/stand/efiboot/ |
overlay.c | 40 TAILQ_ENTRY(dtoverlay_entry) entries; 53 TAILQ_FOREACH(d, &dtoverlay_entries, entries) { 68 TAILQ_FOREACH(d, &dtoverlay_entries, entries) { 76 TAILQ_INSERT_TAIL(&dtoverlay_entries, d, entries); 89 TAILQ_FOREACH(d, &dtoverlay_entries, entries) { 91 TAILQ_REMOVE(&dtoverlay_entries, d, entries); 105 TAILQ_REMOVE(&dtoverlay_entries, d, entries);
|
module.c | 42 TAILQ_ENTRY(boot_module) entries; 90 TAILQ_FOREACH(bm, &boot_modules, entries) { 105 TAILQ_FOREACH(bm, &boot_modules, entries) { 115 TAILQ_INSERT_TAIL(&boot_modules, bm, entries); 127 TAILQ_FOREACH(bm, &boot_modules, entries) { 129 TAILQ_REMOVE(&boot_modules, bm, entries); 143 TAILQ_REMOVE(&boot_modules, bm, entries);
|
userconf.c | 38 TAILQ_ENTRY(userconf_command) entries; 48 TAILQ_FOREACH(uc, &userconf_commands, entries) { 80 TAILQ_INSERT_TAIL(&userconf_commands, uc, entries);
|
efiblock.h | 50 TAILQ_ENTRY(efi_block_dev) entries; 73 TAILQ_ENTRY(efi_block_part) entries;
|
/src/sys/external/bsd/drm2/dist/drm/nouveau/include/nvif/ |
clb069.h | 8 __u32 entries; member in struct:nvif_clb069_v0
|
/src/tests/include/sys/ |
t_list.c | 54 LIST_ENTRY(entry) entries; 62 LIST_INSERT_HEAD(&old_head, n1, entries); 66 LIST_INSERT_HEAD(&old_head, n2, entries); 68 LIST_MOVE(&old_head, &new_head, entries); 75 LIST_REMOVE(n3, entries); 79 LIST_REMOVE(LIST_FIRST(&new_head), entries);
|
/src/distrib/sets/ |
fmt-list | 206 local function column(entries, get_width_before, colname) 214 for _, entry in ipairs(entries) do 241 -- The entries are nicely aligned, therefore there is no need to change 243 local entries = { 247 assert_equals(entries[2].category_col, 8) 248 assert_equals(width_before_category(entries[2]), 7) 249 assert_equals(column(entries, width_before_category, "category_col"), 8) 251 -- The entries are currently not aligned, therefore they are aligned 253 entries = { 257 assert_equals(entries[2].category_col, 24 [all...] |
/src/sys/arch/luna68k/stand/boot/ |
parse.c | 133 static const struct command_entry entries[] = { variable in typeref:typename:const struct command_entry[] 161 for (i = 0; entries[i].name != NULL; i++) { 162 if (!strcmp(argv[0], entries[i].name)) { 163 status = (*entries[i].func)(argc, argv);
|
/src/sys/arch/shark/include/ |
profileio.h | 82 unsigned int tableSize; /* total table size in entries */ 83 unsigned int entries; /* first level table size, in entries */ member in struct:profHashHeader 98 struct profHashEntry *entries; member in struct:profHashTable 106 unsigned int tableSize; /* the total table size in entries */ 107 unsigned int entries; /* number of entries to hash */ member in struct:profStartInfo 132 unsigned int tableSize; /* the total table size in entries */ 133 unsigned int entries; /* number of entries to hash * member in struct:startSamplingCommand [all...] |
/src/sys/external/bsd/drm2/dist/drm/amd/powerplay/hwmgr/ |
hwmgr_ppt.h | 52 uint32_t count; /* Number of entries. */ 53 phm_ppt_v1_clock_voltage_dependency_record entries[1]; /* Dynamically allocate count entries. */ member in struct:phm_ppt_v1_clock_voltage_dependency_table 75 uint32_t count; /* Number of entries. */ 76 phm_ppt_v1_mm_clock_voltage_dependency_record entries[1]; /* Dynamically allocate count entries. */ member in struct:phm_ppt_v1_mm_clock_voltage_dependency_table 91 phm_ppt_v1_voltage_lookup_record entries[1]; /* Dynamically allocate count entries. */ member in struct:phm_ppt_v1_voltage_lookup_table 107 uint32_t count; /* Number of entries. */ 108 phm_ppt_v1_pcie_record entries[1]; /* Dynamically allocate count entries. * member in struct:phm_ppt_v1_pcie_table [all...] |
amdgpu_smu_helper.c | 228 vvalue = vol_table->entries[i].value; 232 if (vvalue == table->entries[j].value) { 239 table->entries[table->count].value = vvalue; 240 table->entries[table->count].smio_low = 241 vol_table->entries[i].smio_low; 269 vol_table->entries[i].value = dep_table->entries[i].mvdd; 270 vol_table->entries[i].smio_low = 0; 297 vol_table->entries[i].value = dep_table->entries[i].vddci [all...] |
amdgpu_vega10_processpptables.c | 325 (const ATOM_Vega10_GFXCLK_Dependency_Record_V2 *)gfxclk_dep_table->entries; 370 mm_dependency_record = &mm_dependency_table->entries[i]; 371 mm_table->entries[i].vddcInd = mm_dependency_record->ucVddcInd; 372 mm_table->entries[i].samclock = 374 mm_table->entries[i].eclk = le32_to_cpu(mm_dependency_record->ulEClk); 375 mm_table->entries[i].vclk = le32_to_cpu(mm_dependency_record->ulVClk); 376 mm_table->entries[i].dclk = le32_to_cpu(mm_dependency_record->ulDClk); 597 clk_table->entries[i].vddInd = 598 clk_dep_table->entries[i].ucVddInd; 599 clk_table->entries[i].clk [all...] |
amdgpu_smu8_hwmgr.c | 86 if (clock <= ptable->entries[i].ecclk) 94 if (clock >= ptable->entries[i].ecclk) 117 if (clock <= table->entries[i].clk) 125 if (clock >= table->entries[i].clk) 147 if (clock <= ptable->entries[i].vclk) 155 if (clock >= ptable->entries[i].vclk) 270 table->sclk = dep_table->entries[dep_table->count-1].clk; 272 (uint16_t)dep_table->entries[dep_table->count-1].v); 284 table_clk_vlt = kzalloc(struct_size(table_clk_vlt, entries, 7), 293 table_clk_vlt->entries[0].clk = PP_DAL_POWERLEVEL_0 [all...] |
/src/sys/external/bsd/drm2/dist/drm/nouveau/nvkm/subdev/bios/ |
nouveau_nvkm_subdev_bios_bit.c | 36 u8 entries = nvbios_rd08(bios, bios->bit_offset + 10); local in function:bit_entry 38 while (entries--) {
|
/src/usr.bin/finger/ |
extern.h | 36 extern int entries; /* Number of people. */
|
/src/usr.bin/make/unit-tests/ |
opt-debug-hash.exp | 3 HashTable "targets": size=16 entries=0 maxchain=0 4 HashTable "Global variables": size=16 entries=<entries> maxchain=4
|
/src/sys/arch/shark/shark/ |
profile.c | 233 memset(phashTables[backup]->entries, 0, 239 phashTables[backup]->hdr.entries = phashTables[backup]->hdr.last 240 = phashTables[real]->hdr.entries; 265 if ( (error = uiomove(phashTables[real]->entries, 324 if (info->entries > info->tableSize) 344 phashTables[0]->entries = (struct profHashEntry *) 351 phashTables[1]->entries = (struct profHashEntry *) 354 memset(phashTables[0]->entries, 0, 356 memset(phashTables[1]->entries, 0, 362 profTable->hdr.entries = profTable->hdr.last = info->entries 578 unsigned int entries, hashShift, index, count; local in function:profEnter [all...] |
/src/sys/coda/ |
coda_opstats.h | 112 long entries; /* number of times call attempted */ member in struct:coda_op_stats
|
/src/sys/dev/ppbus/ |
ppbus_device.h | 40 SLIST_ENTRY(ppbus_device_softc) entries;
|
/src/sys/external/bsd/drm2/dist/drm/amd/display/dmub/inc/ |
dmub_trace_buffer.h | 67 struct dmcub_trace_buf_entry entries[PERF_TRACE_MAX_ENTRY]; member in struct:dmcub_trace_buf
|
/src/bin/ls/ |
ls.h | 64 int entries; member in struct:__anon33ec9f980108
|
/src/sys/external/bsd/drm2/dist/drm/amd/amdgpu/ |
amdgpu_dpm.c | 239 amdgpu_table->entries = kzalloc(size, GFP_KERNEL); 240 if (!amdgpu_table->entries) 243 entry = &atom_table->entries[0]; 245 amdgpu_table->entries[i].clk = le16_to_cpu(entry->usClockLow) | 247 amdgpu_table->entries[i].v = le16_to_cpu(entry->usVoltage); 386 le16_to_cpu(clk_v->entries[0].usSclkLow) | 387 (clk_v->entries[0].ucSclkHigh << 16); 389 le16_to_cpu(clk_v->entries[0].usMclkLow) | 390 (clk_v->entries[0].ucMclkHigh << 16); 392 le16_to_cpu(clk_v->entries[0].usVddc) [all...] |
/src/usr.bin/column/ |
column.c | 70 static int entries; /* number of records */ variable in typeref:typename:int 125 if (!entries) 150 if (!--entries) 174 numrows = entries / numcols; 175 if (entries % numcols) 182 if ((base += numrows) >= entries) 200 for (cnt = entries, lp = list; cnt--; ++lp) 220 t = tbl = ecalloc(entries, sizeof(*t)); 223 for (cnt = 0, lp = list; cnt < entries; ++cnt, ++lp, ++t) { 248 for (cnt = 0, t = tbl; cnt < entries; ++cnt, ++t) [all...] |
/src/sys/arch/atari/dev/ |
dma.c | 65 TAILQ_ENTRY(dma_entry) entries; /* List pointers */ 73 * Preallocated entries. An allocator seem an overkill here. 75 static DMA_ENTRY dmatable[NDMA_DEV]; /* preallocated entries */ 98 TAILQ_INSERT_HEAD(&dma_free, &dmatable[i], entries); 124 TAILQ_REMOVE(&dma_free, req, entries); 129 TAILQ_INSERT_TAIL(&dma_active, req, entries); 182 TAILQ_REMOVE(&dma_active, req, entries); 183 TAILQ_INSERT_HEAD(&dma_free, req, entries); 205 return TAILQ_NEXT(TAILQ_FIRST(&dma_active), entries) != NULL;
|
/src/sys/external/bsd/drm2/dist/drm/radeon/ |
radeon_r600_dpm.c | 833 radeon_table->entries = kzalloc(size, GFP_KERNEL); 834 if (!radeon_table->entries) 837 entry = &atom_table->entries[0]; 839 radeon_table->entries[i].clk = le16_to_cpu(entry->usClockLow) | 841 radeon_table->entries[i].v = le16_to_cpu(entry->usVoltage); 943 kfree(rdev->pm.dpm.dyn_state.vddc_dependency_on_sclk.entries); 954 kfree(rdev->pm.dpm.dyn_state.vddc_dependency_on_sclk.entries); 955 kfree(rdev->pm.dpm.dyn_state.vddci_dependency_on_mclk.entries); 966 kfree(rdev->pm.dpm.dyn_state.vddc_dependency_on_sclk.entries); 967 kfree(rdev->pm.dpm.dyn_state.vddci_dependency_on_mclk.entries); [all...] |