Searched refs:vma (Results 1 - 25 of 26) sorted by relevance

12

/external/mesa3d/src/gallium/drivers/ilo/core/
H A Dilo_vma.h51 ilo_vma_init(struct ilo_vma *vma, const struct ilo_dev *dev, argument
54 assert(ilo_is_zeroed(vma, sizeof(*vma)));
57 vma->vm_alignment = alignment;
58 vma->vm_size = size;
64 ilo_vma_set_bo(struct ilo_vma *vma, const struct ilo_dev *dev, argument
67 assert(offset % vma->vm_alignment == 0);
69 vma->bo = bo;
70 vma->bo_offset = offset;
H A Dilo_state_surface.h49 const struct ilo_vma *vma; member in struct:ilo_state_surface_buffer_info
70 const struct ilo_vma *vma; member in struct:ilo_state_surface_image_info
87 const struct ilo_vma *vma; member in struct:ilo_state_surface
H A Dilo_state_vf.h132 const struct ilo_vma *vma; member in struct:ilo_state_vertex_buffer_info
146 const struct ilo_vma *vma; member in struct:ilo_state_vertex_buffer
150 const struct ilo_vma *vma; member in struct:ilo_state_index_buffer_info
160 const struct ilo_vma *vma; member in struct:ilo_state_index_buffer
H A Dilo_state_sol.h113 const struct ilo_vma *vma; member in struct:ilo_state_sol_buffer_info
131 const struct ilo_vma *vma; member in struct:ilo_state_sol_buffer
H A Dilo_builder_3d_top.h322 if (b->vma) {
323 ilo_builder_batch_reloc64(builder, pos + 1, b->vma->bo,
324 b->vma->bo_offset + b->vb[1], 0);
337 if (b->vma) {
338 ilo_builder_batch_reloc(builder, pos + 1, b->vma->bo,
339 b->vma->bo_offset + b->vb[1], 0);
340 ilo_builder_batch_reloc(builder, pos + 2, b->vma->bo,
341 b->vma->bo_offset + b->vb[2], 0);
437 if (ib->vma) {
438 ilo_builder_batch_reloc(builder, pos + 1, ib->vma
[all...]
H A Dilo_state_sol.c281 if (info->vma) {
282 assert(info->vma->vm_alignment % 4 == 0);
283 assert(info->size && info->offset + info->size <= info->vma->vm_size);
320 return (info->vma) ? info->size & ~3 : 0;
357 if (info->vma)
450 sb->vma = info->vma;
H A Dilo_state_vf.c482 if (info->vma)
483 assert(info->size && info->offset + info->size <= info->vma->vm_size);
503 if (info->vma)
504 assert(info->vma->vm_alignment % 8 == 0);
518 return (info->vma) ? info->size : 0;
538 if (!info->vma)
552 vb->vma = info->vma;
587 if (info->vma) {
588 assert(info->vma
[all...]
H A Dilo_state_surface.c219 if (info->offset + info->size > info->vma->vm_size) {
236 if (info->offset % alignment || info->vma->vm_alignment % alignment) {
446 assert(info->img && info->vma);
449 assert(info->vma->vm_alignment % 4096 == 0);
1196 surf->vma = NULL;
1219 surf->vma = info->vma;
1241 surf->vma = info->vma;
/external/compiler-rt/test/msan/
H A Dtest.h10 unsigned long vma = (unsigned long)__builtin_frame_address(0); local
11 return SANITIZER_WORDSIZE - __builtin_clzll(vma);
/external/syslinux/
H A Dversion.pl27 $vma = $2+0;
35 print VI defx($def, 'VERSION_MAJOR', $vma);
/external/mesa3d/src/gallium/drivers/ilo/
H A Dilo_resource.h97 struct ilo_vma vma; member in struct:ilo_texture
110 struct ilo_vma vma; member in struct:ilo_buffer_resource
140 &((struct ilo_buffer_resource *) res)->vma :
141 &((struct ilo_texture *) res)->vma;
H A Dilo_blitter_blt.c143 dst.bo = buf->vma.bo;
144 dst.offset = buf->vma.bo_offset + offset;
190 dst.bo = dst_buf->vma.bo;
191 dst.offset = dst_buf->vma.bo_offset + dst_offset;
194 src.bo = src_buf->vma.bo;
195 src.offset = src_buf->vma.bo_offset + src_offset;
200 dst_buf->vma.bo, GEN6_TILING_NONE,
201 src_buf->vma.bo, GEN6_TILING_NONE);
262 dst.bo = dst_tex->vma.bo;
263 dst.offset = dst_tex->vma
[all...]
H A Dilo_transfer.c270 const struct ilo_vma *vma; local
275 vma = ilo_resource_get_vma(xfer->base.resource);
276 ptr = intel_bo_map(vma->bo, xfer->base.usage & PIPE_TRANSFER_WRITE);
279 vma = ilo_resource_get_vma(xfer->base.resource);
280 ptr = intel_bo_map_gtt(vma->bo);
283 vma = ilo_resource_get_vma(xfer->base.resource);
284 ptr = intel_bo_map_gtt_async(vma->bo);
290 vma = ilo_resource_get_vma(xfer->staging.res);
298 ptr = intel_bo_map(vma->bo, true);
300 ptr = intel_bo_map_gtt(vma
[all...]
H A Dilo_resource.c314 intel_bo_unref(tex->vma.bo);
315 ilo_vma_set_bo(&tex->vma, &is->dev, bo, 0);
405 intel_bo_unref(tex->vma.bo);
521 !ilo_vma_init(&tex->vma, &is->dev, img->bo_stride * img->bo_height,
528 ilo_vma_set_bo(&tex->vma, &is->dev, imported_bo, 0);
588 err = intel_winsys_export_handle(is->dev.winsys, tex->vma.bo, tiling,
606 intel_bo_unref(buf->vma.bo);
607 ilo_vma_set_bo(&buf->vma, &is->dev, bo, 0);
615 intel_bo_unref(buf->vma.bo);
661 ilo_vma_init(&buf->vma,
[all...]
H A Dilo_draw.c449 const struct ilo_vma *vma; local
459 vma = ilo_resource_get_vma(ib->state.buffer);
460 u.ptr = intel_bo_map(vma->bo, false);
462 u.u8 += vma->bo_offset + ib->state.offset;
464 vma = NULL;
508 if (vma)
509 intel_bo_unmap(vma->bo);
H A Dilo_render_surface.c52 info.vma = ilo_resource_get_vma(so->buffer);
486 info.vma = ilo_resource_get_vma(session->input->buffer);
549 info.vma = ilo_resource_get_vma(bindings[i].resource);
550 info.size = info.vma->vm_size;
H A Dilo_state.c382 cbuf->cso[i].info.vma = ilo_resource_get_vma(cbuf->cso[i].resource);
468 info.vma = ilo_resource_get_vma(vec->ib.hw_resource);
469 info.size = info.vma->vm_size;
532 info.vma = ilo_resource_get_vma(cso->buffer);
534 info.size = info.vma->vm_size - cso->buffer_offset;
1565 cso->info.vma = ilo_resource_get_vma(buf[i].buffer);
1575 cso->info.vma = NULL;
1581 cso->info.vma = NULL;
1594 cso->info.vma = NULL;
1949 info.vma
[all...]
/external/autotest/client/tests/rmaptest/src/
H A Drmap-test.c91 int vma; local
96 for (vma = 0; vma < vmas_to_do; vma++) {
108 printf("vma %d/%d done\n", vma, nvmas);
/external/swiftshader/third_party/LLVM/lib/ExecutionEngine/JIT/
H A DOProfileJITEventListener.cpp94 Result.vma = Address;
98 DEBUG(dbgs() << "Mapping " << reinterpret_cast<void*>(Result.vma) << " to "
137 line_info.vma = reinterpret_cast<uintptr_t>(FnStart);
152 LineInfo[0].vma = reinterpret_cast<uintptr_t>(FnStart);
/external/wpa_supplicant_8/hostapd/src/utils/
H A Dtrace.c153 bfd_vma vma; local
162 vma = bfd_get_section_vma(abfd, section);
163 if (data->pc < vma)
167 if (data->pc >= vma + size)
171 data->pc - vma,
/external/wpa_supplicant_8/src/utils/
H A Dtrace.c153 bfd_vma vma; local
162 vma = bfd_get_section_vma(abfd, section);
163 if (data->pc < vma)
167 if (data->pc >= vma + size)
171 data->pc - vma,
/external/wpa_supplicant_8/wpa_supplicant/src/utils/
H A Dtrace.c153 bfd_vma vma; local
162 vma = bfd_get_section_vma(abfd, section);
163 if (data->pc < vma)
167 if (data->pc >= vma + size)
171 data->pc - vma,
/external/compiler-rt/lib/cfi/
H A Dcfi.cc273 uptr vma = GetMaxVirtualAddress(); local
275 SetShadowSize((vma >> (kShadowGranularity - 1)) + 1);
276 VReport(1, "CFI: VMA size %zx, shadow size %zx\n", vma, GetShadowSize());
/external/honggfuzz/linux/
H A Dbfd.c123 long offset = (long)funcs[i].pc - bfdParams.section->vma;
/external/jemalloc/bin/
H A Djeprof.in4454 my $vma;
4469 $vma = $x[3];
4482 $r->{vma} = $vma;
4493 my $vma = undef;
4534 $vma = $1;
4540 if (defined($vma) && defined($size) && defined($file_offset)) {
4546 if (!defined($vma) || !defined($size) || !defined($file_offset)) {
4552 $r->{vma} = $vma;
[all...]

Completed in 516 milliseconds

12