Searched defs:reloc (Results 26 - 40 of 40) sorted by relevance

12

/external/libdrm/freedreno/msm/
H A Dmsm_ringbuffer.c40 * a backing bo, and a reloc table.
48 /* reloc's table: */
60 * that is global to the submit ioctl call. The reloc's table is tracked
305 struct drm_msm_gem_submit_reloc *reloc = &msm_cmd->relocs[i]; local
306 if (reloc->submit_offset >= offset)
333 /* for each of the cmd buffers, clear their reloc's: */
391 ERROR_MSG(" reloc[%d]: submit_offset=%u, or=%08x, shift=%d, reloc_idx=%u"
425 /* for each of the cmd's fix up their reloc's: */
476 struct drm_msm_gem_submit_reloc *reloc; local
481 reloc
[all...]
/external/libdrm/nouveau/
H A Dpushbuf.c48 struct drm_nouveau_gem_pushbuf_reloc reloc[NOUVEAU_GEM_MAX_RELOCS]; member in struct:nouveau_pushbuf_krec
231 uint32_t reloc = data; local
235 krel = &krec->reloc[krec->nr_reloc++];
248 reloc = (bkref->presumed.offset + data);
252 reloc = (bkref->presumed.offset + data) >> 32;
257 reloc |= vor;
259 reloc |= tor;
263 return reloc;
286 krel = krec->reloc;
338 req.relocs = (uint64_t)(unsigned long)krec->reloc;
[all...]
/external/mesa3d/src/gallium/drivers/nouveau/nv30/
H A Dnvfx_fragprog.c270 struct nvfx_relocation reloc; local
282 reloc.target = target;
283 reloc.location = fpc->inst_offset + 2;
284 util_dynarray_append(&fpc->label_relocs, struct nvfx_relocation, reloc);
306 struct nvfx_relocation reloc; local
323 reloc.target = target;
324 reloc.location = fpc->inst_offset + 3;
325 util_dynarray_append(&fpc->label_relocs, struct nvfx_relocation, reloc);
335 struct nvfx_relocation reloc;
349 reloc
[all...]
H A Dnvfx_vertprog.c124 struct nvfx_relocation reloc; local
141 reloc.location = vp->nr_insns - 1;
142 reloc.target = src.reg.index;
143 util_dynarray_append(&vp->const_relocs, struct nvfx_relocation, reloc);
467 struct nvfx_relocation reloc; local
698 reloc.location = vpc->vp->nr_insns;
699 reloc.target = finst->Label.Label + 1;
700 util_dynarray_append(&vpc->label_relocs, struct nvfx_relocation, reloc);
709 reloc.location = vpc->vp->nr_insns;
710 reloc
[all...]
/external/mesa3d/src/gallium/drivers/r600/
H A Devergreen_compute.c476 unsigned reloc = radeon_add_to_buffer_list(&rctx->b, &rctx->b.gfx, local
491 radeon_emit(cs, reloc);
494 radeon_emit(cs, reloc);
H A Dr600_state.c1350 unsigned reloc; local
1358 reloc = radeon_add_to_buffer_list(&rctx->b,
1366 radeon_emit(cs, reloc);
1371 reloc = radeon_add_to_buffer_list(&rctx->b,
1379 radeon_emit(cs, reloc);
1384 reloc = radeon_add_to_buffer_list(&rctx->b,
1392 radeon_emit(cs, reloc);
1423 unsigned reloc = radeon_add_to_buffer_list(&rctx->b, local
1439 radeon_emit(cs, reloc);
1759 unsigned reloc; local
[all...]
H A Devergreen_state.c1533 unsigned reloc, cmask_reloc; local
1543 reloc = radeon_add_to_buffer_list(&rctx->b,
1556 cmask_reloc = reloc;
1575 radeon_emit(cs, reloc);
1578 radeon_emit(cs, reloc);
1584 radeon_emit(cs, reloc);
1600 unsigned reloc = radeon_add_to_buffer_list(&rctx->b, local
1621 radeon_emit(cs, reloc);
1624 radeon_emit(cs, reloc);
1627 radeon_emit(cs, reloc);
1989 unsigned reloc; local
[all...]
/external/mesa3d/src/gallium/winsys/svga/drm/
H A Dvmw_context.c192 struct vmw_buffer_relocation *reloc = &vswc->region.relocs[i]; local
195 if(!vmw_gmr_bufmgr_region_ptr(reloc->buffer, &ptr))
198 ptr.offset += reloc->offset;
200 if (reloc->is_mob) {
201 if (reloc->mob.id)
202 *reloc->mob.id = ptr.gmrId;
203 if (reloc->mob.offset_into_mob)
204 *reloc->mob.offset_into_mob = ptr.offset;
209 *reloc->region.where = ptr;
365 struct vmw_buffer_relocation *reloc; local
403 struct vmw_buffer_relocation *reloc; local
[all...]
/external/syslinux/gpxe/src/util/
H A Delf2efi.c143 uint16_t reloc; local
149 reloc = ( rva & 0xfff );
152 reloc |= 0xa000;
155 reloc |= 0x3000;
158 reloc |= 0x2000;
195 pe_rel->relocs[ pe_rel->used_relocs++ ] = reloc;
503 struct pe_section *reloc; local
511 reloc = xmalloc ( sizeof ( *reloc ) + section_filesz );
512 memset ( reloc,
[all...]
/external/swiftshader/third_party/LLVM/lib/CodeGen/SelectionDAG/
H A DTargetLowering.cpp43 TLSModel::Model getTLSModel(const GlobalValue *GV, Reloc::Model reloc) { argument
50 if (reloc == Reloc::PIC_) {
1094 // The normal PIC reloc base is the label at the start of the jump table.
/external/iproute2/misc/
H A Dss.c1234 /* Relocate external jumps by reloc. */
1235 static void ssfilter_patch(char *a, int len, int reloc) argument
1241 op->no += reloc;
/external/llvm/include/llvm/Support/
H A DMachO.h905 // Structs from <mach-o/reloc.h>
932 // Structs NOT from <mach-o/reloc.h>, but that make LLVM's life easier
1219 inline void swapStruct(any_relocation_info &reloc) { argument
1220 sys::swapByteOrder(reloc.r_word0);
1221 sys::swapByteOrder(reloc.r_word1);
/external/mesa3d/src/gallium/drivers/radeonsi/
H A Dsi_shader.c6033 const struct radeon_shader_reloc *reloc = &binary->relocs[i]; local
6035 if (!strcmp(scratch_rsrc_dword0_symbol, reloc->name) ||
6036 !strcmp(scratch_rsrc_dword1_symbol, reloc->name)) {
6123 const struct radeon_shader_reloc *reloc = local
6125 if (!strcmp(scratch_rsrc_dword0_symbol, reloc->name)) {
6126 util_memcpy_cpu_to_le32(shader->binary.code + reloc->offset,
6128 } else if (!strcmp(scratch_rsrc_dword1_symbol, reloc->name)) {
6129 util_memcpy_cpu_to_le32(shader->binary.code + reloc->offset,
/external/swiftshader/third_party/llvm-subzero/include/llvm/Support/
H A DMachO.h913 // Structs from <mach-o/reloc.h>
940 // Structs NOT from <mach-o/reloc.h>, but that make LLVM's life easier
1227 inline void swapStruct(any_relocation_info &reloc) { argument
1228 sys::swapByteOrder(reloc.r_word0);
1229 sys::swapByteOrder(reloc.r_word1);
/external/valgrind/perf/
H A Dtinycc.c419 #define SYMINFO_FLG_COPY 0x0004 /* Symbol is a copy-reloc */
636 #define DT_RELAENT 9 /* Size of one Rela reloc */
646 #define DT_RELENT 19 /* Size of one Rel reloc */
647 #define DT_PLTREL 20 /* Type of reloc in PLT */
936 #define R_68K_NONE 0 /* No reloc */
966 #define R_386_NONE 0 /* No reloc */
994 #define R_SPARC_NONE 0 /* No reloc */
1262 #define R_MIPS_NONE 0 /* No reloc */
1460 #define R_PARISC_NONE 0 /* No reloc. */
1508 #define R_ALPHA_NONE 0 /* No reloc */
2211 struct Section *reloc; /* corresponding section for relocation, if any */ member in struct:Section
[all...]

Completed in 4108 milliseconds

12