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

  /src/sys/external/bsd/drm2/dist/drm/radeon/
radeon_cs.c 621 struct radeon_cs_chunk *ib_chunk; local in function:radeon_cs_ib_fill
634 ib_chunk = parser->chunk_const_ib;
635 if (ib_chunk->length_dw > RADEON_IB_VM_MAX_SIZE) {
636 DRM_ERROR("cs IB CONST too big: %d\n", ib_chunk->length_dw);
640 vm, ib_chunk->length_dw * 4);
646 parser->const_ib.length_dw = ib_chunk->length_dw;
648 ib_chunk->user_ptr,
649 ib_chunk->length_dw * 4))
653 ib_chunk = parser->chunk_ib;
654 if (ib_chunk->length_dw > RADEON_IB_VM_MAX_SIZE)
751 struct radeon_cs_chunk *ib_chunk = p->chunk_ib; local in function:radeon_cs_packet_parse
    [all...]
radeon_evergreen_cs.c 2828 struct radeon_cs_chunk *ib_chunk = p->chunk_ib; local in function:evergreen_dma_cs_parse
2837 if (p->idx >= ib_chunk->length_dw) {
2839 p->idx, ib_chunk->length_dw);
radeon_r600_cs.c 2381 struct radeon_cs_chunk *ib_chunk = p->chunk_ib; local in function:r600_dma_cs_parse
2390 if (p->idx >= ib_chunk->length_dw) {
2392 p->idx, ib_chunk->length_dw);
  /src/sys/external/bsd/drm/dist/shared-core/
radeon_cs.c 355 struct drm_radeon_kernel_chunk *ib_chunk; local in function:r600_cs_packet3
357 ib_chunk = &parser->chunks[parser->ib_index];
359 hdr = ib_chunk->kdata[offset_dw];
395 reloc = ib_chunk->kdata + offset_dw + num_dw;
401 ib_chunk->kdata[offset_dw + 1] += (offset & 0xffffffff);
402 ib_chunk->kdata[offset_dw + 2] += (upper_32_bits(offset) & 0xff);
424 if (ib_chunk->kdata[offset_dw + 1] & 0x10) {
425 reloc = ib_chunk->kdata + offset_dw + num_dw;
431 ib_chunk->kdata[offset_dw + 2] += (offset & 0xffffffff);
432 ib_chunk->kdata[offset_dw + 3] += (upper_32_bits(offset) & 0xff)
723 struct drm_radeon_kernel_chunk *ib_chunk; local in function:r600_cs_parse
    [all...]

Completed in 17 milliseconds