/external/eigen/bench/btl/data/ |
mk_gnuplot_script.sh | 22 BASE=${FILE##*/} ; BASE=${FILE##*/} ; AVANT=bench_${WHAT}_ ; REDUC=${BASE##*$AVANT} ; TITLE=${REDUC%.dat} 26 BASE=${LAST##*/} ; BASE=${FILE##*/} ; AVANT=bench_${WHAT}_ ; REDUC=${BASE##*$AVANT} ; TITLE=${REDUC%.dat} 39 BASE=${FILE##*/} ; BASE=${FILE##*/} ; AVANT=bench_${WHAT}_ ; REDUC=${BASE##*$AVANT} ; TITLE=${REDUC%.dat} 43 BASE=${LAST##*/} ; BASE=${FILE##*/} ; AVANT=bench_${WHAT}_ ; REDUC=${BASE##*$AVANT} ; TITLE=${REDUC%.da (…) [all...] |
mk_mean_script.sh | 25 BASE=${FILE##*/} ; BASE=${FILE##*/} ; AVANT=bench_${WHAT}_ ; REDUC=${BASE##*$AVANT} ; TITLE=${REDUC%.dat}
|
/external/clang/test/SemaCXX/ |
decl-init-ref.cpp | 5 struct BASE { 13 class B : public BASE , public BASE1
|
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/e2fsprogs/lib/ss/ |
mk_cmds.sh.in | 43 BASE=`basename "$ROOT"` 58 rm -f "${BASE}.c" 59 mv -f "${TMP}" "${BASE}.c" 60 chmod -w "${BASE}.c"
|
/frameworks/base/core/java/android/net/nsd/ |
NsdManager.java | 159 private static final int BASE = Protocol.BASE_NSD_MANAGER; 162 public static final int DISCOVER_SERVICES = BASE + 1; 164 public static final int DISCOVER_SERVICES_STARTED = BASE + 2; 166 public static final int DISCOVER_SERVICES_FAILED = BASE + 3; 168 public static final int SERVICE_FOUND = BASE + 4; 170 public static final int SERVICE_LOST = BASE + 5; 173 public static final int STOP_DISCOVERY = BASE + 6; 175 public static final int STOP_DISCOVERY_FAILED = BASE + 7; 177 public static final int STOP_DISCOVERY_SUCCEEDED = BASE + 8; 180 public static final int REGISTER_SERVICE = BASE + 9 [all...] |
/external/clang/include/clang/AST/ |
DeclVisitor.h | 31 class Base { 40 #define DECL(DERIVED, BASE) \ 50 #define DECL(DERIVED, BASE) \ 51 RetTy Visit##DERIVED##Decl(PTR(DERIVED##Decl) D) { DISPATCH(BASE, BASE); } 68 : public declvisitor::Base<declvisitor::make_ptr, ImplClass, RetTy> {}; 75 : public declvisitor::Base<declvisitor::make_const_ptr, ImplClass, RetTy> {};
|
/frameworks/base/core/java/android/net/ |
NetworkAgent.java | 52 private static final int BASE = Protocol.BASE_NETWORK_AGENT; 59 public static final int CMD_SUSPECT_BAD = BASE; 67 public static final int EVENT_NETWORK_INFO_CHANGED = BASE + 1; 74 public static final int EVENT_NETWORK_CAPABILITIES_CHANGED = BASE + 2; 81 public static final int EVENT_NETWORK_PROPERTIES_CHANGED = BASE + 3; 83 /* centralize place where base network score, and network score scaling, will be 93 public static final int EVENT_NETWORK_SCORE_CHANGED = BASE + 4; 100 public static final int EVENT_UID_RANGES_ADDED = BASE + 5; 107 public static final int EVENT_UID_RANGES_REMOVED = BASE + 6; 116 public static final int CMD_REPORT_NETWORK_STATUS = BASE + 7 [all...] |
/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/valgrind/main/auxprogs/ |
valgrind-di-server.c | 231 # define BASE 65521UL /* largest prime smaller than 65536 */ 234 255n(n+1)/2 + (n+1)(BASE-1) <= 2^32-1 */ 246 if (a >= (BASE << 16)) a -= (BASE << 16); \ 247 if (a >= (BASE << 15)) a -= (BASE << 15); \ 248 if (a >= (BASE << 14)) a -= (BASE << 14); \ 249 if (a >= (BASE << 13)) a -= (BASE << 13); [all...] |
/external/valgrind/main/coregrind/ |
m_libcbase.c | 873 /* Returns the base-2 logarithm of x. Returns -1 if x is not a power 896 void VG_(ssort)( void* base, SizeT nmemb, SizeT size, 899 bm_qsort(base,nmemb,size,compar); 966 # define BASE 65521UL /* largest prime smaller than 65536 */ 969 255n(n+1)/2 + (n+1)(BASE-1) <= 2^32-1 */ 981 if (a >= (BASE << 16)) a -= (BASE << 16); \ 982 if (a >= (BASE << 15)) a -= (BASE << 15); \ 983 if (a >= (BASE << 14)) a -= (BASE << 14); [all...] |
/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;
|
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/ |
WifiMonitor.java | 401 private static final int BASE = Protocol.BASE_WIFI_MONITOR; 404 public static final int SUP_CONNECTION_EVENT = BASE + 1; 406 public static final int SUP_DISCONNECTION_EVENT = BASE + 2; 408 public static final int NETWORK_CONNECTION_EVENT = BASE + 3; 410 public static final int NETWORK_DISCONNECTION_EVENT = BASE + 4; 412 public static final int SCAN_RESULTS_EVENT = BASE + 5; 414 public static final int SUPPLICANT_STATE_CHANGE_EVENT = BASE + 6; 416 public static final int AUTHENTICATION_FAILURE_EVENT = BASE + 7; 418 public static final int WPS_SUCCESS_EVENT = BASE + 8; 420 public static final int WPS_FAIL_EVENT = BASE + 9 [all...] |
/external/clang/include/clang/Sema/ |
Template.h | 398 #define DECL(DERIVED, BASE) \ 403 #define OBJCCONTAINER(DERIVED, BASE) 404 #define FILESCOPEASM(DERIVED, BASE) 405 #define IMPORT(DERIVED, BASE) 406 #define LINKAGESPEC(DERIVED, BASE) 407 #define OBJCCOMPATIBLEALIAS(DERIVED, BASE) 408 #define OBJCMETHOD(DERIVED, BASE) 409 #define OBJCIVAR(DERIVED, BASE) 410 #define OBJCPROPERTY(DERIVED, BASE) 411 #define OBJCPROPERTYIMPL(DERIVED, BASE) [all...] |
/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/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/chromium_org/base/strings/ |
string_number_conversions.cc | 5 #include "base/strings/string_number_conversions.h" 14 #include "base/logging.h" 15 #include "base/scoped_clear_errno.h" 16 #include "base/strings/utf_string_conversions.h" 17 #include "base/third_party/dmg_fp/dmg_fp.h" 19 namespace base { namespace 97 // Utility to convert a character to a digit in a given base 98 template<typename CHAR, int BASE, bool BASE_LTE_10> class BaseCharToDigit { 102 template<typename CHAR, int BASE> class BaseCharToDigit<CHAR, BASE, true> [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/chromium_org/third_party/libvpx/source/libvpx/vpx_mem/memory_manager/include/ |
hmm_intrnl.h | 25 #define U(BASE) HMM_UNIQUE(BASE) 149 #define AVL_UNIQUE(BASE) U(avl_ ## BASE)
|
/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/base/media/mca/filterfw/native/core/ |
value.cpp | 52 template<typename BASE, int TYPEID> 53 Value MakePtrValue(const BASE* values, int count) { 56 result.value = malloc(sizeof(BASE) * count); 57 memcpy(result.value, values, sizeof(BASE) * count); 76 template<typename BASE, int TYPEID> 77 int SetPtrValue(Value* value, const BASE* new_values, int count) { 80 value->value = malloc(sizeof(BASE) * count); 84 memcpy(value->value, new_values, sizeof(BASE) * count);
|
/frameworks/base/wifi/java/android/net/wifi/ |
WifiScanner.java | 558 private static final int BASE = Protocol.BASE_WIFI_SCANNER; 561 public static final int CMD_SCAN = BASE + 0; 563 public static final int CMD_START_BACKGROUND_SCAN = BASE + 2; 565 public static final int CMD_STOP_BACKGROUND_SCAN = BASE + 3; 567 public static final int CMD_GET_SCAN_RESULTS = BASE + 4; 569 public static final int CMD_SCAN_RESULT = BASE + 5; 571 public static final int CMD_SET_HOTLIST = BASE + 6; 573 public static final int CMD_RESET_HOTLIST = BASE + 7; 575 public static final int CMD_AP_FOUND = BASE + 9; 577 public static final int CMD_AP_LOST = BASE + 10 [all...] |
/prebuilts/gcc/darwin-x86/x86/x86_64-linux-android-4.8/lib/gcc/x86_64-linux-android/4.8/include/ |
avx2intrin.h | [all...] |