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

1 2 3 4 5 6 7 8 91011>>

  /frameworks/base/telephony/java/com/android/internal/telephony/
DctConstants.java 61 public static final int BASE = Protocol.BASE_DATA_CONNECTION_TRACKER;
62 public static final int EVENT_DATA_SETUP_COMPLETE = BASE + 0;
63 public static final int EVENT_RADIO_AVAILABLE = BASE + 1;
64 public static final int EVENT_RECORDS_LOADED = BASE + 2;
65 public static final int EVENT_TRY_SETUP_DATA = BASE + 3;
66 public static final int EVENT_DATA_STATE_CHANGED = BASE + 4;
67 public static final int EVENT_POLL_PDP = BASE + 5;
68 public static final int EVENT_RADIO_OFF_OR_NOT_AVAILABLE = BASE + 6;
69 public static final int EVENT_VOICE_CALL_STARTED = BASE + 7;
70 public static final int EVENT_VOICE_CALL_ENDED = BASE + 8
    [all...]
  /hardware/broadcom/libbt/
gen-buildcfg.sh 16 BASE=`basename $2`
17 BASE=`echo ${BASE} | tr "[:lower:]" "[:upper:]"`
18 BASE=`echo ${BASE} | sed -e "s/\\./_/"`
19 PROTECT="_${BASE}"
  /hardware/qcom/bt/libbt-vendor/
gen-buildcfg.sh 16 BASE=`basename $2`
17 BASE=`echo ${BASE} | tr "[:lower:]" "[:upper:]"`
18 BASE=`echo ${BASE} | sed -e "s/\\./_/"`
19 PROTECT="_${BASE}"
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/include/isl/
multi.h 10 #define ISL_DECLARE_MULTI(BASE) \
11 __isl_give isl_multi_##BASE *isl_multi_##BASE##_from_##BASE##_list( \
12 __isl_take isl_space *space, __isl_take isl_##BASE##_list *list); \
13 const char *isl_multi_##BASE##_get_tuple_name( \
14 __isl_keep isl_multi_##BASE *multi, enum isl_dim_type type); \
15 __isl_give isl_multi_##BASE *isl_multi_##BASE##_set_##BASE( \
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/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/syslinux/com32/lib/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/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...]
  /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...]
  /external/curl/tests/unit/
unit1303.c 47 /* BASE is just a define to make us fool around with decently large number so
49 #define BASE 1000000
83 {BASE + 4, 0, 10000, 8000, FALSE, 6000, "6 seconds should be left"},
84 {BASE + 4, 990000, 10000, 8000, FALSE, 5010, "5010 ms should be left"},
85 {BASE + 10, 0, 10000, 8000, FALSE, -1, "timeout is -1, expired"},
86 {BASE + 12, 0, 10000, 8000, FALSE, -2000, "-2000, overdue 2 seconds"},
89 {BASE + 4, 0, 10000, 8000, TRUE, 4000, "4 seconds should be left"},
90 {BASE + 4, 990000, 10000, 8000, TRUE, 3010, "3010 ms should be left"},
91 {BASE + 8, 0, 10000, 8000, TRUE, -1, "timeout is -1, expired"},
92 {BASE + 10, 0, 10000, 8000, TRUE, -2000, "-2000, overdue 2 seconds"}
    [all...]
  /external/e2fsprogs/lib/et/
compile_et.sh.in 41 BASE=`basename $ROOT`
48 $AWK -f "${DIR}/et_h.awk" "outfile=${BASE}.h.$$" "outfn=${BASE}.h" "$ROOT.et"
49 if test -f ${BASE}.h && cmp -s ${BASE}.h.$$ ${BASE}.h ; then
50 rm -f ${BASE}.h.$$
52 mv -f ${BASE}.h.$$ ${BASE}.h
53 chmod a-w ${BASE}.
    [all...]
  /external/clang/include/clang/AST/
ASTFwd.h 21 #define DECL(DERIVED, BASE) class DERIVED##Decl;
24 #define STMT(DERIVED, BASE) class DERIVED;
27 #define TYPE(DERIVED, BASE) class DERIVED##Type;
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/clang/include/clang/AST/
ASTFwd.h 21 #define DECL(DERIVED, BASE) class DERIVED##Decl;
24 #define STMT(DERIVED, BASE) class DERIVED;
27 #define TYPE(DERIVED, BASE) class DERIVED##Type;
  /prebuilts/clang/host/darwin-x86/clang-4393122/include/clang/AST/
ASTFwd.h 21 #define DECL(DERIVED, BASE) class DERIVED##Decl;
24 #define STMT(DERIVED, BASE) class DERIVED;
27 #define TYPE(DERIVED, BASE) class DERIVED##Type;
  /prebuilts/clang/host/darwin-x86/clang-4479392/include/clang/AST/
ASTFwd.h 21 #define DECL(DERIVED, BASE) class DERIVED##Decl;
24 #define STMT(DERIVED, BASE) class DERIVED;
27 #define TYPE(DERIVED, BASE) class DERIVED##Type;
  /prebuilts/clang/host/darwin-x86/clang-4579689/include/clang/AST/
ASTFwd.h 21 #define DECL(DERIVED, BASE) class DERIVED##Decl;
24 #define STMT(DERIVED, BASE) class DERIVED;
27 #define TYPE(DERIVED, BASE) class DERIVED##Type;
  /prebuilts/clang/host/darwin-x86/clang-4630689/include/clang/AST/
ASTFwd.h 21 #define DECL(DERIVED, BASE) class DERIVED##Decl;
24 #define STMT(DERIVED, BASE) class DERIVED;
27 #define TYPE(DERIVED, BASE) class DERIVED##Type;
  /prebuilts/clang/host/darwin-x86/clang-4639204/include/clang/AST/
ASTFwd.h 21 #define DECL(DERIVED, BASE) class DERIVED##Decl;
24 #define STMT(DERIVED, BASE) class DERIVED;
27 #define TYPE(DERIVED, BASE) class DERIVED##Type;
  /prebuilts/clang/host/darwin-x86/clang-4691093/include/clang/AST/
ASTFwd.h 21 #define DECL(DERIVED, BASE) class DERIVED##Decl;
24 #define STMT(DERIVED, BASE) class DERIVED;
27 #define TYPE(DERIVED, BASE) class DERIVED##Type;
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/clang/include/clang/AST/
ASTFwd.h 21 #define DECL(DERIVED, BASE) class DERIVED##Decl;
24 #define STMT(DERIVED, BASE) class DERIVED;
27 #define TYPE(DERIVED, BASE) class DERIVED##Type;
  /prebuilts/clang/host/linux-x86/clang-4393122/include/clang/AST/
ASTFwd.h 21 #define DECL(DERIVED, BASE) class DERIVED##Decl;
24 #define STMT(DERIVED, BASE) class DERIVED;
27 #define TYPE(DERIVED, BASE) class DERIVED##Type;
  /prebuilts/clang/host/linux-x86/clang-4479392/include/clang/AST/
ASTFwd.h 21 #define DECL(DERIVED, BASE) class DERIVED##Decl;
24 #define STMT(DERIVED, BASE) class DERIVED;
27 #define TYPE(DERIVED, BASE) class DERIVED##Type;
  /prebuilts/clang/host/linux-x86/clang-4579689/include/clang/AST/
ASTFwd.h 21 #define DECL(DERIVED, BASE) class DERIVED##Decl;
24 #define STMT(DERIVED, BASE) class DERIVED;
27 #define TYPE(DERIVED, BASE) class DERIVED##Type;
  /prebuilts/clang/host/linux-x86/clang-4630689/include/clang/AST/
ASTFwd.h 21 #define DECL(DERIVED, BASE) class DERIVED##Decl;
24 #define STMT(DERIVED, BASE) class DERIVED;
27 #define TYPE(DERIVED, BASE) class DERIVED##Type;
  /prebuilts/clang/host/linux-x86/clang-4639204/include/clang/AST/
ASTFwd.h 21 #define DECL(DERIVED, BASE) class DERIVED##Decl;
24 #define STMT(DERIVED, BASE) class DERIVED;
27 #define TYPE(DERIVED, BASE) class DERIVED##Type;
  /prebuilts/clang/host/linux-x86/clang-4691093/include/clang/AST/
ASTFwd.h 21 #define DECL(DERIVED, BASE) class DERIVED##Decl;
24 #define STMT(DERIVED, BASE) class DERIVED;
27 #define TYPE(DERIVED, BASE) class DERIVED##Type;

Completed in 1056 milliseconds

1 2 3 4 5 6 7 8 91011>>