HomeSort by: relevance | last modified time | path
    Searched defs:ptable (Results 1 - 15 of 15) 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
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
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
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
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
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
1264 const ATOM_PPLIB_SAMClk_Voltage_Limit_Table *ptable = local
1275 const ATOM_PPLIB_ACPClk_Voltage_Limit_Table *ptable = local
1517 const ATOM_PPLIB_PhaseSheddingLimits_Table *ptable = local
    [all...]
amdgpu_smu10_hwmgr.c 421 struct smu10_voltage_dependency_table *ptable; local
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
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
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
1850 struct phm_uvd_clock_voltage_dependency_table *ptable = local
    [all...]
  /src/external/bsd/top/dist/machine/
m_linux.c 209 static hash_table *ptable; variable
437 ptable = hash_create(HASH_SIZE);
864 hi = hash_first_pid(ptable, &pos);
913 proc = hash_lookup_pid(ptable, pid);
921 hash_add_pid(ptable, pid, (void *)proc);
1018 hi = hash_first_pid(ptable, &pos);
m_linuxthr.c 191 static struct top_proc *ptable[HASH_SIZE]; variable in typeref:struct:top_proc
365 memset(ptable, 0, HASH_SIZE * sizeof(struct top_proc *));
703 for (proc = ptable[i]; proc; proc = proc->next)
731 proc = pp = ptable[HASH(pid)];
743 ptable[HASH(pid)] = proc;
799 proc = ptable[i];
811 proc = ptable[i] = proc->next;
821 parent = ptable[HASH(pid)];
  /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);
  /src/external/gpl3/gcc/dist/libbacktrace/
elf.c 3909 const unsigned char *ptable; local
3913 ptable = pin;
3914 if (!elf_zstd_read_huff (&ptable, pinend, scratch, huffman_table,
3918 if (unlikely (total_streams_size < (size_t)(ptable - pin)))
3924 total_streams_size -= ptable - pin;
3925 pin = ptable;
  /src/external/gpl3/gdb/dist/libbacktrace/
elf.c 3909 const unsigned char *ptable; local
3913 ptable = pin;
3914 if (!elf_zstd_read_huff (&ptable, pinend, scratch, huffman_table,
3918 if (unlikely (total_streams_size < (size_t)(ptable - pin)))
3924 total_streams_size -= ptable - pin;
3925 pin = ptable;
  /src/external/gpl3/gdb.old/dist/libbacktrace/
elf.c 3909 const unsigned char *ptable; local
3913 ptable = pin;
3914 if (!elf_zstd_read_huff (&ptable, pinend, scratch, huffman_table,
3918 if (unlikely (total_streams_size < (size_t)(ptable - pin)))
3924 total_streams_size -= ptable - pin;
3925 pin = ptable;

Completed in 52 milliseconds