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

1 2 3 4 5

  /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/chromium_org/media/filters/
h264_bitstream_buffer_unittest.cc 32 uint64 got = 0; local
39 got |= (*ptr & 0xff);
41 got <<= (num_bits > 8 ? 8 : num_bits);
47 got |= temp;
49 EXPECT_EQ(got, expected) << std::hex << "0x" << got << " vs 0x" << expected;
  /external/chromium_org/third_party/tcmalloc/chromium/src/
central_freelist.cc 118 int got = 0; local
121 got++;
123 ASSERT(got + span->refcount ==
  /external/chromium_org/third_party/tcmalloc/vendor/src/
central_freelist.cc 118 int got = 0; local
121 got++;
123 ASSERT(got + span->refcount ==
  /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...]
  /frameworks/compile/mclinker/lib/Target/Mips/
MipsGOTPLT.cpp 13 typedef mcld::GOT::Entry<4> GOTPLTEntry;
24 : GOT(pSection)
44 GOTPLTEntry* got = &(llvm::cast<GOTPLTEntry>((*it))); local
45 *buffer = static_cast<uint32_t>(got->getValue());
46 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/deqp/modules/egl/
teglApiCase.cpp 65 m_testCtx.setTestResult(QP_TEST_RESULT_FAIL, "Got invalid error");
69 void ApiCase::expectBoolean (EGLBoolean expected, EGLBoolean got)
71 if (expected != got)
75 m_testCtx.setTestResult(QP_TEST_RESULT_FAIL, "Got invalid value");
79 void ApiCase::expectNoContext (EGLContext got)
81 if (got != EGL_NO_CONTEXT)
85 m_testCtx.setTestResult(QP_TEST_RESULT_FAIL, "Got invalid value");
86 eglDestroyContext(getDisplay(), got); local
90 void ApiCase::expectNoSurface (EGLSurface got)
92 if (got != EGL_NO_CONTEXT
97 eglDestroySurface(getDisplay(), got); local
    [all...]
  /art/compiler/optimizing/
graph_test.cc 43 HInstruction* got = new (allocator) HGoto(); local
44 block->AddInstruction(got);
292 HInstruction* got = block->GetLastInstruction(); local
293 ASSERT_TRUE(got->IsControlFlow());
297 block->InsertInstructionBefore(first_instruction, got);
302 ASSERT_EQ(block->GetLastInstruction(), got);
303 ASSERT_EQ(first_instruction->GetNext(), got);
305 ASSERT_EQ(got->GetNext(), nullptr);
306 ASSERT_EQ(got->GetPrevious(), first_instruction);
310 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/chromium_org/third_party/sqlite/src/tool/
showjournal.c 30 int got; local
34 got = fread(pBuf, 1, N, db);
35 if( got<0 ){
38 }else if( got<N ){
39 fprintf(stderr, "Short read: got only %d of %d bytes from %d\n",
40 got, N, iOfst);
41 memset(&pBuf[got], 0, N-got);
  /external/chromium_org/third_party/zlib/
gzwrite.c 63 int ret, got; local
79 if (have && ((got = write(state->fd, state->next, have)) < 0 ||
80 (unsigned)got != have)) {
gzread.c 312 if (state->have) /* got some data from gz_head() */
367 unsigned got, n; local
400 got = 0;
444 got += n;
449 return (int)got;
576 if (buf == str) /* got bupkus */
578 break; /* got something -- return it */
  /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/qemu/distrib/zlib-1.2.8/
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)) {
  /external/smack/src/org/jivesoftware/smack/proxy/
HTTPProxySocketFactory.java 99 StringBuilder got = new StringBuilder(100); local
105 got.append(c);
106 if (got.length() > 1024)
141 String gotstr = got.toString();
  /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)) {
  /frameworks/compile/mclinker/lib/Target/AArch64/
AArch64GOT.cpp 26 : GOT(pSection), m_pGOTPLTFront(NULL), m_pGOTFront(NULL)
86 // push GOT into the SectionData and setup the offset
132 AArch64GOTEntry* got = NULL; local
135 got = &(llvm::cast<AArch64GOTEntry>((*it)));
136 *buffer = static_cast<uint64_t>(got->getValue());
  /frameworks/compile/mclinker/lib/Target/ARM/
ARMGOT.cpp 26 : GOT(pSection), m_pGOTPLTFront(NULL), m_pGOTFront(NULL)
81 // push GOT into the SectionData and setup the offset
127 ARMGOTEntry* got = NULL; local
130 got = &(llvm::cast<ARMGOTEntry>((*it)));
131 *buffer = static_cast<uint32_t>(got->getValue());
  /external/chromium_org/ppapi/native_client/tests/nacl_browser/fault_injection/
fault_pm_nameservice_test.cc 45 size_t got; local
55 for (got = 0; got < nbytes; got += copied) {
56 copied = read(d, bytes.get() + got, nbytes - got);
62 printf("read(%d, ..., %u) -> %d\n", d, nbytes - got, copied);
66 for (size_t ix = 0; ix < got; ++ix) {
134 sb->Printf("Got manifest descriptor %d\n", manifest);
142 sb->Printf("got manifest connection %d\n", manifest_conn)
    [all...]
  /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/elfutils/0.153/libdw/
dwarf_getlocation.c 608 size_t got = 0; local
609 while (got < maxlocs)
674 &llbufs[got], &listlens[got],
677 ++got;
681 return got;
  /external/owasp/sanitizer/src/tests/org/owasp/html/
SanitizersTest.java 92 String got = sanitizer.sanitize(input); local
94 assertEquals(want, got);

Completed in 735 milliseconds

1 2 3 4 5