HomeSort by: relevance | last modified time | path
    Searched defs:ptable (Results 1 - 10 of 10) sorted by relevancy

  /src/lib/libm/arch/vax/
n_atan2.S 180 polyd %r0,$12,ptable
215 ptable: label
  /src/sys/arch/atari/stand/ahdilabel/
ahdilabel.c 60 struct ahdi_ptable ptable; local in function:main
69 while ((rv = ahdi_readlabel(&ptable, argv[1], flags)) != 1) {
112 show_parts (&ptable, 0, ptable.nparts, units);
127 change_part (&ptable, key - 'A', units);
129 if (ahdi_buildlabel (&ptable)) {
136 show_parts (&ptable, 0, ptable.nparts, units);
154 if ((rv = ahdi_writelabel (&ptable, argv[1], flags)) < 0) {
210 show_parts (struct ahdi_ptable *ptable, int start, int finish, int units
    [all...]
  /src/sys/arch/atari/stand/edahdi/
edahdi.c 113 ptable_t ptable; local in function:main
142 ptable.nparts = 0;
143 ptable.parts = NULL;
145 if ((ahdi_getparts(fd, &ptable, AHDI_BBLOCK, AHDI_BBLOCK) != 0)
146 || (ptable.nparts == 0))
149 edit_parts(fd, &ptable);
154 edit_parts(int fd, ptable_t *ptable)
164 show_parts(ptable, scr_base);
183 for (value = 0; value < ptable->nparts; value++) {
184 if (ptable->parts[value].mod)
    [all...]
  /src/sys/fs/cd9660/
cd9660_rrip.c 488 const RRIP_TABLE *ptable; local in function:cd9660_rrip_loop
522 for (ptable = table; ptable->func; ptable++) {
523 if (*phead->type == *ptable->type
524 && phead->type[1] == ptable->type[1]) {
525 result |= ptable->func(phead, ana);
566 for (ptable = table; ptable->func2; ptable++
    [all...]
  /src/usr.sbin/mrouted/
prune.h 37 struct ptable *gt_pruntbl; /* prune table */
47 * When source-based prunes exist, there will be a struct ptable here as well.
59 struct ptable struct
61 struct ptable *pt_next; /* pointer to the next entry */
  /src/sys/dev/acpi/
qcomsmem.c 174 struct qcsmem_ptable *ptable; local in function:qcsmem_attach
199 ptable = (void *)(smem_va + sc->sc_aux_size - PAGE_SIZE);
200 if (ptable->magic != QCSMEM_PTABLE_MAGIC ||
201 ptable->version != QCSMEM_PTABLE_VERSION) {
202 aprint_error(": unsupported ptable 0x%x/0x%x\n",
203 ptable->magic, ptable->version);
214 for (i = 0; i < ptable->num_entries; i++) {
215 pte = &ptable->entry[i];
264 info = (struct qcsmem_info *)&ptable->entry[ptable->num_entries]
    [all...]
  /src/sys/external/bsd/drm2/dist/drm/amd/powerplay/hwmgr/
amdgpu_processpptables.c 125 const ATOM_PPLIB_VCE_Clock_Voltage_Limit_Table *ptable = local in function:get_vce_clock_voltage_limit_table_size
128 table_size = sizeof(uint8_t) + ptable->numEntries * sizeof(ATOM_PPLIB_VCE_Clock_Voltage_Limit_Record);
316 struct phm_cac_tdp_table **ptable,
338 *ptable = tdp_table;
381 struct phm_clock_voltage_dependency_table **ptable,
406 *ptable = dep_table;
412 struct phm_clock_array **ptable,
428 *ptable = clock_table;
1087 struct phm_uvd_clock_voltage_dependency_table **ptable,
1114 *ptable = uvd_table
1253 const ATOM_PPLIB_UVD_Clock_Voltage_Limit_Table *ptable = local in function:init_clock_voltage_dependency
1264 const ATOM_PPLIB_SAMClk_Voltage_Limit_Table *ptable = local in function:init_clock_voltage_dependency
1275 const ATOM_PPLIB_ACPClk_Voltage_Limit_Table *ptable = local in function:init_clock_voltage_dependency
1517 const ATOM_PPLIB_PhaseSheddingLimits_Table *ptable = local in function:init_phase_shedding_table
    [all...]
amdgpu_smu10_hwmgr.c 421 struct smu10_voltage_dependency_table *ptable; local in function:smu10_get_clock_voltage_dependency_table
424 ptable = kzalloc(table_size, GFP_KERNEL);
426 if (NULL == ptable)
429 ptable->count = num_entry;
431 for (i = 0; i < ptable->count; i++) {
432 ptable->entries[i].clk = pclk_dependency_table->Freq * 100;
433 ptable->entries[i].vol = pclk_dependency_table->Vol;
437 *pptable = ptable;
amdgpu_smu8_hwmgr.c 79 struct phm_vce_clock_voltage_dependency_table *ptable = local in function:smu8_get_eclk_level
85 for (i = 0; i < (int)ptable->count; i++) {
86 if (clock <= ptable->entries[i].ecclk)
93 for (i = ptable->count - 1; i >= 0; i--) {
94 if (clock >= ptable->entries[i].ecclk)
140 struct phm_uvd_clock_voltage_dependency_table *ptable = local in function:smu8_get_uvd_level
146 for (i = 0; i < (int)ptable->count; i++) {
147 if (clock <= ptable->entries[i].vclk)
154 for (i = ptable->count - 1; i >= 0; i--) {
155 if (clock >= ptable->entries[i].vclk
1256 struct phm_vce_clock_voltage_dependency_table *ptable = local in function:smu8_dpm_update_vce_dpm
1850 struct phm_uvd_clock_voltage_dependency_table *ptable = local in function:smu8_dpm_update_uvd_dpm
    [all...]
  /src/sys/external/bsd/drm2/dist/drm/i915/gvt/
kvmgt.c 101 struct hlist_head ptable[NR_BKT]; member in struct:kvmgt_guest_info
348 hash_init(info->ptable);
357 hash_for_each_safe(info->ptable, i, tmp, p, hnode) {
368 hash_for_each_possible(info->ptable, p, hnode, gfn) {
399 hash_add(info->ptable, &p->hnode, gfn);

Completed in 19 milliseconds