HomeSort by relevance Sort by last modified time
    Searched defs:BASE (Results 1 - 25 of 252) sorted by null

1 2 3 4 5 6 7 8 91011

  /external/icu/android_icu4j/src/main/java/android/icu/util/
NoUnit.java 18 * Constant for the base unit (dimensionless and no scaling).
22 public static final NoUnit BASE =
23 (NoUnit) MeasureUnit.internalGetInstance("none", "base");
26 * Constant for the percent unit, or 1/100 of a base unit.
34 * Constant for the permille unit, or 1/100 of a base unit.
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/util/
NoUnit.java 17 * Constant for the base unit (dimensionless and no scaling).
22 public static final NoUnit BASE =
23 (NoUnit) MeasureUnit.internalGetInstance("none", "base");
26 * Constant for the percent unit, or 1/100 of a base unit.
35 * Constant for the permille unit, or 1/100 of a base unit.
  /frameworks/native/libs/ui/include/ui/
ANativeObjectBase.h 51 typedef ANativeObjectBase<NATIVE_TYPE, TYPE, REF, NATIVE_BASE> BASE;
62 static inline TYPE* getSelf(NATIVE_BASE* base) {
63 return getSelf(reinterpret_cast<NATIVE_TYPE*>(base));
65 static inline TYPE const * getSelf(NATIVE_BASE const* base) {
66 return getSelf(reinterpret_cast<NATIVE_TYPE const*>(base));
68 static void incRef(NATIVE_BASE* base) {
69 ANativeObjectBase* self = getSelf(base);
72 static void decRef(NATIVE_BASE* base) {
73 ANativeObjectBase* self = getSelf(base);
  /system/tools/aidl/
generate_cpp.h 39 BASE, // Foo (not a real class, but useful in some circumstances).
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/zlib/
adler32.c 11 #define BASE 65521UL /* largest prime smaller than 65536 */
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 << 13); \
    [all...]
  /external/clang/test/SemaCXX/
ambig-user-defined-conversions.cpp 4 struct BASE {
11 struct B : public BASE, BASE1 {};
66 bool f(D d) { return !d; } // expected-error{{ambiguous conversion from derived class 'rdar8876150::D' to base class 'rdar8876150::A':}}
decl-init-ref.cpp 5 struct BASE {
13 class B : public BASE , public BASE1
  /external/freetype/src/gzip/
adler32.c 10 #define BASE 65521L /* largest prime smaller than 65536 */
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/v8/tools/clang/blink_gc_plugin/tests/legacy_naming/
trace_after_dispatch_impl.h 18 BASE, DERIVED
trace_after_dispatch_impl_error.h 18 BASE, DERIVED
59 // No trace call (for member and base class).
  /external/v8/tools/clang/blink_gc_plugin/tests/
trace_after_dispatch_impl.h 18 BASE, DERIVED
trace_after_dispatch_impl_error.h 18 BASE, DERIVED
59 // No Trace call (for member and base class).
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Include/
longintrepr.h 68 #define BASE PyLong_BASE
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/zlib/
adler32.c 14 #define BASE 65521 /* largest prime smaller than 65536 */
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...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Include/
longintrepr.h 68 #define BASE PyLong_BASE
  /device/linaro/bootloader/edk2/EmbeddedPkg/Library/ZLib/
adler32.c 12 #define BASE 65521U /* largest prime smaller than 65536 */
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...]
  /external/curl/tests/unit/
unit1303.c 47 /* BASE is just a define to make us fool around with decently large number so
49 #define BASE 1000000
83 {BASE + 4, 0, 10000, 8000, FALSE, 6000, "6 seconds should be left"},
84 {BASE + 4, 990000, 10000, 8000, FALSE, 5010, "5010 ms should be left"},
85 {BASE + 10, 0, 10000, 8000, FALSE, -1, "timeout is -1, expired"},
86 {BASE + 12, 0, 10000, 8000, FALSE, -2000, "-2000, overdue 2 seconds"},
89 {BASE + 4, 0, 10000, 8000, TRUE, 4000, "4 seconds should be left"},
90 {BASE + 4, 990000, 10000, 8000, TRUE, 3010, "3010 ms should be left"},
91 {BASE + 8, 0, 10000, 8000, TRUE, -1, "timeout is -1, expired"},
92 {BASE + 10, 0, 10000, 8000, TRUE, -2000, "-2000, overdue 2 seconds"}
    [all...]
  /external/python/cpython2/Include/
longintrepr.h 68 #define BASE PyLong_BASE
  /external/python/cpython2/Modules/zlib/
adler32.c 14 #define BASE 65521 /* largest prime smaller than 65536 */
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/python/cpython3/Modules/zlib/
adler32.c 12 #define BASE 65521U /* largest prime smaller than 65536 */
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...]
  /external/syslinux/com32/lib/zlib/
adler32.c 14 #define BASE 65521UL /* largest prime smaller than 65536 */
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 << 13);
    [all...]
  /external/zlib/src/
adler32.c 12 #define BASE 65521U /* largest prime smaller than 65536 */
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...]
  /prebuilts/gdb/darwin-x86/include/python2.7/
longintrepr.h 68 #define BASE PyLong_BASE
  /prebuilts/gdb/linux-x86/include/python2.7/
longintrepr.h 68 #define BASE PyLong_BASE
  /prebuilts/python/darwin-x86/2.7.5/include/python2.7/
longintrepr.h 68 #define BASE PyLong_BASE

Completed in 525 milliseconds

1 2 3 4 5 6 7 8 91011