/external/e2fsprogs/contrib/ |
make-sparse.c | 25 int got, total = 0; local 29 got = read(fd, buf, count); 30 if (got == -1) { 35 if (got == 0) { 41 buf += got; 42 total += got; 43 count -= got; 50 int fd, got, i; local 64 got = full_read(0, buf, sizeof(buf)); 65 if (got == 0 [all...] |
/external/deqp/modules/egl/ |
teglApiCase.hpp | 55 void expectBoolean (eglw::EGLBoolean expected, eglw::EGLBoolean got); 57 void expectNoContext (eglw::EGLContext got); 58 void expectNoSurface (eglw::EGLSurface got); 59 void expectNoDisplay (eglw::EGLDisplay got); 60 void expectNull (const void* got); 62 inline void expectTrue (eglw::EGLBoolean got) { expectBoolean(EGL_TRUE, got); } 63 inline void expectFalse (eglw::EGLBoolean got) { expectBoolean(EGL_FALSE, got); }
|
teglApiCase.cpp | 90 m_testCtx.getLog() << TestLog::Message << "// ERROR expected: " << eglu::getErrorStr(expected) << ", Got: " << eglu::getErrorStr(err) << TestLog::EndMessage; 92 m_testCtx.setTestResult(QP_TEST_RESULT_FAIL, "Got invalid error"); 101 m_testCtx.getLog() << TestLog::Message << "// ERROR expected: " << eglu::getErrorStr(expectedA) << " or " << eglu::getErrorStr(expectedB) << ", Got: " << eglu::getErrorStr(err) << TestLog::EndMessage; 103 m_testCtx.setTestResult(QP_TEST_RESULT_FAIL, "Got invalid error"); 107 void ApiCase::expectBoolean (EGLBoolean expected, EGLBoolean got) 109 if (expected != got) 111 m_testCtx.getLog() << TestLog::Message << "// ERROR expected: " << eglu::getBooleanStr(expected) << ", Got: " << eglu::getBooleanStr(got) << TestLog::EndMessage; 113 m_testCtx.setTestResult(QP_TEST_RESULT_FAIL, "Got invalid value"); 117 void ApiCase::expectNoContext (EGLContext got) 124 eglDestroyContext(getDisplay(), got); local 135 eglDestroySurface(getDisplay(), got); local [all...] |
/external/llvm/test/MC/AArch64/ |
elf-reloc-pcreladdressing.s | 7 adrp x5, :got:some_label
|
adrp-relocation.s | 9 adrp x0, :got:sym
|
/external/valgrind/none/tests/x86-linux/ |
seg_override.stdout.exp | 2 got 65536 bytes
|
/external/apache-harmony/crypto/src/test/api/java.injected/javax/crypto/ |
CipherInputStreamTest.java | 83 + data[i] + ", Got: " + res + "."); 104 int ind = 0; // index into the data array (to check the got data) 105 int got = cis.read(result); // the number of got bytes local 107 for (int j = 0; j < got - ind; j++) { 112 if (got == expected) { 114 } else if (got > expected) { 118 ind = got; 119 got += cis.read(result); 143 int ind = skip; // index into the data array (to check the got data 146 int got = skip + cis.read(result, 0, 1); \/\/ the number of got bytes local 181 int got = skipped + cis.read(result, 0, 1); \/\/ the number of got bytes local [all...] |
/external/llvm/test/MC/ARM/ |
symbol-variants-errors.s | 12 .word bar(got 14 @CHECK: .word bar(got 19 .word bar(got+2) 22 @CHECK: .word bar(got+2)
|
/external/icu/icu4c/source/test/intltest/ |
dcfmapts.h | 36 void verify(const UnicodeString& message, const UnicodeString& got, double expected); 37 void verifyString(const UnicodeString& message, const UnicodeString& got, UnicodeString& expected);
|
/external/llvm/test/MC/Mips/ |
elf-relsym.s | 47 lw $2, %got($.str)($1) 49 lw $3, %got(gc1)($1) 51 lw $2, %got($.str1)($1) 53 lw $3, %got(gc2)($1) 55 lw $2, %got($CPI0_0)($1) 57 lw $2, %got(gd1)($1) 59 lw $3, %got($CPI0_1)($1) 61 lw $1, %got(gd2)($1)
|
/external/valgrind/none/tests/ |
pending.stdout.exp | 4 4: got signal SIGUSR1
|
/external/e2fsprogs/util/ |
copy_sparse.c | 67 int got, total = 0; local 71 got = read(fd, buf, count); 72 if (got == -1) { 77 if (got == 0) { 83 buf += got; 84 total += got; 85 count -= got; 94 ssize_t got, got2; local 167 got = full_read(fd, buf, bs); 169 if (fd == 0 && got == 0 [all...] |
/external/llvm/test/MC/PowerPC/ |
ppc64-fixup-explicit.s | 10 # GOT references must result in explicit relocations 15 # CHECK-BE: addi 4, 3, target@GOT # encoding: [0x38,0x83,A,A] 16 # CHECK-LE: addi 4, 3, target@GOT # encoding: [A,A,0x83,0x38] 17 # CHECK-BE-NEXT: # fixup A - offset: 2, value: target@GOT, kind: fixup_ppc_half16 18 # CHECK-LE-NEXT: # fixup A - offset: 0, value: target@GOT, kind: fixup_ppc_half16 21 addi 4, 3, target@got 23 # CHECK-BE: ld 1, target@GOT(2) # encoding: [0xe8,0x22,A,0bAAAAAA00] 24 # CHECK-LE: ld 1, target@GOT(2) # encoding: [0bAAAAAA00,A,0x22,0xe8] 25 # CHECK-BE-NEXT: # fixup A - offset: 2, value: target@GOT, kind: fixup_ppc_half16ds 26 # CHECK-LE-NEXT: # fixup A - offset: 0, value: target@GOT, kind: fixup_ppc_half16d [all...] |
tls-ie-obj.s | 22 addis 4, 2, a@got@tprel@ha 23 ld 4, a@got@tprel@l(4)
|
/libcore/luni/src/test/java/org/apache/harmony/crypto/tests/javax/crypto/ |
CipherInputStream1Test.java | 92 + data[i] + ", Got: " + res + "."); 113 int ind = 0; // index into the data array (to check the got data) 114 int got = cis.read(result); // the number of got bytes local 116 for (int j = 0; j < got - ind; j++) { 121 if (got == expected) { 123 } else if (got > expected) { 127 ind = got; 128 got += cis.read(result); 152 int ind = skip; // index into the data array (to check the got data 155 int got = skip + cis.read(result, 0, 1); \/\/ the number of got bytes local 190 int got = skipped + cis.read(result, 0, 1); \/\/ the number of got bytes local [all...] |
/external/ltrace/ |
debug.c | 63 size_t got = umovebytes(proc, addr, buf, length); local 64 if (got == (size_t)-1) 66 return xwritedump((long *)buf, addr, got / sizeof(long));
|
/external/compiler-rt/test/asan/TestCases/Linux/ |
nohugepage_test.cc | 38 ssize_t got = read (fd, p, size); local 39 if (got == 0) 41 else if (got > 0) 43 p += got; 44 res += got; 45 size -= got;
|
/prebuilts/gcc/darwin-x86/x86/x86_64-linux-android-4.9/x86_64-linux-android/lib/ldscripts/ |
i386linux.xr | 28 *(.got)
|
i386linux.xu | 28 *(.got)
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/x86_64-linux/lib/ldscripts/ |
i386linux.xr | 24 *(.got)
|
i386linux.xu | 24 *(.got)
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/lib/ldscripts/ |
i386linux.xr | 24 *(.got)
|
i386linux.xu | 24 *(.got)
|
/prebuilts/gcc/linux-x86/x86/x86_64-linux-android-4.9/x86_64-linux-android/lib/ldscripts/ |
i386linux.xr | 28 *(.got)
|
i386linux.xu | 28 *(.got)
|