HomeSort by relevance Sort by last modified time
    Searched refs:ndw (Results 1 - 14 of 14) sorted by null

  /external/libdrm/radeon/
radeon_cs_int.h 16 unsigned ndw; member in struct:radeon_cs_int
37 uint32_t ndw);
44 uint32_t ndw,
radeon_cs.c 10 radeon_cs_create(struct radeon_cs_manager *csm, uint32_t ndw)
12 struct radeon_cs_int *csi = csm->funcs->cs_create(csm, ndw);
31 radeon_cs_begin(struct radeon_cs *cs, uint32_t ndw,
35 return csi->csm->funcs->cs_begin(csi, ndw, file, func, line);
radeon_cs.h 56 unsigned ndw; member in struct:radeon_cs
66 uint32_t ndw);
69 uint32_t ndw,
radeon_cs_gem.c 129 uint32_t ndw)
134 if (ndw > (64 * 1024 / 4)) {
142 csg->base.ndw = 64 * 1024 / 4;
280 uint32_t ndw,
293 cs->section_ndw = ndw;
299 if (cs->cdw + ndw > cs->ndw) {
303 tmp = (cs->cdw + ndw + 0x3FF) & (~0x3FF);
309 cs->ndw = tmp;
  /external/mesa3d/src/gallium/drivers/radeonsi/
radeonsi_pm4.c 38 state->last_pm4 = state->ndw++;
43 state->pm4[state->ndw++] = dw;
49 count = state->ndw - state->last_pm4 - 2;
53 assert(state->ndw <= SI_PM4_MAX_DW);
114 if (state->ndw == offs) {
115 state->ndw--;
123 state->relocs[state->nrelocs++] = state->ndw;
199 count += state->ndw;
213 memcpy(&cs->buf[cs->cdw], state->pm4, state->ndw * 4);
219 cs->cdw += state->ndw;
    [all...]
radeonsi_pm4.h 50 unsigned ndw; member in struct:si_pm4_state
  /external/mesa3d/src/gallium/drivers/r600/
eg_asm.c 65 S_SQ_CF_ALU_WORD1_COUNT((cf->ndw / 2) - 1);
72 S_SQ_CF_WORD1_COUNT((cf->ndw / 4) - 1);
r600_asm.h 155 unsigned ndw; member in struct:r600_bytecode_cf
204 unsigned ndw; member in struct:r600_bytecode
r700_asm.c 28 unsigned count = (cf->ndw / 4) - 1;
r600_asm.c 284 bc->ndw += 2;
289 bc->ndw += 2;
    [all...]
evergreen_compute.c 150 shader->bc.ndw * 4);
155 memcpy(p, shader->bc.bytecode, shader->bc.ndw * 4);
r600_shader.c 70 pipe_buffer_create(ctx->screen, PIPE_BIND_CUSTOM, PIPE_USAGE_IMMUTABLE, rshader->bc.ndw * 4);
76 for (i = 0; i < rshader->bc.ndw; ++i) {
80 memcpy(ptr, rshader->bc.bytecode, rshader->bc.ndw * sizeof(*ptr));
    [all...]
  /external/libdrm/tests/amdgpu/
cs_tests.c 122 static int submit(unsigned ndw, unsigned ip)
131 ib_info.size = ndw;
vce_tests.c 137 static int submit(unsigned ndw, unsigned ip)
146 ib_info.size = ndw;

Completed in 192 milliseconds