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

1 2 3 4 5

  /src/sys/external/bsd/drm2/dist/drm/amd/amdgpu/
amdgpu_pmu.c 69 struct amdgpu_pmu_entry *pe = container_of(event->pmu, local in function:amdgpu_perf_start
79 switch (pe->pmu_perf_type) {
82 pe->adev->df.funcs->pmc_start(pe->adev, hwc->config, 1);
84 pe->adev->df.funcs->pmc_start(pe->adev, hwc->config, 0);
98 struct amdgpu_pmu_entry *pe = container_of(event->pmu, local in function:amdgpu_perf_read
107 switch (pe->pmu_perf_type) {
109 pe->adev->df.funcs->pmc_get_count(pe->adev, hwc->config
125 struct amdgpu_pmu_entry *pe = container_of(event->pmu, local in function:amdgpu_perf_stop
156 struct amdgpu_pmu_entry *pe = container_of(event->pmu, local in function:amdgpu_perf_add
185 struct amdgpu_pmu_entry *pe = container_of(event->pmu, local in function:amdgpu_perf_del
277 struct amdgpu_pmu_entry *pe, *temp; local in function:amdgpu_pmu_fini
    [all...]
amdgpu_vm_cpu.c 79 * @pe: kmap addr of the page entry
80 * @addr: dst addr to write into pe
88 struct amdgpu_bo *bo, uint64_t pe,
95 pe += (unsigned long)amdgpu_bo_kptr(bo);
97 trace_amdgpu_vm_set_ptes(pe, addr, count, incr, flags, p->direct);
103 amdgpu_gmc_set_pte_pde(p->adev, (void *)(uintptr_t)pe,
amdgpu_vm_sdma.c 141 * @pe: addr of the page entry
147 struct amdgpu_bo *bo, uint64_t pe,
155 pe += amdgpu_bo_gpu_offset(bo);
156 trace_amdgpu_vm_copy_ptes(pe, src, count, p->direct);
158 amdgpu_vm_copy_pte(p->adev, ib, pe, src, count);
166 * @pe: addr of the page entry
167 * @addr: dst addr to write into pe
176 struct amdgpu_bo *bo, uint64_t pe,
182 pe += amdgpu_bo_gpu_offset(bo);
183 trace_amdgpu_vm_set_ptes(pe, addr, count, incr, flags, p->direct)
    [all...]
amdgpu_vm.h 167 uint64_t pe, uint64_t src,
171 void (*write_pte)(struct amdgpu_ib *ib, uint64_t pe,
176 uint64_t pe,
239 struct amdgpu_bo *bo, uint64_t pe, uint64_t addr,
365 #define amdgpu_vm_copy_pte(adev, ib, pe, src, count) ((adev)->vm_manager.vm_pte_funcs->copy_pte((ib), (pe), (src), (count)))
366 #define amdgpu_vm_write_pte(adev, ib, pe, value, count, incr) ((adev)->vm_manager.vm_pte_funcs->write_pte((ib), (pe), (value), (count), (incr)))
367 #define amdgpu_vm_set_pte_pde(adev, ib, pe, addr, count, incr, flags) ((adev)->vm_manager.vm_pte_funcs->set_pte_pde((ib), (pe), (addr), (count), (incr), (flags))
    [all...]
amdgpu_trace.h 327 TP_PROTO(uint64_t pe, uint64_t addr, unsigned count,
329 TP_ARGS(pe, addr, count, incr, flags, direct),
331 __field(u64, pe)
340 __entry->pe = pe;
347 TP_printk("pe=%010Lx, addr=%010Lx, incr=%u, flags=%llx, count=%u, "
348 "direct=%d", __entry->pe, __entry->addr, __entry->incr,
353 TP_PROTO(uint64_t pe, uint64_t src, unsigned count, bool direct),
354 TP_ARGS(pe, src, count, direct),
356 __field(u64, pe)
    [all...]
  /src/sys/external/bsd/gnu-efi/dist/inc/
inc.mak 19 pe.h \
  /src/lib/libc/string/
bm.c 105 u_char const *pe, *p; local in function:bm_comp
132 for (pe = pb + pat->patlen - 1; pb <= pe; pb++)
133 d[*pb] = pe - pb;
138 for (pb = pat->pat, pe = pb + pat->patlen - 1; pb < pe; pb++)
145 for (pe = pat->pat + pat->patlen - 1, p = pe - 1; p >= pat->pat; p--)
146 if (*p == *pe)
149 /* *p is first leftward reoccurrence of *pe */
    [all...]
  /src/sys/external/bsd/drm2/dist/drm/radeon/
radeon_si_dma.c 68 * @pe: addr of the page entry
76 uint64_t pe, uint64_t src,
86 ib->ptr[ib->length_dw++] = lower_32_bits(pe);
88 ib->ptr[ib->length_dw++] = upper_32_bits(pe) & 0xff;
91 pe += bytes;
102 * @pe: addr of the page entry
103 * @addr: dst addr to write into pe
112 uint64_t pe,
126 ib->ptr[ib->length_dw++] = pe;
127 ib->ptr[ib->length_dw++] = upper_32_bits(pe) & 0xff
    [all...]
radeon_ni_dma.c 314 * @pe: addr of the page entry
322 uint64_t pe, uint64_t src,
334 ib->ptr[ib->length_dw++] = lower_32_bits(pe);
336 ib->ptr[ib->length_dw++] = upper_32_bits(pe) & 0xff;
339 pe += ndw * 4;
350 * @pe: addr of the page entry
351 * @addr: dst addr to write into pe
360 uint64_t pe,
375 ib->ptr[ib->length_dw++] = pe;
376 ib->ptr[ib->length_dw++] = upper_32_bits(pe) & 0xff
    [all...]
radeon_trace.h 86 TP_PROTO(uint64_t pe, uint64_t addr, unsigned count,
88 TP_ARGS(pe, addr, count, incr, flags),
90 __field(u64, pe)
98 __entry->pe = pe;
104 TP_printk("pe=%010Lx, addr=%010Lx, incr=%u, flags=%08x, count=%u",
105 __entry->pe, __entry->addr, __entry->incr,
  /src/usr.bin/checknr/
checknr.c 210 static void pe(int);
330 pe(lineno);
337 pe(lineno);
376 pe(lineno);
392 pe(lineno);
416 pe(stk[i].lno);
505 pe(stk[j+1].lno);
517 pe(lineno);
530 pe(int pelineno) function in typeref:typename:void
548 pe(lineno)
    [all...]
  /src/sys/external/bsd/drm2/dist/drm/nouveau/include/nvkm/subdev/bios/
dp.h 28 u8 pe; member in struct:nvbios_dpcfg
36 nvbios_dpcfg_match(struct nvkm_bios *, u16 outp, u8 pc, u8 vs, u8 pe,
  /src/usr.bin/rdist/
expand.c 345 char *pe, *pm, *pl; local in function:execbrc
351 for (pe = ++p; *pe; pe++)
352 switch (*pe) {
365 for (pe++; *pe && *pe != ']'; pe++)
367 if (!*pe)
    [all...]
  /src/bin/ksh/
misc.c 24 const unsigned char *se, const unsigned char *pe,
529 const char *se, *pe; local in function:gmatch
534 pe = p + strlen(p);
538 if (!isfile && !has_globbing(p, pe)) {
539 int len = pe - p + 1;
547 (const unsigned char *) p, (const unsigned char *) pe,
572 const unsigned char *pe = (const unsigned char *) xpe; local in function:has_globbing
578 for (; p < pe; p++) {
623 do_gmatch(s, se, p, pe, isfile)
625 const unsigned char *se, *pe;
    [all...]
  /src/lib/libintl/
plural_parser.c 411 init_parser_element(struct parser_element *pe)
415 pe->kind = T_NONE;
417 pe->u.parser_op.operands[i] = NULL;
423 uninit_parser_element(struct parser_element *pe)
427 if (T_IS_OPERATOR(pe->kind))
429 if (pe->u.parser_op.operands[i])
431 pe->u.parser_op.operands[i]);
436 free_parser_element(struct parser_element *pe)
438 if (pe) {
439 uninit_parser_element(pe);
    [all...]
  /src/sbin/newbtconf/
newbtconf.sh 64 ( cd etc.current && pax -rw -pe $i /etc )
98 pax -rw -pe . /etc/$dir
  /src/sys/external/gpl2/dts/dist/arch/riscv/boot/dts/allwinner/
sun20i-common-regulators.dtsi 25 vcc-pe-supply = <&reg_vcc_3v3>;
  /src/bin/csh/
glob.c 130 Char *lm, *pe, *pl, *pm, **nv, **vl; local in function:globbrace
142 for (i = 0, pe = ++p; *pe; pe++)
143 if (*pe == LBRK) {
145 for (++pe; *pe != RBRK && *pe != EOS; pe++)
147 if (*pe == EOS)
    [all...]
  /src/sys/arch/hpcsh/dev/hd64465/
hd64465pcmcia.c 252 struct hd64465pcmcia_event *pe; local in function:hd64465pcmcia_event_thread
258 while ((pe = SIMPLEQ_FIRST(&sc->sc_event_head))) {
260 switch (pe->pe_type) {
266 pcmcia_card_attach(pe->pe_ch->ch_pcmcia);
270 pcmcia_card_detach(pe->pe_ch->ch_pcmcia,
276 pe->__queued = 0;
407 struct hd64465pcmcia_event *pe, *pool; local in function:__queue_event
415 pe = 0;
419 pe = &pool[i];
424 if (pe == 0)
    [all...]
  /src/sys/kern/
sys_ptrace_common.c 594 struct ptrace_event pe; local in function:ptrace_get_event_mask
596 if (data != sizeof(pe)) {
597 DPRINTF(("%s: %zu != %zu\n", __func__, data, sizeof(pe)));
600 memset(&pe, 0, sizeof(pe));
601 pe.pe_set_event = ISSET(t->p_slflag, PSL_TRACEFORK) ?
603 pe.pe_set_event |= ISSET(t->p_slflag, PSL_TRACEVFORK) ?
605 pe.pe_set_event |= ISSET(t->p_slflag, PSL_TRACEVFORK_DONE) ?
607 pe.pe_set_event |= ISSET(t->p_slflag, PSL_TRACELWP_CREATE) ?
609 pe.pe_set_event |= ISSET(t->p_slflag, PSL_TRACELWP_EXIT)
621 struct ptrace_event pe; local in function:ptrace_set_event_mask
    [all...]
  /src/sys/arch/evbsh3/ap_ms104_sh4/
shpcmcia.c 370 struct shpcmcia_event *pe; local in function:shpcmcia_event_thread
375 if ((pe = SIMPLEQ_FIRST(&h->events)) == NULL) {
389 switch (pe->pe_type) {
442 pe->pe_type);
444 kmem_free(pe, sizeof(*pe));
458 struct shpcmcia_event *pe; local in function:shpcmcia_queue_event
461 pe = kmem_intr_alloc(sizeof(*pe), KM_NOSLEEP);
462 if (pe == NULL
    [all...]
  /src/sys/arch/mmeye/dev/
mmeyepcmcia.c 378 struct mmeyepcmcia_event *pe; local in function:mmeyepcmcia_event_thread
383 if ((pe = SIMPLEQ_FIRST(&h->events)) == NULL) {
397 switch (pe->pe_type) {
448 pe->pe_type);
450 kmem_free(pe, sizeof(*pe));
589 struct mmeyepcmcia_event *pe; local in function:mmeyepcmcia_queue_event
592 pe = kmem_intr_alloc(sizeof(*pe), KM_NOSLEEP);
593 if (pe == NULL
    [all...]
  /src/sys/arch/i386/stand/lib/
vbe.c 138 struct paletteentry pe; local in function:vbe_set_palette
144 pe.Blue = cmap[2] >> 2;
145 pe.Green = cmap[1] >> 2;
146 pe.Red = cmap[0] >> 2;
147 pe.Alignment = 0;
149 ret = biosvbe_palette_data(0x0600, slot, &pe);
  /src/sys/external/bsd/drm2/dist/drm/nouveau/nvkm/subdev/bios/
nouveau_nvkm_subdev_bios_dp.c 187 info->pe = nvbios_rd08(bios, data + 0x03);
195 info->pe = nvbios_rd08(bios, data + 0x02);
200 info->pe = nvbios_rd08(bios, data + 0x01);
212 nvbios_dpcfg_match(struct nvkm_bios *bios, u16 outp, u8 pc, u8 vs, u8 pe,
221 idx = (pc * 10) + vsoff[vs] + pe;
231 nvbios_rd08(bios, data + 0x01) == pe)
  /src/etc/rc.d/
ntpd 49 ( cd /dev ; /bin/pax -rw -pe clockctl "${ntpd_chrootdir}/dev" )

Completed in 27 milliseconds

1 2 3 4 5