Searched defs:got (Results 1 - 25 of 94) sorted by relevance

1234

/external/vulkan-validation-layers/layers/
H A Dvk_layer_data.h35 typename std::unordered_map<void *, DATA_T *>::const_iterator got; local
38 got = layer_data_map.find(data_key);
40 if (got == layer_data_map.end()) {
44 debug_data = got->second;
/external/compiler-rt/test/sanitizer_common/TestCases/Posix/
H A Ddecorate_proc_maps.cc16 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/deqp/modules/egl/
H A DteglApiCase.hpp55 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); } argument
63 inline void expectFalse (eglw::EGLBoolean got) { expectBoolean(EGL_FALSE, got); } argument
H A DteglApiCase.cpp107 void ApiCase::expectBoolean (EGLBoolean expected, EGLBoolean got) argument
109 if (expected != got)
111 m_testCtx.getLog() << TestLog::Message << "// ERROR expected: " << eglu::getBooleanStr(expected) << ", Got: " << eglu::getBooleanStr(got) << TestLog::EndMessage;
117 void ApiCase::expectNoContext (EGLContext got) argument
119 if (got != EGL_NO_CONTEXT)
124 eglDestroyContext(getDisplay(), got); local
128 void ApiCase::expectNoSurface (EGLSurface got) argument
130 if (got != EGL_NO_SURFACE)
135 eglDestroySurface(getDisplay(), got); local
139 void ApiCase::expectNoDisplay (EGLDisplay got) argument
149 expectNull(const void* got) argument
[all...]
H A DteglNegativePartialUpdateTests.cpp67 void expectBoolean (EGLBoolean expected, EGLBoolean got);
68 inline void expectTrue (eglw::EGLBoolean got) { expectBoolean(EGL_TRUE, got); } argument
69 inline void expectFalse (eglw::EGLBoolean got) { expectBoolean(EGL_FALSE, got); } argument
216 void NegativePartialUpdateTest::expectBoolean (EGLBoolean expected, EGLBoolean got) argument
218 if (expected != got)
220 m_testCtx.getLog() << TestLog::Message << "// ERROR expected: " << eglu::getBooleanStr(expected) << ", Got: " << eglu::getBooleanStr(got) << TestLog::EndMessage;
/external/e2fsprogs/contrib/
H A Dmake-sparse.c25 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
[all...]
/external/ltrace/
H A Ddebug.c63 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/
H A Dnohugepage_test.cc38 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/vboot_reference/host/lib/
H A Dhost_misc.c63 char* got; local
70 got = fgets(dest, size, f);
72 return got;
/external/autotest/client/tests/linus_stress/
H A Dlinus_stress.c40 unsigned char got = *p++; local
41 if (got != c) {
46 differs = got;
52 printf("Expected %u, got %u\n", c, differs);
/external/boringssl/src/crypto/cmac/
H A Dcmac_test.cc25 static void dump(const uint8_t *got, const uint8_t *want, size_t len) { argument
26 hexdump(stderr, "got :", got, len);
/external/compiler-rt/test/BlocksRuntime/
H A Dfail.c56 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/elfutils/tests/
H A Dbacktrace-dwarf.c156 pid_t got = waitpid (pid, &status, 0); local
158 assert (got == pid);
/external/opencv3/3rdparty/zlib/
H A Dgzwrite.c74 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)) {
H A Dgzread.c54 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/skia/tests/
H A DFloat16Test.cpp80 float got = SkHalfToFloat_01(h)[0]; local
81 if (got != f) {
84 u(got), got,
/external/zlib/src/
H A Dgzwrite.c74 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)) {
H A Dgzread.c54 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/deqp/modules/gles2/functional/
H A Des2fFboStateQueryTests.cpp46 void checkIntEquals (tcu::TestContext& testCtx, GLint got, GLint expected) argument
50 if (got != expected)
52 testCtx.getLog() << TestLog::Message << "// ERROR: Expected " << expected << "; got " << got << TestLog::EndMessage;
54 testCtx.setTestResult(QP_TEST_RESULT_FAIL, "got invalid value");
/external/e2fsprogs/util/
H A Dcopy_sparse.c67 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
[all...]
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/normalizer/
H A DConformanceTest.java426 * @param got value received
429 * @returns true if got == exp
431 private boolean assertEqual(String op, String s, String got, argument
433 if (exp.equals(got)) {
436 errln((" " + msg + ") " + op + "(" + s + ")=" + hex(got) +
H A DUnicodeNormalizerConformanceTest.java179 * @param got value received
182 * @returns true if got == exp
184 private boolean assertEqual(String op, String s, String got, argument
186 if (exp.equals(got)) {
189 errln((" " + msg + ") " + op + "(" + s + ")=" + hex(got) +
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/normalizer/
H A DUnicodeNormalizerConformanceTest.java175 * @param got value received
178 * @returns true if got == exp
180 private boolean assertEqual(String op, String s, String got, argument
182 if (exp.equals(got)) {
185 errln((" " + msg + ") " + op + "(" + s + ")=" + hex(got) +
/external/pdfium/third_party/zlib_v128/
H A Dgzread.c54 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/zlib/src/examples/
H A Denough.c206 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
[all...]

Completed in 881 milliseconds

1234