Searched defs:got (Results 1 - 11 of 11) sorted by relevance

/frameworks/base/tools/aapt/tests/
H A DCrunchCache_test.cpp18 void expectEqual(int got, int expected, const char* desc) { argument
20 cout << "Got " << got << ", expected " << expected << "...";
21 cout << ( (got == expected) ? "PASSED" : "FAILED") << endl;
22 errno += ((got == expected) ? 0 : 1);
/frameworks/compile/mclinker/lib/Target/Mips/
H A DMipsGOT.cpp81 MipsGOTEntry* got = &(llvm::cast<MipsGOTEntry>((*it))); local
82 *buffer = static_cast<uint32_t>(got->getValue());
83 result += got->size();
H A DMipsRelocator.cpp119 MipsGOT& got = ld_backend.getGOT(); local
121 if (got.isLocal(rsym) && ResolveInfo::Section == rsym->type()) {
122 // Local section symbols consume local got entries.
123 return *got.consumeLocal();
133 if (got.isLocal(rsym))
134 got_entry = got.consumeLocal();
136 got_entry = got.consumeGlobal();
183 MipsGOT& got = ld_backend.getGOT(); local
193 if (got.isLocal(rsym)) {
H A DMipsLDBackend.cpp60 // initialize .got
61 LDSection& got = file_format->getGOT(); local
62 m_pGOT = new MipsGOT(got);
155 // set .got size
156 // when building shared object, the .got section is must.
773 // For got16 section based relocations, we need to reserve got entries.
/frameworks/base/tools/aidl/
H A Doptions_test.cpp21 match_arrays(const char* const*expected, const vector<string> &got) argument
27 if (got.size() != count) {
31 if (got[i] != expected[i]) {
48 print_array(const char* prefix, const vector<string> &got) argument
50 size_t count = got.size();
52 cout << prefix << got[i] << endl;
71 cout << "mismatch: result: got " << result << " expected " <<
83 cout << "mismatch: systemSearchPath: got" << endl;
92 cout << "mismatch: localSearchPath: got" << endl;
101 cout << "mismatch: inputFileName: got " << option
[all...]
/frameworks/compile/mclinker/lib/Target/ARM/
H A DARMGOT.cpp154 ARMGOTEntry* got = NULL; local
157 got = &(llvm::cast<ARMGOTEntry>((*it)));
158 *buffer = static_cast<uint32_t>(got->getValue());
H A DARMLDBackend.cpp97 // initialize .got
98 LDSection& got = file_format->getGOT(); local
99 m_pGOT = new ARMGOT(got);
207 // set .got size
208 // when building shared object, the .got section is must
284 // define symbol _GLOBAL_OFFSET_TABLE_ when .got create
534 // in .got and .rel.plt. (GOT entry will be reserved simultaneously
666 // in .got and .rel.plt. (GOT entry will be reserved simultaneously
683 // Symbol needs GOT entry, reserve entry in .got
868 // If the input section's size is zero, we got
[all...]
/frameworks/compile/mclinker/lib/Target/Hexagon/
H A DHexagonLDBackend.cpp181 // initialize .got
182 LDSection& got = file_format->getGOT(); local
183 m_pGOT = new HexagonGOT(got);
/frameworks/compile/mclinker/lib/Target/X86/
H A DX86LDBackend.cpp86 // set .got.plt and .got sizes
87 // when building shared object, the .got section is must
446 // Symbol needs GOT entry, reserve entry in .got
528 // reserve got and dyn relocation entries for tp-relative offset
540 // reserve got and dyn relocation entries for tp-relative offset
589 // in .got and .rel.plt. (GOT entry will be reserved simultaneously
640 // in .got and .rel.plt. (GOT entry will be reserved simultaneously
650 // Symbol needs GOT entry, reserve entry in .got
686 // in .got an
789 LDSection& got = file_format->getGOT(); local
873 X86_32GOTEntry* got = 0; local
896 X86_32GOTEntry* got = 0; local
1253 LDSection& got = file_format->getGOT(); local
1299 X86_64GOTEntry* got = 0; local
1322 X86_64GOTEntry* got = 0; local
[all...]
/frameworks/compile/mclinker/lib/Target/
H A DGNULDBackend.cpp1931 // It seems that compiler think .got and .got.plt are continuous (w/o any
1932 // padding between). If .got is the last section in PT_RELRO and it's not
1933 // continuous to its next section (i.e. .got.plt), we need to add padding
1934 // in front of .got instead.
1936 LDSection& got = getOutputFormat()->getGOT(); local
1937 if ((getSectionOrder(got) == SHO_RELRO_LAST) &&
1938 (got.offset() + got.size() != offset)) {
1939 got
[all...]
/frameworks/base/tools/aapt/
H A DResourceTable.cpp2325 bool got = getItemValue(attrID, e->getBag().valueAt(i).bagKeyId, &val); local
2326 if (!got) {

Completed in 297 milliseconds