Searched defs:BASE (Results 1 - 25 of 42) sorted by relevance

12

/external/clang/test/SemaCXX/
H A Dambig-user-defined-conversions.cpp4 struct BASE { struct in namespace:test0
11 struct B : public BASE, BASE1 {};
H A Ddecl-init-ref.cpp5 struct BASE { struct
13 class B : public BASE , public BASE1
/external/freetype/src/gzip/
H A Dadler32.c10 #define BASE 65521L /* 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 */
44 s1 %= BASE;
45 s2 %= BASE;
/external/chromium_org/sdch/open-vcdiff/src/zlib/
H A Dadler32.c11 #define BASE 65521UL /* largest prime smaller than 65536 */ macro
13 /* NMAX is the largest n such that 255n(n+1)/2 + (n+1)(BASE-1) <= 2^32-1 */
25 if (a >= (BASE << 16)) a -= (BASE << 16); \
26 if (a >= (BASE << 15)) a -= (BASE << 15); \
27 if (a >= (BASE << 14)) a -= (BASE << 14); \
28 if (a >= (BASE << 13)) a -= (BASE << 1
[all...]
/external/chromium_org/third_party/zlib/
H A Dadler32.c14 #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...]
/external/qemu/distrib/zlib-1.2.8/
H A Dadler32.c14 #define BASE 65521 /* 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 */
27 /* note that this assumes BASE is 65521, where 65536 % 65521 == 15
38 if (a >= BASE) a -= BASE; \
56 if (a >= BASE) a -= BASE; \
59 # define MOD(a) a %= BASE
60 # define MOD28(a) a %= BASE
61 # define MOD63(a) a %= BASE
[all...]
/external/zlib/src/
H A Dadler32.c14 #define BASE 65521 /* 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 */
27 /* note that this assumes BASE is 65521, where 65536 % 65521 == 15
38 if (a >= BASE) a -= BASE; \
56 if (a >= BASE) a -= BASE; \
59 # define MOD(a) a %= BASE
60 # define MOD28(a) a %= BASE
61 # define MOD63(a) a %= BASE
[all...]
/external/pdfium/core/src/fxcodec/fx_zlib/zlib_v128/
H A Dfx_zlib_adler32.c14 #define BASE 65521 /* 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 */
27 /* note that this assumes BASE is 65521, where 65536 % 65521 == 15
38 if (a >= BASE) a -= BASE; \
56 if (a >= BASE) a -= BASE; \
59 # define MOD(a) a %= BASE
60 # define MOD28(a) a %= BASE
61 # define MOD63(a) a %= BASE
[all...]
/external/chromium_org/third_party/icu/source/common/
H A Dpunycode.cpp62 #define BASE 36 macro
89 * range 0 to BASE-1. The lowercase form is used unless the uppercase flag is
110 * BASE-1, or -1 if b is does not represent a value.
172 for(count=0; delta>((BASE-TMIN)*TMAX)/2; count+=BASE) {
173 delta/=(BASE-TMIN);
176 return count+(((BASE-TMIN+1)*delta)/(delta+SKEW));
327 for(q=delta, k=BASE; /* no condition */; k+=BASE) {
351 dest[destLength]=digitToBasic(t+(q-t)%(BASE
[all...]
/external/chromium_org/third_party/sfntly/cpp/src/sfntly/
H A Dtag.cc45 const int32_t Tag::BASE = TAG('B', 'A', 'S', 'E'); member in class:sfntly::Tag
H A Dtag.h59 static const int32_t BASE; member in struct:sfntly::Tag
/external/icu/icu4c/source/common/
H A Dpunycode.cpp62 #define BASE 36 macro
89 * range 0 to BASE-1. The lowercase form is used unless the uppercase flag is
110 * BASE-1, or -1 if b is does not represent a value.
172 for(count=0; delta>((BASE-TMIN)*TMAX)/2; count+=BASE) {
173 delta/=(BASE-TMIN);
176 return count+(((BASE-TMIN+1)*delta)/(delta+SKEW));
327 for(q=delta, k=BASE; /* no condition */; k+=BASE) {
351 dest[destLength]=digitToBasic(t+(q-t)%(BASE
[all...]
/external/mockito/cglib-and-asm/src/org/mockito/asm/
H A DFrame.java66 * signed number of array dimensions (from -8 to 7). KIND is either BASE,
67 * LOCAL or STACK. BASE is used for types that are not relative to the input
72 * relatively to the top of input frame stack. For BASE types, it is either
79 * contain BASE types of positive or null dimension. In all cases the type
111 * @see #BASE
135 static final int BASE = 0x1000000; field in class:Frame
141 static final int OBJECT = BASE | 0x700000;
148 static final int UNINITIALIZED = BASE | 0x800000;
164 * The TOP type. This is a BASE type.
166 static final int TOP = BASE |
[all...]
/external/sfntly/cpp/src/sfntly/
H A Dtag.cc45 const int32_t Tag::BASE = TAG('B', 'A', 'S', 'E'); member in class:sfntly::Tag
H A Dtag.h59 static const int32_t BASE; member in struct:sfntly::Tag
/external/deqp/scripts/
H A Dmake_release.py352 BASE = Module("Base", [ variable
467 BASE,
/external/chromium_org/third_party/WebKit/Source/core/editing/
H A DFrameSelection.h221 enum EPositionType { START, END, BASE, EXTENT }; enumerator in enum:blink::FINAL::EPositionType
/external/chromium_org/third_party/icu/source/i18n/
H A Ddtitvinf.cpp456 const int32_t BASE = 0x41; local
517 (char)(i+BASE) ) ) {
H A Dalphaindex.cpp42 const UChar BASE[1] = { 0xFDD0 }; member in namespace:__anon12083
375 if (!current.startsWith(BASE, BASE_LENGTH)) {
510 } else if (current.length() == BASE_LENGTH + 1 && current.startsWith(BASE, BASE_LENGTH) &&
516 if (!current.startsWith(BASE, BASE_LENGTH) &&
795 if (s.startsWith(BASE, BASE_LENGTH)) {
/external/chromium_org/third_party/mesa/src/src/mesa/main/
H A Dtexobj.c390 enum base_mipmap { BASE, MIPMAP }; enumerator in enum:base_mipmap
404 * \param bm either BASE or MIPMAP to indicate what's incomplete
422 if (bm == BASE)
464 incomplete(t, BASE, "base level = %d is invalid", baseLevel);
469 incomplete(t, BASE, "MAX_LEVEL (%d) < BASE_LEVEL (%d)",
478 incomplete(t, BASE, "Image[baseLevel=%d] == NULL", baseLevel);
486 incomplete(t, BASE, "texture width or height or depth = 0");
564 incomplete(t, BASE, "Cube face missing or mismatched size");
584 incomplete(t, BASE, "minLevel > maxLevel");
/external/icu/icu4c/source/i18n/
H A Ddtitvinf.cpp456 const int32_t BASE = 0x41; local
517 (char)(i+BASE) ) ) {
H A Dalphaindex.cpp43 const UChar BASE[1] = { 0xFDD0 }; member in namespace:__anon21872
376 if (!current.startsWith(BASE, BASE_LENGTH)) {
504 } else if (current.length() == BASE_LENGTH + 1 && current.startsWith(BASE, BASE_LENGTH) &&
510 if (!current.startsWith(BASE, BASE_LENGTH) &&
769 collatorPrimaryOnly_->internalAddContractions(BASE[0], contractions, errorCode);
775 U_ASSERT (s.startsWith(BASE, BASE_LENGTH));
/external/mesa3d/src/mesa/main/
H A Dtexobj.c390 enum base_mipmap { BASE, MIPMAP }; enumerator in enum:base_mipmap
404 * \param bm either BASE or MIPMAP to indicate what's incomplete
422 if (bm == BASE)
464 incomplete(t, BASE, "base level = %d is invalid", baseLevel);
469 incomplete(t, BASE, "MAX_LEVEL (%d) < BASE_LEVEL (%d)",
478 incomplete(t, BASE, "Image[baseLevel=%d] == NULL", baseLevel);
486 incomplete(t, BASE, "texture width or height or depth = 0");
564 incomplete(t, BASE, "Cube face missing or mismatched size");
584 incomplete(t, BASE, "minLevel > maxLevel");
/external/valgrind/main/auxprogs/
H A Dvalgrind-di-server.c231 # define BASE 65521UL /* largest prime smaller than 65536 */ macro
234 255n(n+1)/2 + (n+1)(BASE-1) <= 2^32-1 */
246 if (a >= (BASE << 16)) a -= (BASE << 16); \
247 if (a >= (BASE << 15)) a -= (BASE << 15); \
248 if (a >= (BASE << 14)) a -= (BASE << 14); \
249 if (a >= (BASE << 13)) a -= (BASE << 1
345 # undef BASE macro
[all...]
/external/valgrind/main/coregrind/
H A Dm_libcbase.c966 # define BASE 65521UL /* largest prime smaller than 65536 */ macro
969 255n(n+1)/2 + (n+1)(BASE-1) <= 2^32-1 */
981 if (a >= (BASE << 16)) a -= (BASE << 16); \
982 if (a >= (BASE << 15)) a -= (BASE << 15); \
983 if (a >= (BASE << 14)) a -= (BASE << 14); \
984 if (a >= (BASE << 13)) a -= (BASE << 1
1080 # undef BASE macro
[all...]

Completed in 659 milliseconds

12