/bionic/linker/ |
linker_mips.cpp | 90 // We got a definition. 130 ElfW(Addr)** got = plt_got_; 131 if (got == nullptr) { 135 // got[0] is the address of the lazy resolver function. 136 // got[1] may be used for a GNU extension. 141 got[g++] = reinterpret_cast<ElfW(Addr)*>(0xdeadbeef); 142 if (reinterpret_cast<intptr_t>(got[g]) < 0) { 143 got[g++] = reinterpret_cast<ElfW(Addr)*>(0xdeadfeed); 145 // Relocate the local GOT entries. 147 got[g] = reinterpret_cast<ElfW(Addr)*>(reinterpret_cast<uintptr_t>(got[g]) + load_bias) [all...] |
/external/valgrind/memcheck/tests/linux/ |
timerfd-syscall.stderr.exp | 10 got timer ticks (1) after 0.5 s 13 got timer ticks (1) after 0.5 s 20 got about 20 timer ticks after about 2s 23 got timer ticks (1) after 0.1 s 33 got timer ticks (1) after 0.5 s 36 got timer ticks (1) after 0.5 s 43 got about 20 timer ticks after about 2s 46 got timer ticks (1) after 0.1 s
|
/external/e2fsprogs/misc/ |
badblocks.c | 354 long got; local 376 got = read (dev, buffer, try * block_size); 379 if (got < 0) 380 got = 0; 381 if (got & 511) 382 fprintf(stderr, _("Weird value (%ld) in do_read\n"), got); 383 got /= block_size; 384 if (d_flag && got == try) { 420 return got; 430 long got; local 478 int got; local 592 int i, try, got, nr_pattern, pat_idx; local 735 int got, used2, written; local [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
test_popen2.py | 65 got = r.read() 66 self.assertEqual(expected_out, got.strip(), "wrote %r read %r" % 67 (teststr, got)) 70 got = e.read() 71 self.assertFalse(got, "unexpected %r on stderr" % got) 92 got = r.read() 93 self.assertEqual(got, self.teststr + "\n") 105 got = r.read() 106 self.assertEqual(got, self.teststr + "\n" [all...] |
test_popen.py | 22 got = eval(data)[1:] # strip off argv[0] 23 self.assertEqual(got, expected)
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
test_popen2.py | 65 got = r.read() 66 self.assertEqual(expected_out, got.strip(), "wrote %r read %r" % 67 (teststr, got)) 70 got = e.read() 71 self.assertFalse(got, "unexpected %r on stderr" % got) 92 got = r.read() 93 self.assertEqual(got, self.teststr + "\n") 105 got = r.read() 106 self.assertEqual(got, self.teststr + "\n" [all...] |
test_popen.py | 22 got = eval(data)[1:] # strip off argv[0] 23 self.assertEqual(got, expected)
|
/external/llvm/test/MC/PowerPC/ |
tls-gd-obj.s | 22 addis 3, 2, a@got@tlsgd@ha 23 addi 3, 3, a@got@tlsgd@l
|
tls-ld-obj.s | 21 addis 3, 2, a@got@tlsld@ha 22 addi 3, 3, a@got@tlsld@l
|
/prebuilts/gcc/darwin-x86/x86/x86_64-linux-android-4.9/x86_64-linux-android/lib/ldscripts/ |
i386linux.x | 34 *(.got)
|
i386linux.xbn | 33 *(.got)
|
i386linux.xn | 33 *(.got)
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/x86_64-linux/lib/ldscripts/ |
i386linux.x | 30 *(.got)
|
i386linux.xbn | 29 *(.got)
|
i386linux.xn | 29 *(.got)
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/lib/ldscripts/ |
i386linux.x | 30 *(.got)
|
i386linux.xbn | 29 *(.got)
|
i386linux.xn | 29 *(.got)
|
/prebuilts/gcc/linux-x86/x86/x86_64-linux-android-4.9/x86_64-linux-android/lib/ldscripts/ |
i386linux.x | 34 *(.got)
|
i386linux.xbn | 33 *(.got)
|
i386linux.xn | 33 *(.got)
|
/external/compiler-rt/test/BlocksRuntime/ |
fail.c | 56 fprintf(stderr, "didn't open custom error file %s as 1, got %d\n", buffer, fd); 71 printf("wait got %d instead of %d\n", deadchild, child); 83 char got[512]; local 85 bool gotOutput = readfile(got, buffer); 88 errorfile, got); 92 char *where = strstr(got, desired);
|
/frameworks/base/tools/aapt/tests/ |
CrunchCache_test.cpp | 18 void expectEqual(int got, int expected, const char* desc) { 20 cout << "Got " << got << ", expected " << expected << "..."; 21 cout << ( (got == expected) ? "PASSED" : "FAILED") << endl; 22 errno += ((got == expected) ? 0 : 1);
|
/external/vboot_reference/scripts/keygeneration/ |
keyset_version_check.sh | 42 local got="$2" 45 if [[ ${expected} != ${got} ]]; then 48 echo "GOT (${got_label} version): ${got}"
|
/frameworks/compile/mclinker/lib/Target/Mips/ |
MipsGOTPLT.cpp | 14 typedef mcld::GOT::Entry<4> GOTPLTEntry; 24 MipsGOTPLT::MipsGOTPLT(LDSection& pSection) : GOT(pSection) { 41 GOTPLTEntry* got = &(llvm::cast<GOTPLTEntry>((*it))); local 42 *buffer = static_cast<uint32_t>(got->getValue()); 43 result += got->size();
|