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

1 2 3 4

  /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/qemu/distrib/zlib-1.2.3/
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/chromium/sdch/open-vcdiff/src/
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/chromium_org/sdch/open-vcdiff/src/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/chromium_org/third_party/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/open-vcdiff/src/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/zlib/src/
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...]
  /prebuilts/python/darwin-x86/2.7.5/include/python2.7/
longintrepr.h 68 #define BASE PyLong_BASE
  /prebuilts/python/linux-x86/2.7.5/include/python2.7/
longintrepr.h 68 #define BASE PyLong_BASE
  /frameworks/native/include/ui/
ANativeObjectBase.h 70 typedef ANativeObjectBase<NATIVE_TYPE, TYPE, REF> BASE;
81 static inline TYPE* getSelf(android_native_base_t* base) {
82 return getSelf(reinterpret_cast<NATIVE_TYPE*>(base));
84 static inline TYPE const * getSelf(android_native_base_t const* base) {
85 return getSelf(reinterpret_cast<NATIVE_TYPE const*>(base));
87 static void incRef(android_native_base_t* base) {
88 ANativeObjectBase* self = getSelf(base);
91 static void decRef(android_native_base_t* base) {
92 ANativeObjectBase* self = getSelf(base);
  /development/apps/Development/src/com/android/development/
AppHwPref.java 53 private static final int BASE = 0;
54 private static final int TOUCHSCREEN = BASE + 1;
55 private static final int KEYBOARD_TYPE = BASE + 2;
56 private static final int NAVIGATION = BASE + 3;
57 private static final int GLES_VERSION = BASE + 4;
  /external/chromium_org/third_party/icu/source/common/
punycode.c 59 #define BASE 36
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-t), 0)
    [all...]
  /external/chromium_org/third_party/sfntly/cpp/src/sfntly/
tag.cc 45 const int32_t Tag::BASE = TAG('B', 'A', 'S', 'E');
tag.h 59 static const int32_t BASE;
  /external/icu4c/common/
punycode.cpp 62 #define BASE 36
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-t), 0)
    [all...]
  /external/sfntly/cpp/src/sfntly/
tag.cc 45 const int32_t Tag::BASE = TAG('B', 'A', 'S', 'E');
tag.h 59 static const int32_t BASE;
  /frameworks/base/core/java/android/os/
Build.java 139 public static final int BASE = 1;
  /external/chromium_org/third_party/WebKit/Source/core/editing/
FrameSelection.h 127 Position base() const { return m_selection.base(); } function in class:WebCore::FrameSelection
210 enum EPositionType { START, END, BASE, EXTENT };
245 void updateSelectionIfNeeded(const Position& base, const Position& extent, const Position& start, const Position& end);
252 VisiblePosition m_originalBase; // Used to store base before the adjustment at bidi boundary
  /external/v8/src/
compiler.h 150 bool IsOptimizable() const { return mode_ == BASE; }
177 // BASE is generated by the full codegen, optionally prepared for bailouts.
182 BASE,
  /frameworks/base/core/java/android/net/
DhcpStateMachine.java 83 private static final int BASE = Protocol.BASE_DHCP;
86 public static final int CMD_START_DHCP = BASE + 1;
87 public static final int CMD_STOP_DHCP = BASE + 2;
88 public static final int CMD_RENEW_DHCP = BASE + 3;
91 public static final int CMD_PRE_DHCP_ACTION = BASE + 4;
94 public static final int CMD_POST_DHCP_ACTION = BASE + 5;
96 public static final int CMD_ON_QUIT = BASE + 6;
100 public static final int CMD_PRE_DHCP_ACTION_COMPLETE = BASE + 7;
DnsPinger.java 76 private static final int BASE = Protocol.BASE_DNS_PINGER;
83 public static final int DNS_PING_RESULT = BASE;
92 private static final int ACTION_PING_DNS = BASE + 1;
93 private static final int ACTION_LISTEN_FOR_RESPONSE = BASE + 2;
94 private static final int ACTION_CANCEL_ALL_PINGS = BASE + 3;
  /frameworks/base/telephony/java/com/android/internal/telephony/
DctConstants.java 59 public static final int BASE = Protocol.BASE_DATA_CONNECTION_TRACKER;
60 public static final int EVENT_DATA_SETUP_COMPLETE = BASE + 0;
61 public static final int EVENT_RADIO_AVAILABLE = BASE + 1;
62 public static final int EVENT_RECORDS_LOADED = BASE + 2;
63 public static final int EVENT_TRY_SETUP_DATA = BASE + 3;
64 public static final int EVENT_DATA_STATE_CHANGED = BASE + 4;
65 public static final int EVENT_POLL_PDP = BASE + 5;
66 public static final int EVENT_RADIO_OFF_OR_NOT_AVAILABLE = BASE + 6;
67 public static final int EVENT_VOICE_CALL_STARTED = BASE + 7;
68 public static final int EVENT_VOICE_CALL_ENDED = BASE + 8
    [all...]
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/dataconnection/
DcAsyncChannel.java 39 public static final int BASE = Protocol.BASE_DATA_CONNECTION_AC;
41 public static final int REQ_IS_INACTIVE = BASE + 0;
42 public static final int RSP_IS_INACTIVE = BASE + 1;
44 public static final int REQ_GET_CID = BASE + 2;
45 public static final int RSP_GET_CID = BASE + 3;
47 public static final int REQ_GET_APNSETTING = BASE + 4;
48 public static final int RSP_GET_APNSETTING = BASE + 5;
50 public static final int REQ_GET_LINK_PROPERTIES = BASE + 6;
51 public static final int RSP_GET_LINK_PROPERTIES = BASE + 7;
53 public static final int REQ_SET_LINK_PROPERTIES_HTTP_PROXY = BASE + 8
    [all...]

Completed in 1747 milliseconds

1 2 3 4