/external/clang/test/PCH/ |
reloc.c | 1 // RUN: %clang_cc1 -emit-pch -o %t -relocatable-pch -isysroot %S/libroot %S/libroot/usr/include/reloc.h 5 #include <reloc.h>
|
/external/elfutils/libebl/ |
eblgotpcreloccheck.c | 24 ebl_gotpc_reloc_check (ebl, reloc) 26 int reloc; 28 return ebl != NULL ? ebl->gotpc_reloc_check (ebl->elf, reloc) : false;
|
eblreloctypecheck.c | 23 ebl_reloc_type_check (ebl, reloc) 25 int reloc; 27 return ebl != NULL ? ebl->reloc_type_check (reloc) : false;
|
eblrelocvaliduse.c | 23 ebl_reloc_valid_use (ebl, reloc) 25 int reloc; 27 return ebl != NULL ? ebl->reloc_valid_use (ebl->elf, reloc) : false;
|
eblreloctypename.c | 24 ebl_reloc_type_name (ebl, reloc, buf, len) 26 int reloc; 32 res = ebl != NULL ? ebl->reloc_type_name (reloc, buf, len) : NULL;
|
libebl.h | 130 extern const char *ebl_reloc_type_name (Ebl *ebl, int reloc, 134 extern bool ebl_reloc_type_check (Ebl *ebl, int reloc); 137 extern bool ebl_reloc_valid_use (Ebl *ebl, int reloc); 141 extern bool ebl_gotpc_reloc_check (Ebl *ebl, int reloc);
|
/bionic/libc/kernel/arch-sh/asm/ |
flat.h | 18 #define flat_reloc_valid(reloc, size) ((reloc) <= (size))
|
/bionic/linker/ |
linker.c | 1271 unsigned reloc = (unsigned)(rel->r_offset + si->base); local 1474 unsigned reloc = (unsigned)(rela->r_offset + si->base); local [all...] |
linker_debug.h | 115 int reloc[NUM_RELOC_STATS]; member in struct:_link_stats 121 linker_stats.reloc[type] += 1; \ 123 PRINT("Unknown reloc stat requested\n"); \
|
/prebuilt/darwin-x86/toolchain/arm-linux-androideabi-4.4.x/include/ |
bfdlink.h | 298 /* TRUE if non-PLT relocs should be merged into one reloc section 516 __CTOR_LIST__). RELOC is the relocation to use for an entry in 522 bfd_reloc_code_real_type reloc, bfd *abfd, asection *sec, bfd_vma value); 550 /* A function which is called when a reloc overflow occurs. ENTRY is 551 the link hash table entry for the symbol the reloc is against. 552 NAME is the name of the local symbol or section the reloc is 562 /* A function which is called when a dangerous reloc is performed. 571 /* A function which is called when a reloc is found to be attached 574 the reloc; if this is the result of a 658 /* Description of reloc to generate. Used fo 659 } reloc; member in union:bfd_link_order::__anon17883 678 bfd_reloc_code_real_type reloc; member in struct:bfd_link_order_reloc [all...] |
/prebuilt/linux-x86/toolchain/arm-linux-androideabi-4.4.x/include/ |
bfdlink.h | 298 /* TRUE if non-PLT relocs should be merged into one reloc section 516 __CTOR_LIST__). RELOC is the relocation to use for an entry in 522 bfd_reloc_code_real_type reloc, bfd *abfd, asection *sec, bfd_vma value); 550 /* A function which is called when a reloc overflow occurs. ENTRY is 551 the link hash table entry for the symbol the reloc is against. 552 NAME is the name of the local symbol or section the reloc is 562 /* A function which is called when a dangerous reloc is performed. 571 /* A function which is called when a reloc is found to be attached 574 the reloc; if this is the result of a 658 /* Description of reloc to generate. Used fo 659 } reloc; member in union:bfd_link_order::__anon19306 678 bfd_reloc_code_real_type reloc; member in struct:bfd_link_order_reloc [all...] |
/prebuilt/linux-x86/toolchain/i686-unknown-linux-gnu-4.2.1/include/ |
bfdlink.h | 297 /* TRUE if non-PLT relocs should be merged into one reloc section 490 __CTOR_LIST__). RELOC is the relocation to use for an entry in 496 bfd_reloc_code_real_type reloc, bfd *abfd, asection *sec, bfd_vma value); 524 /* A function which is called when a reloc overflow occurs. ENTRY is 525 the link hash table entry for the symbol the reloc is against. 526 NAME is the name of the local symbol or section the reloc is 536 /* A function which is called when a dangerous reloc is performed. 545 /* A function which is called when a reloc is found to be attached 548 the reloc; if this is the result of a 619 /* Description of reloc to generate. Used fo 620 } reloc; member in union:bfd_link_order::__anon21273 639 bfd_reloc_code_real_type reloc; member in struct:bfd_link_order_reloc [all...] |
/external/chromium/base/win/ |
pe_image.cc | 319 PWORD reloc = reinterpret_cast<PWORD>(base + 1); local 323 for (UINT i = 0; i < num_relocs; i++, reloc++) { 324 WORD type = *reloc >> 12; 325 PVOID address = RVAToAddr(base->VirtualAddress + (*reloc & 0x0FFF));
|
/external/chromium/build/ |
install-build-deps.sh | 91 --- src/gold/reloc.cc 2010/10/14 22:10:22 1.60 92 +++ src/gold/reloc.cc 2011/02/10 01:15:28 1.60.2.1 94 // reloc.cc -- relocate input files for gold.
|
/external/v8/test/mjsunit/regress/ |
regress-1174.js | 31 // reloc info that only take up 1 byte per call (like KeyedStoreIC).
|
/external/qemu/hw/ |
pc.c | 522 uint8_t rom[512], *p, *reloc; local 545 reloc = p; 556 *reloc = (p - rom); [all...] |
/external/v8/src/ |
serialize.h | 458 void VisitRuntimeEntry(RelocInfo* reloc);
|
/external/iproute2/misc/ |
ss.c | 785 /* Relocate external jumps by reloc. */ 786 static void ssfilter_patch(char *a, int len, int reloc) 791 op->no += reloc; [all...] |
/external/llvm/include/llvm/Target/ |
TargetLowering.h | 73 TLSModel::Model getTLSModel(const GlobalValue *GV, Reloc::Model reloc); [all...] |
/external/llvm/lib/CodeGen/SelectionDAG/ |
TargetLowering.cpp | 43 TLSModel::Model getTLSModel(const GlobalValue *GV, Reloc::Model reloc) { 50 if (reloc == Reloc::PIC_) { [all...] |
/external/valgrind/main/perf/ |
tinycc.c | 419 #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 */ 649 #define DT_TEXTREL 22 /* Reloc might modify .text */ 2211 struct Section *reloc; \/* corresponding section for relocation, if any *\/ member in struct:Section [all...] |