Home
last modified time | relevance | path

Searched refs:BASE (Results 1 – 25 of 191) sorted by relevance

12345678

/third_party/libwebsockets/win32port/zlib/
Dadler32.c14 #define BASE 65521UL /* largest prime smaller than 65536 */ macro
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 << 13); \
32 if (a >= (BASE << 12)) a -= (BASE << 12); \
33 if (a >= (BASE << 11)) a -= (BASE << 11); \
34 if (a >= (BASE << 10)) a -= (BASE << 10); \
35 if (a >= (BASE << 9)) a -= (BASE << 9); \
36 if (a >= (BASE << 8)) a -= (BASE << 8); \
[all …]
/third_party/curl/tests/unit/
Dunit1303.c53 #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 + 10, 0, 10000, 8000, TRUE, -2000, "-2000, overdue 2 seconds"},
98 {BASE + 4, 0, 10000, 0, FALSE, 6000, "6 seconds should be left"},
[all …]
/third_party/zlib/
Dadler32.c12 #define BASE 65521U /* largest prime smaller than 65536 */ macro
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
78 if (adler >= BASE)
79 adler -= BASE;
81 if (sum2 >= BASE)
82 sum2 -= BASE;
[all …]
/third_party/node/deps/zlib/
Dadler32.c10 #define BASE 65521U /* largest prime smaller than 65536 */ macro
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
85 if (adler >= BASE) in adler32_z()
86 adler -= BASE; in adler32_z()
88 if (sum2 >= BASE) in adler32_z()
89 sum2 -= BASE; in adler32_z()
[all …]
/third_party/node/deps/v8/third_party/zlib/
Dadler32.c12 #define BASE 65521U /* largest prime smaller than 65536 */ macro
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
91 if (adler >= BASE)
92 adler -= BASE;
94 if (sum2 >= BASE)
95 sum2 -= BASE;
[all …]
/third_party/skia/third_party/externals/zlib/
Dadler32.c12 #define BASE 65521U /* largest prime smaller than 65536 */ macro
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
91 if (adler >= BASE)
92 adler -= BASE;
94 if (sum2 >= BASE)
95 sum2 -= BASE;
[all …]
/third_party/glslang/Test/
Dspv.coopmatKHR_constructor.comp12 #define TESTCONST(T, BASE) \
13 …group, 8, 8, gl_MatrixUseA>(coopmat<float, gl_ScopeSubgroup, 8, 8, gl_MatrixUseA>(BASE+1.0)); \
14 …group, 8, 8, gl_MatrixUseA>(coopmat<float16_t, gl_ScopeSubgroup, 8, 8, gl_MatrixUseA>(BASE+2.0)); \
15 …group, 8, 8, gl_MatrixUseA>(coopmat<uint32_t, gl_ScopeSubgroup, 8, 8, gl_MatrixUseA>(BASE+3)); \
16 …group, 8, 8, gl_MatrixUseA>(coopmat<uint16_t, gl_ScopeSubgroup, 8, 8, gl_MatrixUseA>(BASE+4)); \
17 …group, 8, 8, gl_MatrixUseA>(coopmat<uint8_t, gl_ScopeSubgroup, 8, 8, gl_MatrixUseA>(BASE+5)); \
18 …group, 8, 8, gl_MatrixUseA>(coopmat<int32_t, gl_ScopeSubgroup, 8, 8, gl_MatrixUseA>(BASE+6)); \
19 …group, 8, 8, gl_MatrixUseA>(coopmat<int16_t, gl_ScopeSubgroup, 8, 8, gl_MatrixUseA>(BASE+7)); \
20 …opeSubgroup, 8, 8, gl_MatrixUseA>(coopmat<int8_t, gl_ScopeSubgroup, 8, 8, gl_MatrixUseA>(BASE+8));
31 #define TESTVAR(T, BASE) \
[all …]
/third_party/skia/third_party/externals/freetype/builds/windows/visualce/
Dfreetype.dsp37 # PROP BASE Use_MFC 0
38 # PROP BASE Use_Debug_Libraries 0
39 # PROP BASE Output_Dir "Release"
40 # PROP BASE Intermediate_Dir "Release"
41 # PROP BASE Target_Dir ""
47 # ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_MBCS" /D "_LIB" /YX /FD /c
50 # ADD BASE RSC /l 0x409 /d "NDEBUG"
53 # ADD BASE BSC32 /nologo
56 # ADD BASE LIB32 /nologo
61 # PROP BASE Use_MFC 0
[all …]
/third_party/mesa3d/src/compiler/nir/
Dnir_intrinsics.py501 intrinsic("launch_mesh_workgroups", src_comp=[3], indices=[BASE, RANGE])
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])
739 intrinsic("global_atomic_" + name + "_amd", src_comp=[1, 1, 1], dest_comp=1, indices=[BASE])
741 intrinsic("global_atomic_" + name + "_ir3", src_comp=[2, 1], dest_comp=1, indices=[BASE])
746 intrinsic("shared_atomic_" + name, src_comp=[1, 1, 1], dest_comp=1, indices=[BASE])
[all …]
/third_party/icu/icu4c/source/test/perf/ubrkperf/
Dubrkperfold.dsp35 # PROP BASE Use_MFC 0
36 # PROP BASE Use_Debug_Libraries 0
37 # PROP BASE Output_Dir "Release"
38 # PROP BASE Intermediate_Dir "Release"
39 # PROP BASE Target_Dir ""
47 # ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /FD /c
50 # ADD BASE RSC /l 0x409 /d "NDEBUG"
53 # ADD BASE BSC32 /nologo
56 # ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.…
69 # PROP BASE Use_MFC 0
[all …]
Dubrkperf20.dsp35 # PROP BASE Use_MFC 0
36 # PROP BASE Use_Debug_Libraries 0
37 # PROP BASE Output_Dir "Release"
38 # PROP BASE Intermediate_Dir "Release"
39 # PROP BASE Target_Dir ""
47 # ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /FD /c
50 # ADD BASE RSC /l 0x409 /d "NDEBUG"
53 # ADD BASE BSC32 /nologo
56 # ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.…
69 # PROP BASE Use_MFC 0
[all …]
Dubrkperf.dsp35 # PROP BASE Use_MFC 0
36 # PROP BASE Use_Debug_Libraries 0
37 # PROP BASE Output_Dir "Release"
38 # PROP BASE Intermediate_Dir "Release"
39 # PROP BASE Target_Dir ""
47 # ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /FD /c
50 # ADD BASE RSC /l 0x409 /d "NDEBUG"
53 # ADD BASE BSC32 /nologo
56 # ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.…
69 # PROP BASE Use_MFC 0
[all …]
/third_party/skia/third_party/externals/freetype/builds/windows/visualc/
Dfreetype.dsp34 # PROP BASE Use_MFC 0
35 # PROP BASE Use_Debug_Libraries 0
36 # PROP BASE Output_Dir "Release"
37 # PROP BASE Intermediate_Dir "Release"
38 # PROP BASE Target_Dir ""
46 # ADD BASE CPP /nologo /MD /W3 /O2 /D "WIN32" /D "NDEBUG" /FD /c
47 # SUBTRACT BASE CPP /YX /Yc /Yu
51 # ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /win32
54 # ADD BASE RSC /l 0x409 /d "NDEBUG"
57 # ADD BASE BSC32 /nologo
[all …]
/third_party/mbedtls/scripts/data_files/
Dvs6-main-template.dsp33 # PROP BASE Use_MFC 0
34 # PROP BASE Use_Debug_Libraries 0
35 # PROP BASE Output_Dir ""
36 # PROP BASE Intermediate_Dir "temp"
37 # PROP BASE Target_Dir ""
43 # ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_MBCS" /D "_LIB" /YX /FD /c
45 # ADD BASE RSC /l 0x40c /d "NDEBUG"
48 # ADD BASE BSC32 /nologo
51 # ADD BASE LIB32 /nologo
56 # PROP BASE Use_MFC 0
[all …]
Dvs6-app-template.dsp33 # PROP BASE Use_MFC 0
34 # PROP BASE Use_Debug_Libraries 0
35 # PROP BASE Output_Dir ""
36 # PROP BASE Intermediate_Dir "temp"
37 # PROP BASE Target_Dir ""
43 # ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c
45 # ADD BASE RSC /l 0x40c /d "NDEBUG"
48 # ADD BASE BSC32 /nologo
51 # ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.…
56 # PROP BASE Use_MFC 0
[all …]
/third_party/skia/third_party/externals/libpng/contrib/visupng/
DVisualPng.dsp34 # PROP BASE Use_MFC 0
35 # PROP BASE Use_Debug_Libraries 0
36 # PROP BASE Output_Dir "Release"
37 # PROP BASE Intermediate_Dir "Release"
38 # PROP BASE Ignore_Export_Lib 0
39 # PROP BASE Target_Dir ""
46 # ADD BASE CPP /nologo /W3 /O2 /I "..\.." /I "..\..\..\zlib" /D "WIN32" /D "NDEBUG" /D "PNG_NO_STDI…
47 # SUBTRACT BASE CPP /YX
50 # ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /win32
52 # ADD BASE RSC /l 0x409 /d "NDEBUG"
[all …]
/third_party/f2fs-tools/scripts/
Ddumpf2fs.sh5 BASE=0x200000
11 let addr=$BASE
16 let addr=$BASE+0x200000
20 let addr=$BASE
22 let addr=$BASE+0x200000
26 let addr=$BASE
30 let addr=$BASE+0x200000
34 let addr=$BASE
36 let addr=$BASE+0x200000
/third_party/icu/icu4c/source/test/testmap/
Dtestmap.dsp33 # PROP BASE Use_MFC 0
34 # PROP BASE Use_Debug_Libraries 0
35 # PROP BASE Output_Dir "Release"
36 # PROP BASE Intermediate_Dir "Release"
37 # PROP BASE Target_Dir ""
44 # ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c
46 # ADD BASE RSC /l 0x409 /d "NDEBUG"
49 # ADD BASE BSC32 /nologo
52 # ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.…
57 # PROP BASE Use_MFC 0
[all …]
/third_party/libcoap/doc/
DMakefile.am84 BASE=`basename $${FILE} | cut -d. -f 1` ;\
93 if [ -f $(top_builddir)/man/$${BASE}.html ]; then \
95 $(SED) -i 's^<h2>Name</h2>^<h2>NAME</h2>^g' $(top_builddir)/man/$${BASE}.html ;\
96 $(SED) -i 's^<h2>Synopsis</h2>^<h2>SYNOPSIS</h2>^g' $(top_builddir)/man/$${BASE}.html ;\
97 cp -f $(top_builddir)/man/$${BASE}.html $(top_builddir)/doc/man_html/$${BASE}.html ;\
99 echo "ERROR: $(top_builddir)/man/$${BASE}.html not found!";\
103 echo "/// @page man_$${BASE} $${MANUAL}" > $(top_builddir)/doc/man_tmp/$${MANUAL}.dox ;\
104 echo "/// @htmlinclude $${BASE}.html $${MANUAL}" >> $(top_builddir)/doc/man_tmp/$${MANUAL}.dox ;\
106 …echo " <tab type=\"user\" visible=\"yes\" url=\"@ref man_$${BASE}\" title=\"$${MANUAL} - $${S…
109 …echo " <td class=\"entry\" align=\"left\"> @ref man_$${BASE} </td><td class=\"desc\" align=\"lef…
[all …]
/third_party/skia/third_party/externals/icu/source/extra/scrptrun/
Dsrtest.dsp33 # PROP BASE Use_MFC 0
34 # PROP BASE Use_Debug_Libraries 0
35 # PROP BASE Output_Dir "Release"
36 # PROP BASE Intermediate_Dir "Release"
37 # PROP BASE Target_Dir ""
44 # ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c
46 # ADD BASE RSC /l 0x409 /d "NDEBUG"
49 # ADD BASE BSC32 /nologo
52 # ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.…
57 # PROP BASE Use_MFC 0
[all …]
/third_party/icu/icu4c/source/test/thaitest/
Dthaitest.dsp33 # PROP BASE Use_MFC 0
34 # PROP BASE Use_Debug_Libraries 0
35 # PROP BASE Output_Dir "Release"
36 # PROP BASE Intermediate_Dir "Release"
37 # PROP BASE Target_Dir ""
43 # ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c
45 # ADD BASE RSC /l 0x409 /d "NDEBUG"
48 # ADD BASE BSC32 /nologo
51 # ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.…
56 # PROP BASE Use_MFC 0
[all …]
/third_party/icu/icu4c/source/extra/scrptrun/
Dsrtest.dsp33 # PROP BASE Use_MFC 0
34 # PROP BASE Use_Debug_Libraries 0
35 # PROP BASE Output_Dir "Release"
36 # PROP BASE Intermediate_Dir "Release"
37 # PROP BASE Target_Dir ""
44 # ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c
46 # ADD BASE RSC /l 0x409 /d "NDEBUG"
49 # ADD BASE BSC32 /nologo
52 # ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.…
57 # PROP BASE Use_MFC 0
[all …]
/third_party/openssl/Configurations/platform/
DWindows.pm9 require 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]),
/third_party/node/deps/openssl/openssl/Configurations/platform/
DWindows.pm9 require 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]),
/third_party/lzma/C/Util/SfxSetup/
DSfxSetup.dsp34 # PROP BASE Use_MFC 0
35 # PROP BASE Use_Debug_Libraries 0
36 # PROP BASE Output_Dir "Release"
37 # PROP BASE Intermediate_Dir "Release"
38 # PROP BASE Target_Dir ""
44 # ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /YX /FD /c
46 # ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /win32
48 # ADD BASE RSC /l 0x419 /d "NDEBUG"
51 # ADD BASE BSC32 /nologo
54 # ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.…
[all …]

12345678