/third_party/libwebsockets/win32port/zlib/ |
H A D | inflate.c | 1327 unsigned got;
1330 got = *have;
1332 while (next < len && got < 4) {
1333 if ((int)(buf[next]) == (got < 2 ? 0 : 0xff))
1334 got++;
1336 got = 0;
1338 got = 4 - got;
1341 *have = got;
|
H A D | 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 */
|
/third_party/python/Lib/test/ |
H A D | test_struct.py | 222 got = pack(format, x) 223 self.assertEqual(got, expected) 226 retrieved = unpack(format, got)[0] 231 b'\x01' + got) 350 got = struct.pack(code, input) 351 self.assertEqual(got, expected) 352 (got,) = struct.unpack(code, got) 353 self.assertEqual(got, expectedback)
|
H A D | test_tuple.py | 109 got = hash(t) 111 if got != expected: 112 msg = f"FAIL hash({t!r}) == {got} != {expected}" 149 got = (collisions, pileup) 155 if expected is not None and got != expected: 157 prefix += f"FAIL {got} != {expected}; "
|
H A D | test_math.py | 106 def ulp_abs_check(expected, got, ulp_tol, abs_tol): 107 """Given finite floats `expected` and `got`, check that they're 113 ulp_error = abs(to_ulps(expected) - to_ulps(got)) 114 abs_error = abs(expected - got) 174 def result_check(expected, got, ulp_tol=5, abs_tol=0.0): 176 """Compare arguments expected and got, as floats, if either 188 if got == expected: 194 if isinstance(expected, float) and isinstance(got, int): 195 got = float(got) [all...] |
/third_party/zlib/examples/ |
H A D | gzlog.c | 611 uint got, max; in log_compress() local 662 got = DICT - strm.avail_out; in log_compress() 663 if (got && write(log->fd, buf, got) != got) { in log_compress()
|
/third_party/elfutils/tests/ |
H A D | backtrace.c | 121 "case 0: expected symname 'raise' got '%s'\n", symname); in callback_verify() 130 "case 1: expected symname 'sigusr2' got '%s'\n", symname); in callback_verify() 144 "case 3: expected symname 'raise' got '%s'\n", symname); in callback_verify() 153 "case 3: expected symname2 'jmp' got '%s'\n", symname2); in callback_verify() 171 "case 4: expected symname 'stdarg' got '%s'\n", symname); in callback_verify() 180 "case 5: expected symname 'backtracegen' got '%s'\n", in callback_verify() 337 pid_t got = waitpid (pid2, &status, __WALL); in prepare_thread() 338 assert (got == pid2); in prepare_thread() 403 pid_t got = waitpid (pid, &status, 0); in exec_dump() local 404 assert (got in exec_dump() [all...] |
/third_party/python/Lib/ctypes/test/ |
H A D | test_functions.py | 302 got = result, ptout.x, ptout.y 304 self.assertEqual(got, expected) 312 got = result, ptout.x, ptout.y 314 self.assertEqual(got, expected)
|
/third_party/skia/third_party/externals/microhttpd/src/examples/ |
H A D | demo.c | 690 ssize_t got; in generate_page() local 706 got = read (fd, file_data, sizeof (file_data)); in generate_page() 707 if (-1 != got) in generate_page() 708 mime = magic_buffer (magic, file_data, got); in generate_page()
|
H A D | demo_https.c | 691 ssize_t got; in generate_page() local 707 got = read (fd, file_data, sizeof (file_data)); in generate_page() 708 if (-1 != got) in generate_page() 709 mime = magic_buffer (magic, file_data, got); in generate_page()
|
/third_party/icu/icu4c/source/test/cintltst/ |
H A D | cloctst.c | 399 log_err("Wrong result from uloc_getDefault(). Expected \"en_US\", got \"%s\"\n", n_en_US); in TestNullDefault() 406 "Expected \"en_US\", got \"%s\"\n", n_en_US); in TestNullDefault() 409 log_err("Wrong result from uloc_getDefault(). Expected \"fr_FR\", got %s\n", n_fr_FR); in TestNullDefault() 415 log_err("Wrong result from uloc_getDefault(). Expected \"en_US\", got \"%s\"\n", n_en_US); in TestNullDefault() 768 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)); in TestDisplayNames() 770 log_verbose("pass in uloc_getDisplayName(%s,%s,..) got '%s'\n", aLocale, testL[i], expect[i]); in TestDisplayNames() 832 log_err("with buffer of length %d, expected length %d but got %d", i, expectedLen, len); in TestDisplayNames() 979 log_err("Initial check of ISO3 language failed: expected \"eng\", got %s \n", testValue1); in TestDataDirectory() 998 log_err("get/setDataDirectory() failed: expected \"eng\", got \" %s \" \n", testValue3); in TestDataDirectory() 1139 log_data_err(" Display Language mismatch: got in doTestDisplayNames() 1600 UChar* got=0; TestVariantParsing() local [all...] |
/test/testfwk/arkxtest/jsunit/src/module/assert/ |
H A D | assertPromiseIsRejected.js | 26 function (got) {
|
H A D | assertPromiseIsResolved.js | 27 function (got) {
|
H A D | assertPromiseIsRejectedWith.js | 33 function (got) {
|
/third_party/elfutils/libdw/ |
H A D | dwarf_getlocation.c | 841 case 0: /* got location range. */ in getlocations_addr() 932 size_t got = 0; in dwarf_getlocation_addr() local 945 while (got < maxlocs in dwarf_getlocation_addr() 952 llbufs[got] = expr; in dwarf_getlocation_addr() 953 listlens[got] = expr_len; in dwarf_getlocation_addr() 955 ++got; in dwarf_getlocation_addr() 962 return got; in dwarf_getlocation_addr()
|
/third_party/curl/lib/ |
H A D | smb.h | 48 size_t got; member
|
/third_party/musl/arch/loongarch64/ |
H A D | reloc.h | 24 #define GETFUNCSYM(fp, sym, got) __asm__ ( \
|
/third_party/musl/arch/or1k/ |
H A D | reloc.h | 17 #define GETFUNCSYM(fp, sym, got) __asm__ ( \
|
/third_party/musl/arch/i386/ |
H A D | reloc.h | 18 #define GETFUNCSYM(fp, sym, got) __asm__ ( \
|
/third_party/musl/arch/microblaze/ |
H A D | reloc.h | 22 #define GETFUNCSYM(fp, sym, got) __asm__ ( \
|
/third_party/musl/arch/x32/ |
H A D | reloc.h | 28 #define GETFUNCSYM(fp, sym, got) __asm__ ( \
|
/third_party/musl/arch/x86_64/ |
H A D | reloc.h | 17 #define GETFUNCSYM(fp, sym, got) __asm__ ( \
|
/third_party/icu/icu4c/source/test/intltest/ |
H A D | restsnew.cpp | 399 UnicodeString got=bundle.getNextString(err); in TestIteration() local 410 got=rowbundle.getNextString(err); in TestIteration() 415 CONFIRM_EQ(got, expected); in TestIteration() 425 CONFIRM_EQ(got, expected); in TestIteration() 613 UnicodeString got=ures_getNextUnicodeString(bundle, &key, &err); in TestOtherAPI() local 624 got=ures_getNextUnicodeString(rowbundle, &key, &err); in TestOtherAPI() 632 CONFIRM_EQ(got, expected); in TestOtherAPI() 644 CONFIRM_EQ(got, expected); in TestOtherAPI()
|
/third_party/musl/arch/m68k/ |
H A D | reloc.h | 26 #define GETFUNCSYM(fp, sym, got) __asm__ ( \
|
/third_party/musl/arch/mipsn32/ |
H A D | reloc.h | 38 #define GETFUNCSYM(fp, sym, got) __asm__ ( \
|