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

1 2 3 4 5 6 7 8

  /external/vulkan-validation-layers/layers/
vk_layer_data.h 28 typename std::unordered_map<void *, DATA_T *>::const_iterator got; local
31 got = layer_data_map.find(data_key);
33 if (got == layer_data_map.end()) {
37 debug_data = got->second;
  /prebuilts/ndk/r13/sources/third_party/vulkan/src/layers/
vk_layer_data.h 28 typename std::unordered_map<void *, DATA_T *>::const_iterator got; local
31 got = layer_data_map.find(data_key);
33 if (got == layer_data_map.end()) {
37 debug_data = got->second;
  /external/compiler-rt/test/sanitizer_common/TestCases/Linux/
decorate_proc_maps.cc 16 ssize_t got = read(in_fd, buf, kBufSize); local
17 if (got > 0) {
18 write(out_fd, buf, got);
19 } else if (got == 0) {
  /external/e2fsprogs/contrib/
make-sparse.c 29 int got, total = 0; local
33 got = read(fd, buf, count);
34 if (got == -1) {
39 if (got == 0) {
45 buf += got;
46 total += got;
47 count -= got;
54 int fd, got, i; local
68 got = full_read(0, buf, sizeof(buf));
69 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) {
35 GOTPLTEntry* got = &(llvm::cast<GOTPLTEntry>((*it))); local
36 *buffer = static_cast<uint32_t>(got->getValue());
37 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/tests/
backtrace-dwarf.c 156 pid_t got = waitpid (pid, &status, 0); local
158 assert (got == pid);
  /external/ltp/utils/ffsb-6.0-rc2/
rand.c 49 int got = 0; local
50 got = read(randfd, state->mt, state->size);
51 if (got != state->size) {
56 for (i = got; i < state->size; i += 4) {
  /frameworks/base/core/java/com/android/internal/util/
TokenBucket.java 110 int got = mAvailable; local
112 return got;
  /system/tools/aidl/tests/
aidl_test_client_primitives.cpp 116 << "\". Got status=" << status.toString8() << endl;
172 sp<INamedCallback> got; local
174 status = s->GetOtherTestService(names[i], &got);
180 input.push_back(INamedCallback::asBinder(got));
  /art/compiler/optimizing/
graph_test.cc 41 HInstruction* got = new (allocator) HGoto(); local
42 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...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/zlib/
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/autotest/client/tests/linus_stress/
linus_stress.c 40 unsigned char got = *p++; local
41 if (got != c) {
46 differs = got;
52 printf("Expected %u, got %u\n", c, differs);
  /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/linux-kselftest/tools/testing/selftests/powerpc/primitives/
load_unaligned_zeropad.c 114 unsigned long got; local
120 got = load_unaligned_zeropad(p);
122 if (should != got)
123 printf("offset %u load_unaligned_zeropad returned 0x%lx, should be 0x%lx\n", page_offset, got, should);
  /external/pdfium/third_party/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)) {
  /external/toybox/toys/net/
ftpget.c 141 int p1, got = 0; local
143 sscanf(s, ",%u,%u)%n", &p1, &port, &got);
144 if (!got) continue;
  /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/base/core/tests/coretests/src/android/util/
LocalLogTest.java 81 String got = gotLines[i]; local
82 String msg = String.format("%s did not contain %s", quote(got), quote(want));
83 assertTrue(msg, got.contains(want));
  /frameworks/base/tests/net/java/com/android/server/connectivity/
NetdEventListenerServiceTest.java 96 String got = flushStatistics(); local
160 assertEquals(want, got);
204 String got = flushStatistics(); local
275 assertEquals(want, 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());
  /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());

Completed in 1501 milliseconds

1 2 3 4 5 6 7 8