/third_party/libwebsockets/win32port/zlib/ |
H A D | adler32.c | 14 #define BASE 65521UL /* largest prime smaller than 65536 */
macro 16 /* NMAX is the largest n such that 255n(n+1)/2 + (n+1)(BASE-1) <= 2^32-1 */
28 if (a >= (BASE << 16)) a -= (BASE << 16); \
29 if (a >= (BASE << 15)) a -= (BASE << 15); \
30 if (a >= (BASE << 14)) a -= (BASE << 14); \
31 if (a >= (BASE << 13)) a -= (BASE << 1 [all...] |
/third_party/curl/tests/unit/ |
H A D | unit1303.c | 51 /* BASE is just a define to make us fool around with decently large number so 53 #define BASE 1000000 macro 86 {BASE + 4, 0, 10000, 8000, FALSE, 6000, "6 seconds should be left"}, 87 {BASE + 4, 990000, 10000, 8000, FALSE, 5010, "5010 ms should be left"}, 88 {BASE + 10, 0, 10000, 8000, FALSE, -1, "timeout is -1, expired"}, 89 {BASE + 12, 0, 10000, 8000, FALSE, -2000, "-2000, overdue 2 seconds"}, 92 {BASE + 4, 0, 10000, 8000, TRUE, 4000, "4 seconds should be left"}, 93 {BASE + 4, 990000, 10000, 8000, TRUE, 3010, "3010 ms should be left"}, 94 {BASE + 8, 0, 10000, 8000, TRUE, -1, "timeout is -1, expired"}, 95 {BASE [all...] |
/third_party/node/deps/v8/third_party/zlib/ |
H A D | adler32.c | 12 #define BASE 65521U /* largest prime smaller than 65536 */ macro 14 /* NMAX is the largest n such that 255n(n+1)/2 + (n+1)(BASE-1) <= 2^32-1 */ 25 /* note that this assumes BASE is 65521, where 65536 % 65521 == 15 36 if (a >= BASE) a -= BASE; \ 54 if (a >= BASE) a -= BASE; \ 57 # define MOD(a) a %= BASE 58 # define MOD28(a) a %= BASE 59 # define MOD63(a) a %= BASE [all...] |
H A D | adler32_simd.c | 34 * and s2 also need to be computed modulo the adler BASE value (reduced). If 48 #define BASE 65521U macro 49 /* NMAX is the largest n such that 255n(n+1)/2 + (n+1)(BASE-1) <= 2^32-1 */ 93 * processed before s2 must be reduced modulo BASE. in adler32_simd_() 152 s1 %= BASE; in adler32_simd_() 153 s2 %= BASE; in adler32_simd_() 188 if (s1 >= BASE) in adler32_simd_() 189 s1 -= BASE; in adler32_simd_() 190 s2 %= BASE; in adler32_simd_() 223 if (s1 >= BASE) in adler32_simd_() [all...] |
/third_party/node/deps/zlib/ |
H A D | adler32.c | 10 #define BASE 65521U /* largest prime smaller than 65536 */ macro 12 /* NMAX is the largest n such that 255n(n+1)/2 + (n+1)(BASE-1) <= 2^32-1 */ 23 /* note that this assumes BASE is 65521, where 65536 % 65521 == 15 34 if (a >= BASE) a -= BASE; \ 52 if (a >= BASE) a -= BASE; \ 55 # define MOD(a) a %= BASE 56 # define MOD28(a) a %= BASE 57 # define MOD63(a) a %= BASE [all...] |
H A D | adler32_simd.c | 34 * and s2 also need to be computed modulo the adler BASE value (reduced). If 48 #define BASE 65521U macro 49 /* NMAX is the largest n such that 255n(n+1)/2 + (n+1)(BASE-1) <= 2^32-1 */ 93 * processed before s2 must be reduced modulo BASE. in adler32_simd_() 152 s1 %= BASE; in adler32_simd_() 153 s2 %= BASE; in adler32_simd_() 188 if (s1 >= BASE) in adler32_simd_() 189 s1 -= BASE; in adler32_simd_() 190 s2 %= BASE; in adler32_simd_() 223 if (s1 >= BASE) in adler32_simd_() [all...] |
/third_party/zlib/ |
H A D | adler32.c | 10 #define BASE 65521U /* largest prime smaller than 65536 */ macro 12 /* NMAX is the largest n such that 255n(n+1)/2 + (n+1)(BASE-1) <= 2^32-1 */ 23 /* note that this assumes BASE is 65521, where 65536 % 65521 == 15 34 if (a >= BASE) a -= BASE; \ 52 if (a >= BASE) a -= BASE; \ 55 # define MOD(a) a %= BASE 56 # define MOD28(a) a %= BASE 57 # define MOD63(a) a %= BASE [all...] |
/third_party/skia/third_party/externals/zlib/ |
H A D | adler32.c | 12 #define BASE 65521U /* largest prime smaller than 65536 */ macro 14 /* NMAX is the largest n such that 255n(n+1)/2 + (n+1)(BASE-1) <= 2^32-1 */ 25 /* note that this assumes BASE is 65521, where 65536 % 65521 == 15 36 if (a >= BASE) a -= BASE; \ 54 if (a >= BASE) a -= BASE; \ 57 # define MOD(a) a %= BASE 58 # define MOD28(a) a %= BASE 59 # define MOD63(a) a %= BASE [all...] |
H A D | adler32_simd.c | 34 * and s2 also need to be computed modulo the adler BASE value (reduced). If 48 #define BASE 65521U macro 49 /* NMAX is the largest n such that 255n(n+1)/2 + (n+1)(BASE-1) <= 2^32-1 */ 93 * processed before s2 must be reduced modulo BASE. in adler32_simd_() 152 s1 %= BASE; in adler32_simd_() 153 s2 %= BASE; in adler32_simd_() 188 if (s1 >= BASE) in adler32_simd_() 189 s1 -= BASE; in adler32_simd_() 190 s2 %= BASE; in adler32_simd_() 223 if (s1 >= BASE) in adler32_simd_() [all...] |
/third_party/node/deps/openssl/openssl/Configurations/platform/ |
H A D | Windows.pm | 9 require platform::BASE; 10 @ISA = qw(platform::BASE); 24 # Other extra that aren't defined in platform::BASE 32 my $in_libname = platform::BASE->staticname($_[1]); 38 return platform::BASE->staticname($_[1]) 49 return platform::BASE::__concat(platform::BASE->sharedname($_[1]), 56 return platform::BASE::__isshared($_[1]) ? $_[1] : undef; 60 return platform::BASE::__concat($_[0]->sharedname_import($_[1]),
|
H A D | VMS.pm | 9 require platform::BASE; 10 @ISA = qw(platform::BASE); 29 # Other extra that aren't defined in platform::BASE 41 my $in_libname = platform::BASE->staticname($_[1]); 45 return platform::BASE::__concat($_[0]->osslprefix(), 46 platform::BASE->staticname($_[1]), 58 return platform::BASE::__concat($_[0]->osslprefix(), 59 platform::BASE->sharedname($_[1]),
|
H A D | Unix.pm | 9 require platform::BASE; 10 @ISA = qw(platform::BASE); 30 # Other extra that aren't defined in platform::BASE 47 my $in_libname = platform::BASE->staticname($_[1]); 53 return platform::BASE->staticname($_[1]); 57 return platform::BASE::__concat(platform::BASE->sharedname($_[1]), 62 return platform::BASE::__isshared($_[1]) ? $_[1] : undef; 80 return platform::BASE::__concat($simplename, $simpleext);
|
/third_party/openssl/Configurations/platform/ |
H A D | Windows.pm | 9 require platform::BASE; 10 @ISA = qw(platform::BASE); 24 # Other extra that aren't defined in platform::BASE 32 my $in_libname = platform::BASE->staticname($_[1]); 38 return platform::BASE->staticname($_[1]) 49 return platform::BASE::__concat(platform::BASE->sharedname($_[1]), 56 return platform::BASE::__isshared($_[1]) ? $_[1] : undef; 60 return platform::BASE::__concat($_[0]->sharedname_import($_[1]),
|
H A D | VMS.pm | 9 require platform::BASE; 10 @ISA = qw(platform::BASE); 29 # Other extra that aren't defined in platform::BASE 41 my $in_libname = platform::BASE->staticname($_[1]); 45 return platform::BASE::__concat($_[0]->osslprefix(), 46 platform::BASE->staticname($_[1]), 58 return platform::BASE::__concat($_[0]->osslprefix(), 59 platform::BASE->sharedname($_[1]),
|
H A D | Unix.pm | 9 require platform::BASE; 10 @ISA = qw(platform::BASE); 30 # Other extra that aren't defined in platform::BASE 47 my $in_libname = platform::BASE->staticname($_[1]); 53 return platform::BASE->staticname($_[1]); 57 return platform::BASE::__concat(platform::BASE->sharedname($_[1]), 62 return platform::BASE::__isshared($_[1]) ? $_[1] : undef; 80 return platform::BASE::__concat($simplename, $simpleext);
|
/third_party/mesa3d/src/compiler/nir/ |
H A D | nir_intrinsics.py | 149 # The amount of data, starting from BASE or RANGE_BASE, that this 497 # - BASE: address of the task_payload variable used. 501 intrinsic("launch_mesh_workgroups", src_comp=[3], indices=[BASE, RANGE]) 545 # src[] = { query, committed } BASE=nir_ray_query_value 546 intrinsic("rq_load", src_comp=[-1, 1], dest_comp=0, indices=[BASE,COLUMN]) 582 intrinsic(name, src_comp=[1], dest_comp=1, indices=[BASE], flags=flags) 586 intrinsic(name, src_comp=[1, 1], dest_comp=1, indices=[BASE]) 590 intrinsic(name, src_comp=[1, 1, 1], dest_comp=1, indices=[BASE]) 735 intrinsic("shared_atomic_" + name, src_comp=[1, 1], dest_comp=1, indices=[BASE]) 736 intrinsic("task_payload_atomic_" + name, src_comp=[1, 1], dest_comp=1, indices=[BASE]) [all...] |
/third_party/node/deps/openssl/openssl/Configurations/platform/Windows/ |
H A D | MSVC.pm | 21 return platform::BASE::__concat(platform::BASE->sharedname($_[1]), 29 return platform::BASE::__concat($_[0]->staticname($_[1]), $_[0]->pdbext()); 33 return platform::BASE::__concat($_[0]->sharedname($_[1]), $_[0]->pdbext()); 37 return platform::BASE::__concat($_[0]->dsoname($_[1]), $_[0]->pdbext()); 41 return platform::BASE::__concat($_[0]->binname($_[1]), $_[0]->pdbext());
|
/third_party/openssl/Configurations/platform/Windows/ |
H A D | MSVC.pm | 21 return platform::BASE::__concat(platform::BASE->sharedname($_[1]), 29 return platform::BASE::__concat($_[0]->staticname($_[1]), $_[0]->pdbext()); 33 return platform::BASE::__concat($_[0]->sharedname($_[1]), $_[0]->pdbext()); 37 return platform::BASE::__concat($_[0]->dsoname($_[1]), $_[0]->pdbext()); 41 return platform::BASE::__concat($_[0]->binname($_[1]), $_[0]->pdbext());
|
/third_party/python/Lib/test/ |
H A D | test_pathlib.py | 1353 BASE = os.path.realpath(TESTFN) variable 1354 join = lambda *x: os.path.join(BASE, *x) 1384 # (BASE) 1407 os_helper.rmtree(BASE) 1409 os.mkdir(BASE) 1473 getcwd.return_value = BASE 1476 self.assertEqual(str(P().absolute()), BASE) 1477 self.assertEqual(str(P('.').absolute()), BASE) 1478 self.assertEqual(str(P('a').absolute()), os.path.join(BASE, 'a')) 1479 self.assertEqual(str(P('a', 'b', 'c').absolute()), os.path.join(BASE, ' [all...] |
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/ |
H A D | Punycode.java | 23 private static final int BASE = 36; field in Punycode 53 for(; delta>((BASE-TMIN)*TMAX)/2; count+=BASE) { in adaptBias() 54 delta/=(BASE-TMIN); in adaptBias() 57 return count+(((BASE-TMIN+1)*delta)/(delta+SKEW)); in adaptBias() 62 * in the range 0 to BASE-1, or a negative value if cp is invalid. 99 * range 0 to BASE-1. The lowercase form is used unless the uppercase flag is 214 for(q=delta, k=BASE; /* no condition */; k+=BASE) { in encode() 237 dest.append(digitToBasic(t+(q-t)%(BASE in encode() [all...] |
/third_party/icu/icu4c/source/common/ |
H A D | punycode.cpp | 64 #define BASE 36 macro 91 * range 0 to BASE-1. The lowercase form is used unless the uppercase flag is 111 * in the range 0 to BASE-1, or a negative value if cp is invalid. 164 for(count=0; delta>((BASE-TMIN)*TMAX)/2; count+=BASE) { in adaptBias() 165 delta/=(BASE-TMIN); in adaptBias() 168 return count+(((BASE-TMIN+1)*delta)/(delta+SKEW)); in adaptBias() 325 for(q=delta, k=BASE; /* no condition */; k+=BASE) { in u_strToPunycode() 349 dest[destLength]=digitToBasic(t+(q-t)%(BASE in u_strToPunycode() [all...] |
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/impl/ |
H A D | Punycode.java | 24 private static final int BASE = 36; field in Punycode 54 for(; delta>((BASE-TMIN)*TMAX)/2; count+=BASE) { in adaptBias() 55 delta/=(BASE-TMIN); in adaptBias() 58 return count+(((BASE-TMIN+1)*delta)/(delta+SKEW)); in adaptBias() 64 * BASE-1, or -1 if b is does not represent a value. 109 * range 0 to BASE-1. The lowercase form is used unless the uppercase flag is 214 for(q=delta, k=BASE; /* no condition */; k+=BASE) { in encode() 237 dest.append(digitToBasic(t+(q-t)%(BASE in encode() [all...] |
/third_party/node/deps/icu-small/source/common/ |
H A D | punycode.cpp | 64 #define BASE 36 macro 91 * range 0 to BASE-1. The lowercase form is used unless the uppercase flag is 111 * in the range 0 to BASE-1, or a negative value if cp is invalid. 164 for(count=0; delta>((BASE-TMIN)*TMAX)/2; count+=BASE) { in adaptBias() 165 delta/=(BASE-TMIN); in adaptBias() 168 return count+(((BASE-TMIN+1)*delta)/(delta+SKEW)); in adaptBias() 325 for(q=delta, k=BASE; /* no condition */; k+=BASE) { in u_strToPunycode() 349 dest[destLength]=digitToBasic(t+(q-t)%(BASE in u_strToPunycode() [all...] |
/third_party/gn/src/base/strings/ |
H A D | string_number_conversions.cc | 60 template <typename CHAR, int BASE, bool BASE_LTE_10> 64 template <typename CHAR, int BASE> 65 class BaseCharToDigit<CHAR, BASE, true> { 68 if (c >= '0' && c < '0' + BASE) { in Convert() 77 template <typename CHAR, int BASE> 78 class BaseCharToDigit<CHAR, BASE, false> { 83 } else if (c >= 'a' && c < 'a' + BASE - 10) { in Convert() 85 } else if (c >= 'A' && c < 'A' + BASE - 10) { in Convert() 94 template <int BASE, typename CHAR> 96 return BaseCharToDigit<CHAR, BASE, BAS in CharToDigit() [all...] |
/third_party/mbedtls/docs/architecture/psa-migration/ |
H A D | syms.sh | 36 BASE=$1 37 if [ -f $BASE.o ]; then 38 echo $BASE.o 39 elif [ -f $BASE.a ]; then 40 echo $BASE.a
|