HomeSort by relevance Sort by last modified time
    Searched defs:got (Results 1 - 25 of 99) sorted by null

1 2 3 4

  /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/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/vboot_reference/host/lib/
host_misc.c 63 char* got; local
70 got = fgets(dest, size, f);
72 return 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();
  /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);
  /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;
  /external/deqp/modules/egl/
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/elfutils/src/tests/
backtrace-dwarf.c 151 pid_t got = waitpid (pid, &status, 0); local
153 assert (got == pid);
  /art/compiler/optimizing/
graph_test.cc 42 HInstruction* got = new (allocator) HGoto(); local
43 block->AddInstruction(got);
293 HInstruction* got = block->GetLastInstruction(); local
294 ASSERT_TRUE(got->IsControlFlow());
298 block->InsertInstructionBefore(first_instruction, got);
303 ASSERT_EQ(block->GetLastInstruction(), got);
304 ASSERT_EQ(first_instruction->GetNext(), got);
306 ASSERT_EQ(got->GetNext(), nullptr);
307 ASSERT_EQ(got->GetPrevious(), first_instruction);
311 block->InsertInstructionBefore(second_instruction, got);
    [all...]
  /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/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/pdfium/core/src/fxcodec/fx_zlib/zlib_v128/
gzwrite.c 74 int ret, got; local
84 got = write(state->fd, strm->next_in, strm->avail_in);
85 if (got < 0 || (unsigned)got != strm->avail_in) {
101 if (have && ((got = write(state->fd, state->x.next, have)) < 0 ||
102 (unsigned)got != have)) {
gzread.c 54 unsigned got; local
69 state->size - strm->avail_in, &got) == -1)
71 strm->avail_in += got;
293 unsigned got, n; local
327 got = 0;
373 got += n;
378 return (int)got;
  /external/toybox/lib/
getmountlist.c 72 int optlen = strlen(opt), len, no, got = 0; local
80 got = !no;
85 return got;
  /external/zlib/src/
gzwrite.c 74 int ret, got; local
84 got = write(state->fd, strm->next_in, strm->avail_in);
85 if (got < 0 || (unsigned)got != strm->avail_in) {
101 if (have && ((got = write(state->fd, state->x.next, have)) < 0 ||
102 (unsigned)got != have)) {
gzread.c 54 unsigned got; local
69 state->size - strm->avail_in, &got) == -1)
71 strm->avail_in += got;
293 unsigned got, n; local
327 got = 0;
373 got += n;
378 return (int)got;
  /frameworks/compile/mclinker/lib/Target/AArch64/
AArch64GOT.cpp 26 : GOT(pSection), m_pGOTPLTFront(NULL), m_pGOTFront(NULL) {
78 // push GOT into the SectionData and setup the offset
121 AArch64GOTEntry* got = NULL; local
124 got = &(llvm::cast<AArch64GOTEntry>((*it)));
125 *buffer = static_cast<uint64_t>(got->getValue());
AArch64LDBackend.cpp 88 // initialize .got
89 LDSection& got = file_format->getGOT(); local
90 m_pGOT = new AArch64GOT(got);
92 // when -z now is given, there will be only one .got section (contains
93 // both GOTPLT and normal GOT entries), create GOT0 for .got section and
94 // set m_pGOTPLT to the same .got
98 // Otherwise, got should be seperated to two sections, .got and .got.pl
    [all...]
  /frameworks/compile/mclinker/lib/Target/ARM/
ARMGOT.cpp 26 : GOT(pSection), m_pGOTPLTFront(NULL), m_pGOTFront(NULL) {
75 // push GOT into the SectionData and setup the offset
118 ARMGOTEntry* got = NULL; local
121 got = &(llvm::cast<ARMGOTEntry>((*it)));
122 *buffer = static_cast<uint32_t>(got->getValue());
  /external/e2fsprogs/debugfs/
dump.c 110 unsigned int got, blocksize = current_fs->blocksize; local
126 retval = ext2fs_file_read(e2_file, buf, blocksize, &got);
129 if (got == 0)
131 nbytes = write(fd, buf, got);
132 if ((unsigned) nbytes != got)
226 unsigned int got; local
227 retval = ext2fs_file_read(e2_file, p, bytes, &got);
232 bytes -= got;
233 p += got;
234 if (got == 0 || bytes == 0
    [all...]
  /external/owasp/sanitizer/src/tests/org/owasp/html/
SanitizersTest.java 92 String got = sanitizer.sanitize(input); local
94 assertEquals(want, got);
  /external/zlib/src/examples/
enough.c 206 big_t got; /* value returned from count() */ local
221 got = num[index];
222 if (got)
223 return got; /* we have -- return the saved result */
240 got = count(syms - use, len + 1, (left - use) << 1);
241 sum += got;
242 if (got == (big_t)0 - 1 || sum < got) /* overflow */
462 big_t got; /* return value of count() */ local
536 got = count(n, 1, 2)
    [all...]
  /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/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/
ProtectionDomainTest.java 140 Principal[] got = pd.getPrincipals(); local
141 assertNotNull(got);
142 assertNotSame(got, principals);
143 assertNotSame(got, pd.getPrincipals());
144 assertTrue(got.length == principals.length);
  /external/e2fsprogs/misc/
e2initrd_helper.c 77 unsigned int got; local
106 retval = ext2fs_file_read(e2_file, buf, inode.i_size, &got);
115 ret_file->size = (int) got;

Completed in 877 milliseconds

1 2 3 4