Searched defs:BASE (Results 1 - 25 of 35) 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/qemu/distrib/zlib-1.2.3/
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/sdch/open-vcdiff/src/
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/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/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/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/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/net/
H A DJarURLConnectionTest.java44 private static final String BASE = field in class:JarURLConnectionTest
51 URL u = new URL("jar:"+BASE+"!/swt.dll");
64 URL u = new URL("jar:"+BASE+"!/plus.bmp");
68 u = new URL("jar:"+BASE+"!/");
80 URL u = new URL("jar:"+BASE+"!/plus.bmp");
84 u = new URL("jar:"+BASE+"!/");
94 url = new URL("jar:"+BASE+"!/missing");
124 new URL("jar:"+BASE+"!/");
185 URL fileURL = new URL(BASE);
186 URL u = new URL("jar:"+BASE
[all...]
/external/chromium_org/third_party/icu/source/common/
H A Dpunycode.c59 #define BASE 36 macro
86 * range 0 to BASE-1. The lowercase form is used unless the uppercase flag is
107 * BASE-1, or -1 if b is does not represent a value.
169 for(count=0; delta>((BASE-TMIN)*TMAX)/2; count+=BASE) {
170 delta/=(BASE-TMIN);
173 return count+(((BASE-TMIN+1)*delta)/(delta+SKEW));
324 for(q=delta, k=BASE; /* no condition */; k+=BASE) {
348 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/icu4c/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/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/chromium_org/third_party/WebKit/Source/core/editing/
H A DFrameSelection.h210 enum EPositionType { START, END, BASE, EXTENT }; enumerator in enum:WebCore::FrameSelection::EPositionType
/external/v8/src/
H A Dcompiler.h150 bool IsOptimizable() const { return mode_ == BASE; }
177 // BASE is generated by the full codegen, optionally prepared for bailouts.
182 BASE, enumerator in enum:v8::internal::BASE_EMBEDDED::Mode
/external/chromium_org/third_party/icu/source/i18n/
H A Ddtitvinf.cpp437 const int32_t BASE = 0x41; local
504 (char)(i+BASE) ) ) {
/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/grub/netboot/
H A Dsmc9000.h97 #define BASE 2 macro
H A D3c509.h58 #define BASE (eth_nic_base) macro
76 #define GO_WINDOW(x) outw(WINDOW_SELECT|(x), BASE+EP_COMMAND)
105 #define EP_COMMAND 0x0e /* Write. BASE+0x0e is always a
107 #define EP_STATUS 0x0e /* Read. BASE+0x0e is always status
109 #define EP_WINDOW 0x0f /* Read. BASE+0x0f is always window
/external/icu4c/i18n/
H A Ddtitvinf.cpp456 const int32_t BASE = 0x41; local
517 (char)(i+BASE) ) ) {
/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/chromium_org/v8/src/
H A Dcompiler.h221 bool IsOptimizable() const { return mode_ == BASE; }
335 // BASE is generated by the full codegen, optionally prepared for bailouts.
340 BASE, enumerator in enum:v8::internal::CompilationInfo::Mode
/external/clang/include/clang/AST/
H A DExprObjC.h781 enum { BASE, KEY, END_EXPR }; enumerator in enum:clang::ObjCSubscriptRefExpr::__anon15823
805 {SubExprs[BASE] = base; SubExprs[KEY] = key;}
821 return SubExprs[BASE]->getLocStart();
829 Expr *getBaseExpr() const { return cast<Expr>(SubExprs[BASE]); }
830 void setBaseExpr(Stmt *S) { SubExprs[BASE] = S; }

Completed in 745 milliseconds

12