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

1 2 3 4 5 6 7 8 9

  /prebuilts/ndk/r16/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/vulkan-validation-layers/layers/
vk_layer_data.h 31 typename std::unordered_map<void *, DATA_T *>::const_iterator got; local
34 got = layer_data_map.find(data_key);
36 if (got == layer_data_map.end()) {
40 debug_data = got->second;
48 auto got = layer_data_map.find(data_key); local
49 assert(got != layer_data_map.end());
51 delete got->second;
52 layer_data_map.erase(got);
  /device/google/cuttlefish_common/host/libs/vadb/
usb_cmd_data_transfer.cpp 67 int32_t got = 0; local
69 while (got < len) {
70 auto packetsize = fd->Read(&data_[got], len - got);
71 got += packetsize;
  /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) {
  /prebuilts/go/darwin-x86/test/
method7.go 12 var got, want string var
21 func (S) m() { got += " m()" }
22 func (S) m1(s string) { got += " m1(" + s + ")" }
26 func (T) m2() { got += " m2()" }
53 if got != want {
54 panic("got" + got + ", want" + want)
  /prebuilts/go/linux-x86/test/
method7.go 12 var got, want string var
21 func (S) m() { got += " m()" }
22 func (S) m1(s string) { got += " m1(" + s + ")" }
26 func (T) m2() { got += " m2()" }
53 if got != want {
54 panic("got" + got + ", want" + want)
  /frameworks/base/tests/net/java/android/net/util/
SharedLogTest.java 85 String got = lines[i]; local
87 assertTrue(String.format("'%s' did not contain '%s'", got, want), got.endsWith(want));
88 assertTrue(String.format("'%s' did not contain a %s timestamp", got, TIMESTAMP),
89 got.replaceFirst(TIMESTAMP_PATTERN, TIMESTAMP).contains(TIMESTAMP));
  /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/expat/tests/
structdata.c 124 sprintf(buffer, "wrong number of entries: got %d, expected %d",
131 const StructDataEntry *got = &storage->entries[i]; local
134 if (xcstrcmp(got->str, want->str) != 0) {
136 fail("structure got bad string");
138 if (got->data0 != want->data0 ||
139 got->data1 != want->data1 ||
140 got->data2 != want->data2) {
143 "' expected (%d,%d,%d), got (%d,%d,%d)",
144 got->str,
146 got->data0, got->data1, got->data2)
    [all...]
  /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) {
  /external/tensorflow/tensorflow/compiler/xla/
util_test.cc 34 string got = Reindent(original, " "); local
37 EXPECT_EQ(want, got);
  /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 50 HInstruction* got = new (GetAllocator()) HGoto(); local
51 block->AddInstruction(got);
280 HInstruction* got = block->GetLastInstruction(); local
281 ASSERT_TRUE(got->IsControlFlow());
285 block->InsertInstructionBefore(first_instruction, got);
290 ASSERT_EQ(block->GetLastInstruction(), got);
291 ASSERT_EQ(first_instruction->GetNext(), got);
293 ASSERT_EQ(got->GetNext(), nullptr);
294 ASSERT_EQ(got->GetPrevious(), first_instruction);
298 block->InsertInstructionBefore(second_instruction, got);
    [all...]
  /device/google/cuttlefish_common/host/libs/usbip/
client.cpp 190 size_t got = 0; local
192 while (got < payload.size()) {
194 fd_->Recv(&payload[got], payload.size() - got, MSG_NOSIGNAL);
202 got += read;
  /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/libcxx/test/std/experimental/language.support/support.coroutines/end.to.end/
generator.pass.cpp 77 std::vector<int> got; local
79 got.push_back(x);
80 assert(expect == got);

Completed in 412 milliseconds

1 2 3 4 5 6 7 8 9