/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...] |
/external/chromium_org/tools/gyp/ |
gyp | 6 BASE=`dirname $0` 7 python $BASE/gyp_main.py "$@"
|
/external/bluetooth/bluedroid/tools/ |
gen-buildcfg.sh | 16 BASE=`basename $2` 17 BASE=`echo ${BASE} | tr "[:lower:]" "[:upper:]"` 18 BASE=`echo ${BASE} | sed -e "s/\\./_/"` 19 PROTECT="_${BASE}"
|
/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/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/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_org/third_party/mesa/src/src/mesa/sparc/ |
sparc_matrix.h | 52 #define LDMATRIX_0_1_2_3_12_13_14_15(BASE) \ 53 ldd [BASE + ( 0 * 0x4)], M0; \ 54 ldd [BASE + ( 2 * 0x4)], M2; \ 55 ldd [BASE + (12 * 0x4)], M12; \ 56 ldd [BASE + (14 * 0x4)], M14 58 #define LDMATRIX_0_1_12_13(BASE) \ 59 ldd [BASE + ( 0 * 0x4)], M0; \ 60 ldd [BASE + (12 * 0x4)], M12 62 #define LDMATRIX_0_12_13(BASE) \ 63 ld [BASE + ( 0 * 0x4)], M0; [all...] |
/external/mesa3d/src/mesa/sparc/ |
sparc_matrix.h | 52 #define LDMATRIX_0_1_2_3_12_13_14_15(BASE) \ 53 ldd [BASE + ( 0 * 0x4)], M0; \ 54 ldd [BASE + ( 2 * 0x4)], M2; \ 55 ldd [BASE + (12 * 0x4)], M12; \ 56 ldd [BASE + (14 * 0x4)], M14 58 #define LDMATRIX_0_1_12_13(BASE) \ 59 ldd [BASE + ( 0 * 0x4)], M0; \ 60 ldd [BASE + (12 * 0x4)], M12 62 #define LDMATRIX_0_12_13(BASE) \ 63 ld [BASE + ( 0 * 0x4)], M0; [all...] |
/frameworks/native/include/ui/ |
TVecHelpers.h | 61 * operators on a vector of type BASE<T>. 63 * BASE only needs to implement operator[] and size(). 64 * By simply inheriting from TVec{Add|Product}Operators<BASE, T> BASE will automatically 68 template <template<typename T> class BASE, typename T> 75 BASE<T>& operator += (const BASE<OTHER>& v) { 76 BASE<T>& rhs = static_cast<BASE<T>&>(*this); 77 for (size_t i=0 ; i<BASE<T>::size() ; i++) [all...] |
TMatHelpers.h | 179 * operators on a vector of type BASE<T>. 181 * BASE only needs to implement operator[] and size(). 182 * By simply inheriting from TMatProductOperators<BASE, T> BASE will automatically 186 template <template<typename T> class BASE, typename T> 190 BASE<T>& operator *= (T v) { 191 BASE<T>& lhs(static_cast< BASE<T>& >(*this)); 199 BASE<T>& operator /= (T v) { 200 BASE<T>& lhs(static_cast< BASE<T>& >(*this)) [all...] |
/external/eigen/bench/btl/data/ |
smooth_all.sh | 10 BASE=${FILE##*/} 11 ./smooth ${ORIG_DIR}/${BASE} 4 ${SMOOTH_DIR}/${BASE}_tmp 12 ./regularize ${SMOOTH_DIR}/${BASE}_tmp 2500 15000 ${SMOOTH_DIR}/${BASE} 13 rm -f ${SMOOTH_DIR}/${BASE}_tmp 21 BASE=${FILE##*/} 22 ./smooth ${ORIG_DIR}/${BASE} 4 ${SMOOTH_DIR}/${BASE}_tmp 23 ./regularize ${SMOOTH_DIR}/${BASE}_tmp 50 180 ${SMOOTH_DIR}/${BASE [all...] |
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...] |
/external/clang/include/clang/AST/ |
ASTFwd.h | 18 #define DECL(DERIVED, BASE) class DERIVED##Decl; 21 #define STMT(DERIVED, BASE) class DERIVED; 24 #define TYPE(DERIVED, BASE) class DERIVED##Type;
|
/external/e2fsprogs/lib/et/ |
compile_et.sh.in | 42 BASE=`basename $ROOT` 49 $AWK -f "${DIR}/et_h.awk" "outfile=${BASE}.h.$$" "outfn=${BASE}.h" "$ROOT.et" 50 if test -f ${BASE}.h && cmp -s ${BASE}.h.$$ ${BASE}.h ; then 51 rm -f ${BASE}.h.$$ 53 mv -f ${BASE}.h.$$ ${BASE}.h 54 chmod -w ${BASE}. [all...] |
/external/grub/netboot/ |
3c595.c | 74 outw(RX_DISABLE, BASE + VX_COMMAND); 75 outw(RX_DISCARD_TOP_PACK, BASE + VX_COMMAND); 77 outw(TX_DISABLE, BASE + VX_COMMAND); 78 outw(STOP_TRANSCEIVER, BASE + VX_COMMAND); 80 outw(RX_RESET, BASE + VX_COMMAND); 82 outw(TX_RESET, BASE + VX_COMMAND); 84 outw(C_INTR_LATCH, BASE + VX_COMMAND); 85 outw(SET_RD_0_MASK, BASE + VX_COMMAND); 86 outw(SET_INTR_MASK, BASE + VX_COMMAND); 87 outw(SET_RX_FILTER, BASE + VX_COMMAND) [all...] |
3c509.c | 72 outw(RX_DISABLE, BASE + EP_COMMAND); 73 outw(RX_DISCARD_TOP_PACK, BASE + EP_COMMAND); 74 while (inw(BASE + EP_STATUS) & S_COMMAND_IN_PROGRESS) 76 outw(TX_DISABLE, BASE + EP_COMMAND); 77 outw(STOP_TRANSCEIVER, BASE + EP_COMMAND); 79 outw(RX_RESET, BASE + EP_COMMAND); 80 outw(TX_RESET, BASE + EP_COMMAND); 81 outw(C_INTR_LATCH, BASE + EP_COMMAND); 82 outw(SET_RD_0_MASK, BASE + EP_COMMAND); 83 outw(SET_INTR_MASK, BASE + EP_COMMAND) [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 30 #define DECL(DERIVED, BASE) { NKI_##BASE, #DERIVED "Decl" }, 33 #define STMT(DERIVED, BASE) { NKI_##BASE, #DERIVED }, 36 #define TYPE(DERIVED, BASE) { NKI_##BASE, #DERIVED "Type" }, 48 bool ASTNodeKind::isBaseOf(NodeKindId Base, NodeKindId Derived) { 49 if (Base == NKI_None || Derived == NKI_None) return false; 50 while (Derived != Base && Derived != NKI_None [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...] |
/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...] |
/external/chromium_org/v8/tools/ |
android-ll-prof.sh | 45 BASE=`cd $(dirname "$0")/..; pwd` 46 DEPLOY="$BASE/deploy" 51 cp "$BASE/out/android_arm.$MODE/d8" "$DEPLOY/data/local/tmp/v8/d8" 66 $BASE/tools/ll_prof.py --host-root="$BASE/deploy" \
|
/frameworks/base/wifi/java/android/net/wifi/p2p/ |
WifiP2pManager.java | 287 private static final int BASE = Protocol.BASE_WIFI_P2P_MANAGER; 290 public static final int DISCOVER_PEERS = BASE + 1; 292 public static final int DISCOVER_PEERS_FAILED = BASE + 2; 294 public static final int DISCOVER_PEERS_SUCCEEDED = BASE + 3; 297 public static final int STOP_DISCOVERY = BASE + 4; 299 public static final int STOP_DISCOVERY_FAILED = BASE + 5; 301 public static final int STOP_DISCOVERY_SUCCEEDED = BASE + 6; 304 public static final int CONNECT = BASE + 7; 306 public static final int CONNECT_FAILED = BASE + 8; 308 public static final int CONNECT_SUCCEEDED = BASE + 9 [all...] |
/external/chromium_org/tools/gyp/test/configurations/inheritance/ |
configurations.c | 5 #ifdef BASE 6 printf("Base configuration\n");
|
/external/libvpx/libvpx/vpx_mem/memory_manager/include/ |
hmm_cnfg.h | 45 #define HMM_UNIQUE(BASE) hmm_ ## BASE 74 #define HMM_UNIQUE(BASE) thmm_ ## BASE
|