/external/valgrind/auxprogs/ |
valgrind-di-server.c | 250 # define BASE 65521UL /* largest prime smaller than 65536 */ 253 255n(n+1)/2 + (n+1)(BASE-1) <= 2^32-1 */ 265 if (a >= (BASE << 16)) a -= (BASE << 16); \ 266 if (a >= (BASE << 15)) a -= (BASE << 15); \ 267 if (a >= (BASE << 14)) a -= (BASE << 14); \ 268 if (a >= (BASE << 13)) a -= (BASE << 13); [all...] |
/external/valgrind/coregrind/ |
m_libcbase.c | 895 /* Returns the base-2 logarithm of x. Returns -1 if x is not a power 918 void VG_(ssort)( void* base, SizeT nmemb, SizeT size, 921 bm_qsort(base,nmemb,size,compar); 988 # define BASE 65521UL /* largest prime smaller than 65536 */ 991 255n(n+1)/2 + (n+1)(BASE-1) <= 2^32-1 */ 1003 if (a >= (BASE << 16)) a -= (BASE << 16); \ 1004 if (a >= (BASE << 15)) a -= (BASE << 15); \ 1005 if (a >= (BASE << 14)) a -= (BASE << 14); [all...] |
/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...] |
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;
|
/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':}}
|
/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/clang/lib/AST/ |
ASTTypeTraits.cpp | 11 // that can be used to store an AST base node at runtime in the same storage in 32 #define DECL(DERIVED, BASE) { NKI_##BASE, #DERIVED "Decl" }, 35 #define STMT(DERIVED, BASE) { NKI_##BASE, #DERIVED }, 38 #define TYPE(DERIVED, BASE) { NKI_##BASE, #DERIVED "Type" }, 50 bool ASTNodeKind::isBaseOf(NodeKindId Base, NodeKindId Derived, 52 if (Base == NKI_None || Derived == NKI_None) return false; 54 while (Derived != Base && Derived != NKI_None) [all...] |
/external/clang/include/clang/Sema/ |
Template.h | 405 #define DECL(DERIVED, BASE) \ 410 #define OBJCCONTAINER(DERIVED, BASE) 411 #define FILESCOPEASM(DERIVED, BASE) 412 #define IMPORT(DERIVED, BASE) 413 #define LINKAGESPEC(DERIVED, BASE) 414 #define OBJCCOMPATIBLEALIAS(DERIVED, BASE) 415 #define OBJCMETHOD(DERIVED, BASE) 416 #define OBJCIVAR(DERIVED, BASE) 417 #define OBJCPROPERTY(DERIVED, BASE) 418 #define OBJCPROPERTYIMPL(DERIVED, BASE) [all...] |
/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...] |
/development/scripts/ |
combine_sdks.sh | 24 BASE="$1" 28 if [[ -z "$BASE" || -z "$IMAGES" || -z "$OUTPUT" ]] ; then 29 echo "usage: combine_sdks.sh [-v] [-nozip] BASE IMAGES OUTPUT" 31 echo " BASE and IMAGES should be sdk zip files. The system image files," 33 echo " everything else will be copied from BASE. All of this will be" 53 BASE_DIR="$TMP"/base 57 unzip $Q "$BASE" -d "$BASE_DIR"
|
/development/tools/findunused/ |
removeunusedresources | 20 BASE=$(pwd)/$(dirname $0) 25 $BASE/findunusedresources -p . | {
|
/external/libvpx/libvpx/vpx_mem/memory_manager/include/ |
hmm_intrnl.h | 25 #define U(BASE) HMM_UNIQUE(BASE) 149 #define AVL_UNIQUE(BASE) U(avl_ ## BASE)
|
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vpx_mem/memory_manager/include/ |
hmm_intrnl.h | 25 #define U(BASE) HMM_UNIQUE(BASE) 149 #define AVL_UNIQUE(BASE) U(avl_ ## BASE)
|
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/ |
WifiMonitor.java | 428 private static final int BASE = Protocol.BASE_WIFI_MONITOR; 431 public static final int SUP_CONNECTION_EVENT = BASE + 1; 433 public static final int SUP_DISCONNECTION_EVENT = BASE + 2; 435 public static final int NETWORK_CONNECTION_EVENT = BASE + 3; 437 public static final int NETWORK_DISCONNECTION_EVENT = BASE + 4; 439 public static final int SCAN_RESULTS_EVENT = BASE + 5; 441 public static final int SUPPLICANT_STATE_CHANGE_EVENT = BASE + 6; 443 public static final int AUTHENTICATION_FAILURE_EVENT = BASE + 7; 445 public static final int WPS_SUCCESS_EVENT = BASE + 8; 447 public static final int WPS_FAIL_EVENT = BASE + 9 [all...] |
/external/eigen/bench/btl/data/ |
mk_mean_script.sh | 25 BASE=${FILE##*/} ; BASE=${FILE##*/} ; AVANT=bench_${WHAT}_ ; REDUC=${BASE##*$AVANT} ; TITLE=${REDUC%.dat}
|
/frameworks/base/media/mca/filterfw/native/core/ |
value.cpp | 53 template<typename BASE, int TYPEID> 54 Value MakePtrValue(const BASE* values, int count) { 57 result.value = malloc(sizeof(BASE) * count); 58 memcpy(result.value, values, sizeof(BASE) * count); 77 template<typename BASE, int TYPEID> 78 int SetPtrValue(Value* value, const BASE* new_values, int count) { 81 value->value = malloc(sizeof(BASE) * count); 85 memcpy(value->value, new_values, sizeof(BASE) * count);
|
/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 \
|
/prebuilts/gcc/darwin-x86/x86/x86_64-linux-android-4.9/lib/gcc/x86_64-linux-android/4.9/include/ |
avx2intrin.h | [all...] |
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/lib/gcc/x86_64-linux/4.8/include/ |
avx2intrin.h | [all...] |
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/lib/gcc/x86_64-linux/4.8/include/ |
avx2intrin.h | [all...] |
/prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/lib/gcc/x86_64-w64-mingw32/4.8.3/include/ |
avx2intrin.h | [all...] |
/prebuilts/gcc/linux-x86/x86/x86_64-linux-android-4.9/lib/gcc/x86_64-linux-android/4.9/include/ |
avx2intrin.h | [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
|