Searched refs:got (Results 101 - 125 of 244) sorted by relevance

12345678910

/external/flatbuffers/tests/
H A Dpy_test.py240 def check(table, desc, want, got):
242 self.assertEqual(want, got, "%s != %s, %s" % (want, got, desc))
312 got = builder.Bytes[builder.Head():] # use the buffer directly
313 self.assertEqual(want, got)
1082 got = b.Bytes[b.Head():]
1105 self.assertEqual((len(want), want), (len(got), got))
1113 got = tab.GetVOffsetTSlot(0, 0)
1114 self.assertEqual(12, got, 'cas
[all...]
/external/deqp/modules/gles3/functional/
H A Des3fBufferObjectQueryTests.cpp48 void checkIntEquals (tcu::TestContext& testCtx, GLint got, GLint expected) argument
52 if (got != expected)
54 testCtx.getLog() << TestLog::Message << "// ERROR: Expected " << expected << "; got " << got << TestLog::EndMessage;
56 testCtx.setTestResult(QP_TEST_RESULT_FAIL, "got invalid value");
60 void checkPointerEquals (tcu::TestContext& testCtx, const void* got, const void* expected) argument
64 if (got != expected)
66 testCtx.getLog() << TestLog::Message << "// ERROR: Expected " << expected << "; got " << got << TestLog::EndMessage;
68 testCtx.setTestResult(QP_TEST_RESULT_FAIL, "got invali
[all...]
/external/elfutils/libdw/
H A Ddwarf_getlocation.c697 case 0: /* got location range. */
769 size_t got = 0; local
782 while (got < maxlocs
789 llbufs[got] = expr;
790 listlens[got] = expr_len;
792 ++got;
799 return got;
/external/pdfium/third_party/zlib_v128/
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)) {
/external/syslinux/core/i386/
H A Dsyslinux.ld347 .got : AT(__got_lma) {
349 KEEP (*(.got.plt))
350 KEEP (*(.got))
/external/syslinux/core/
H A Dsyslinux.ld333 .got : AT(__got_lma) {
335 KEEP (*(.got.plt))
336 KEEP (*(.got))
/external/syslinux/core/x86_64/
H A Dsyslinux.ld347 .got : AT(__got_lma) {
349 KEEP (*(.got.plt))
350 KEEP (*(.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)) {
/external/e2fsprogs/misc/
H A De2initrd_helper.c78 unsigned int got; local
107 retval = ext2fs_file_read(e2_file, buf, inode.i_size, &got);
116 ret_file->size = (int) got;
H A Dcreate_inode.c400 ssize_t got, blen; local
407 got = pread64(fd, buf, COPY_FILE_BUFLEN, off);
409 got = pread(fd, buf, COPY_FILE_BUFLEN, off);
411 got = my_pread(fd, buf, COPY_FILE_BUFLEN, off);
413 if (got < 0) {
417 for (bpos = 0, ptr = buf; bpos < got; bpos += fs->blocksize) {
419 if (blen > got - bpos)
420 blen = got - bpos;
/external/guice/core/test/com/google/inject/
H A DInjectorTest.java391 final AtomicReference<JustInTime> got = new AtomicReference<JustInTime>();
403 got.set(future.get());
409 assertNotNull(got.get());
/external/toybox/scripts/
H A Dconfig2help.c69 int got = 0; local
77 got++;
81 return got;
284 // If we've got both, collate and alphebetize
/external/curl/tests/server/
H A Drtspd.c363 logmsg("got unknown protocol %s", prot_str);
783 ssize_t got = 0; local
819 got = curlx_uztosz(pipereq_length);
827 got = sread(sock, reqbuf + req->offset, req->cl);
829 got = sread(sock, reqbuf + req->offset, REQBUFSIZ-1 - req->offset);
833 if(got == 0) {
837 else if(got < 0) {
849 logmsg("Read %zd bytes", got);
851 req->offset += (size_t)got;
864 if((req->offset == REQBUFSIZ-1) && (got >
[all...]
/external/elfutils/tests/
H A Dbacktrace.c276 pid_t got = waitpid (pid2, &status, __WALL);
278 assert (got == pid2);
344 pid_t got = waitpid (pid, &status, 0); local
346 assert (got == pid);
/external/libmicrohttpd/src/examples/
H A Ddemo.c690 ssize_t got; local
706 got = read (fd, file_data, sizeof (file_data));
707 if (-1 != got)
708 mime = magic_buffer (magic, file_data, got);
H A Ddemo_https.c691 ssize_t got; local
707 got = read (fd, file_data, sizeof (file_data));
708 if (-1 != got)
709 mime = magic_buffer (magic, file_data, got);
/external/syslinux/com32/include/sys/
H A Dmodule.h108 void *got; // The Global Offset Table member in struct:elf_module
/external/boringssl/src/crypto/cmac/
H A Dcmac_test.cc26 static void dump(const uint8_t *got, const uint8_t *want, size_t len) { argument
27 hexdump(stderr, "got :", got, len);
/external/e2fsprogs/debugfs/
H A Dcreate_inode.c400 ssize_t got, blen; local
407 got = pread64(fd, buf, COPY_FILE_BUFLEN, off);
409 got = pread(fd, buf, COPY_FILE_BUFLEN, off);
411 got = my_pread(fd, buf, COPY_FILE_BUFLEN, off);
413 if (got < 0) {
417 for (bpos = 0, ptr = buf; bpos < got; bpos += fs->blocksize) {
419 if (blen > got - bpos)
420 blen = got - bpos;
H A Dlogdump.c283 unsigned int got; local
295 got = retval;
305 retval = ext2fs_file_read(source->file, buf, size, &got);
312 if (got != size) {
314 "while reading journal", got, size);
/external/guava/guava-tests/test/com/google/common/hash/
H A DAbstractStreamingHasherTest.java242 byte[] got = out.toByteArray();
244 assertEquals(expected[i], got[i]);
/external/icu/icu4c/source/test/cintltst/
H A Dcloctst.c367 log_err("Wrong result from uloc_getDefault(). Expected \"en_US\", got \"%s\"\n", n_en_US);
374 "Expected \"en_US\", got \"%s\"\n", n_en_US);
377 log_err("Wrong result from uloc_getDefault(). Expected \"fr_FR\", got %s\n", n_fr_FR);
383 log_err("Wrong result from uloc_getDefault(). Expected \"en_US\", got \"%s\"\n", n_en_US);
720 log_data_err("FAIL in uloc_getDisplayName(%s,%s,..) expected '%s' got '%s' (Are you missing data?)\n", aLocale, testL[i], expect[i], austrdup(buffer));
722 log_verbose("pass in uloc_getDisplayName(%s,%s,..) got '%s'\n", aLocale, testL[i], expect[i]);
784 log_err("with buffer of length %d, expected length %d but got %d", i, expectedLen, len);
840 log_err("Initial check of ISO3 language failed: expected \"eng\", got %s \n", testValue1);
859 log_err("get/setDataDirectory() failed: expected \"eng\", got \" %s \" \n", testValue3);
1000 log_data_err(" Display Language mismatch: got
1395 UChar* got=0; local
[all...]
/external/icu/icu4c/source/test/intltest/
H A Ddcfmapts.cpp511 void IntlTestDecimalFormatAPI::verify(const UnicodeString& message, const UnicodeString& got, double expected){ argument
512 logln((UnicodeString)message + got + (UnicodeString)" Expected : " + expected);
515 if(got != expectedStr ) {
516 errln((UnicodeString)"ERROR: " + message + got + (UnicodeString)" Expected : " + expectedStr);
520 void IntlTestDecimalFormatAPI::verifyString(const UnicodeString& message, const UnicodeString& got, UnicodeString& expected){ argument
521 logln((UnicodeString)message + got + (UnicodeString)" Expected : " + expected);
522 if(got != expected ) {
523 errln((UnicodeString)"ERROR: " + message + got + (UnicodeString)" Expected : " + expected);
H A Dastrotst.cpp309 // Compute delta of what we got to the USNO data, in seconds
464 double got = astro->getMoonAge(); local
466 if(!(got>expectedAge-precision && got<expectedAge+precision)){
468 " got " + got);
471 " got " + got);
/external/libhevc/common/arm64/
H A Dihevc_deblk_chroma_horz.s85 adrp x3, :got:gai4_ihevc_qp_table
120 adrp x3, :got:gai4_ihevc_tc_table

Completed in 893 milliseconds

12345678910