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

1 2 3 4 5

  /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/pdfium/core/src/fxcodec/fx_zlib/zlib_v128/
fx_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/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);
  /system/keymaster/
Makefile 25 BASE=../..
31 GTEST=$(BASE)/external/gtest
33 INCLUDES=$(foreach dir,$(SUBS),-I $(BASE)/$(dir)/include) \
34 -I $(BASE)/libnativehelper/include/nativehelper \
35 -I $(GTEST) -Iinclude -I$(BASE)/../boringssl/include
61 LDLIBS=-L$(BASE)/../boringssl/build/crypto -lcrypto -lpthread -lstdc++ -lgcov
256 $(BASE)/system/security/softkeymaster/keymaster_openssl.o \
257 $(BASE)/system/security/keystore/keyblob_utils.o \
  /system/security/keystore/tests/
Makefile 11 BASE=../../../..
16 GTEST=$(BASE)/external/gtest
17 KEYMASTER=$(BASE)/system/keymaster
19 INCLUDES=$(foreach dir,$(SUBS),-I $(BASE)/$(dir)/include) \
20 -I $(BASE)/libnativehelper/include/nativehelper \
  /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/icu/icu4c/source/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/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
Punycode.java 20 private static final int BASE = 36;
50 for(; delta>((BASE-TMIN)*TMAX)/2; count+=BASE) {
51 delta/=(BASE-TMIN);
54 return count+(((BASE-TMIN+1)*delta)/(delta+SKEW));
60 * BASE-1, or -1 if b is does not represent a value.
105 * range 0 to BASE-1. The lowercase form is used unless the uppercase flag is
210 for(q=delta, k=BASE; /* no condition */; k+=BASE) {
233 dest.append(digitToBasic(t+(q-t)%(BASE-t), false))
    [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/net/
NetworkAgent.java 58 private static final int BASE = Protocol.BASE_NETWORK_AGENT;
65 public static final int CMD_SUSPECT_BAD = BASE;
73 public static final int EVENT_NETWORK_INFO_CHANGED = BASE + 1;
80 public static final int EVENT_NETWORK_CAPABILITIES_CHANGED = BASE + 2;
87 public static final int EVENT_NETWORK_PROPERTIES_CHANGED = BASE + 3;
89 /* centralize place where base network score, and network score scaling, will be
99 public static final int EVENT_NETWORK_SCORE_CHANGED = BASE + 4;
106 public static final int EVENT_UID_RANGES_ADDED = BASE + 5;
113 public static final int EVENT_UID_RANGES_REMOVED = BASE + 6;
122 public static final int CMD_REPORT_NETWORK_STATUS = BASE + 7
    [all...]
NetworkFactory.java 53 private static final int BASE = Protocol.BASE_NETWORK_FACTORY;
76 public static final int CMD_REQUEST_NETWORK = BASE;
82 public static final int CMD_CANCEL_REQUEST = BASE + 1;
88 private static final int CMD_SET_SCORE = BASE + 2;
95 private static final int CMD_SET_FILTER = BASE + 3;
215 * If you don't need to see every request, you can leave the base
DhcpStateMachine.java 78 private static final int BASE = Protocol.BASE_DHCP;
81 public static final int CMD_START_DHCP = BASE + 1;
82 public static final int CMD_STOP_DHCP = BASE + 2;
83 public static final int CMD_RENEW_DHCP = BASE + 3;
86 public static final int CMD_PRE_DHCP_ACTION = BASE + 4;
89 public static final int CMD_POST_DHCP_ACTION = BASE + 5;
91 public static final int CMD_ON_QUIT = BASE + 6;
95 public static final int CMD_PRE_DHCP_ACTION_COMPLETE = BASE + 7;
98 private static final int CMD_GET_DHCP_RESULTS = BASE + 8;
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/opt/telephony/src/java/com/android/internal/telephony/dataconnection/
DcSwitchAsyncChannel.java 37 private static final int BASE = Protocol.BASE_DATA_CONNECTION_TRACKER + 0x00002000;
38 static final int REQ_CONNECT = BASE + 0;
39 static final int REQ_RETRY_CONNECT = BASE + 1;
40 static final int REQ_DISCONNECT_ALL = BASE + 2;
41 static final int REQ_IS_IDLE_STATE = BASE + 3;
42 static final int RSP_IS_IDLE_STATE = BASE + 4;
43 static final int REQ_IS_IDLE_OR_DETACHING_STATE = BASE + 5;
44 static final int RSP_IS_IDLE_OR_DETACHING_STATE = BASE + 6;
45 static final int EVENT_DATA_ATTACHED = BASE + 7;
46 static final int EVENT_DATA_DETACHED = BASE + 8
    [all...]
DcSwitchStateMachine.java 41 private static final int BASE = Protocol.BASE_DATA_CONNECTION_TRACKER + 0x00001000;
42 private static final int EVENT_CONNECTED = BASE + 0;
43 private static final int EVENT_DATA_ALLOWED = BASE + 1;
44 private static final int CMD_RETRY_ATTACH = BASE + 2;
45 private static final int EVENT_DATA_DISALLOWED = BASE + 3;
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...]
  /external/deqp/scripts/
make_release.py 373 BASE = Module("Base", [
489 BASE,
  /external/mockito/cglib-and-asm/src/org/mockito/asm/
Frame.java 66 * 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
123 * Mask to get the kind of base types.
128 * Mask to get the value of base types.
135 static final int BASE = 0x1000000;
138 * Base kind of the base reference types. The BASE_VALUE of such types is an
    [all...]
  /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...]

Completed in 1964 milliseconds

1 2 3 4 5