Searched refs:BASE (Results 1 - 25 of 110) sorted by relevance

12345

/external/curl/tests/unit/
H A Dunit1303.c43 /* BASE is just a define to make us fool around with decently large number so
45 #define BASE 1000000 macro
79 {BASE + 4, 0, 10000, 8000, FALSE, 6000, "6 seconds should be left"},
80 {BASE + 4, 990000, 10000, 8000, FALSE, 5010, "5010 ms should be left"},
81 {BASE + 10, 0, 10000, 8000, FALSE, -1, "timeout is -1, expired"},
82 {BASE + 12, 0, 10000, 8000, FALSE, -2000, "-2000, overdue 2 seconds"},
85 {BASE + 4, 0, 10000, 8000, TRUE, 4000, "4 seconds should be left"},
86 {BASE + 4, 990000, 10000, 8000, TRUE, 3010, "3010 ms should be left"},
87 {BASE + 8, 0, 10000, 8000, TRUE, -1, "timeout is -1, expired"},
88 {BASE
[all...]
/external/mesa3d/src/mesa/sparc/
H A Dsparc_matrix.h52 #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
[all...]
/external/eigen/bench/btl/data/
H A Dsmooth_all.sh10 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}_tm
[all...]
H A Dmk_gnuplot_script.sh22 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
[all...]
/external/e2fsprogs/lib/et/
H A Dcompile_et.sh.in42 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/clang/include/clang/AST/
H A DASTFwd.h21 #define DECL(DERIVED, BASE) class DERIVED##Decl;
24 #define STMT(DERIVED, BASE) class DERIVED;
27 #define TYPE(DERIVED, BASE) class DERIVED##Type;
H A DDeclVisitor.h40 #define DECL(DERIVED, BASE) \
50 #define DECL(DERIVED, BASE) \
51 RetTy Visit##DERIVED##Decl(PTR(DERIVED##Decl) D) { DISPATCH(BASE, BASE); }
H A DExprOpenMP.h46 enum { BASE, LOWER_BOUND, LENGTH, END_EXPR }; enumerator in enum:clang::OMPArraySectionExpr::__anon922
70 SubExprs[BASE] = Base;
82 Expr *getBase() { return cast<Expr>(SubExprs[BASE]); }
83 const Expr *getBase() const { return cast<Expr>(SubExprs[BASE]); }
85 void setBase(Expr *E) { SubExprs[BASE] = E; }
124 return child_range(&SubExprs[BASE], &SubExprs[END_EXPR]);
/external/pdfium/third_party/zlib_v128/
H A Dadler32.c14 #define BASE 65521 /* largest prime smaller than 65536 */ macro
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/
H A Dadler32.c14 #define BASE 65521 /* largest prime smaller than 65536 */ macro
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/v8/tools/gyp/test/configurations/inheritance/
H A Dconfigurations.c5 #ifdef BASE
/external/v8/tools/
H A Dandroid-ll-prof.sh45 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" \
/external/f2fs-tools/scripts/
H A Ddumpf2fs.sh5 BASE=0x200000
11 let addr=$BASE
16 let addr=$BASE+0x200000
20 let addr=$BASE
22 let addr=$BASE+0x200000
26 let addr=$BASE
30 let addr=$BASE+0x200000
34 let addr=$BASE
36 let addr=$BASE+0x200000
/external/clang/test/SemaCXX/
H A Ddecl-init-ref.cpp5 struct BASE { struct
13 class B : public BASE , public BASE1
H A Dambig-user-defined-conversions.cpp4 struct BASE { struct in namespace:test0
11 struct B : public BASE, BASE1 {};
/external/e2fsprogs/lib/ss/
H A Dmk_cmds.sh.in43 BASE=`basename "$ROOT"`
58 rm -f "${BASE}.c"
59 mv -f "${TMP}" "${BASE}.c"
60 chmod -w "${BASE}.c"
/external/v8/test/mjsunit/wasm/
H A Dasm-wasm-heap.js20 const BASE = 1000000000;
45 view[i] = BASE | (i << 2);
86 assertEquals(BASE, load(0));
87 assertEquals(BASE | 0x30, load(0x30));
88 assertEquals(BASE | 0x704, load(0x704));
89 assertEquals(BASE | 0x704, load(0x705));
90 assertEquals(BASE | 0x704, load(0x706));
91 assertEquals(BASE | 0x704, load(0x707));
94 assertEquals(BASE | (length - 4), load(length - 4));
95 assertEquals(BASE | (lengt
[all...]
/external/valgrind/auxprogs/
H A Dvalgrind-di-server.c252 # define BASE 65521UL /* largest prime smaller than 65536 */ macro
255 255n(n+1)/2 + (n+1)(BASE-1) <= 2^32-1 */
267 if (a >= (BASE << 16)) a -= (BASE << 16); \
268 if (a >= (BASE << 15)) a -= (BASE << 15); \
269 if (a >= (BASE << 14)) a -= (BASE << 14); \
270 if (a >= (BASE << 13)) a -= (BASE << 1
366 # undef BASE macro
[all...]
/external/valgrind/coregrind/
H A Dm_libcbase.c988 # define BASE 65521UL /* largest prime smaller than 65536 */ macro
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); \
1006 if (a >= (BASE << 13)) a -= (BASE << 1
1102 # undef BASE macro
[all...]
/external/freetype/src/gzip/
H A Dadler32.c10 #define BASE 65521L /* largest prime smaller than 65536 */ macro
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/include/clang/Sema/
H A DTemplate.h405 #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 OBJCTYPEPARAM(DERIVED, BASE)
417 #define OBJCIVAR(DERIVED, BASE)
418 #define OBJCPROPERTY(DERIVED, BASE)
[all...]
/external/libweave/third_party/chromium/base/strings/
H A Dstring_number_conversions.cc57 template<typename CHAR, int BASE, bool BASE_LTE_10> class BaseCharToDigit {
61 template<typename CHAR, int BASE> class BaseCharToDigit<CHAR, BASE, true> {
64 if (c >= '0' && c < '0' + BASE) {
73 template<typename CHAR, int BASE> class BaseCharToDigit<CHAR, BASE, false> {
78 } else if (c >= 'a' && c < 'a' + BASE - 10) {
80 } else if (c >= 'A' && c < 'A' + BASE - 10) {
89 template <int BASE, typename CHAR>
91 return BaseCharToDigit<CHAR, BASE, BAS
[all...]
/external/clang/lib/AST/
H A DASTTypeTraits.cpp32 #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" },
83 #define DECL(DERIVED, BASE) \
/external/icu/android_icu4j/src/main/java/android/icu/impl/
H A DPunycode.java22 private static final int BASE = 36; field in class:Punycode
52 for(; delta>((BASE-TMIN)*TMAX)/2; count+=BASE) {
53 delta/=(BASE-TMIN);
56 return count+(((BASE-TMIN+1)*delta)/(delta+SKEW));
62 * BASE-1, or -1 if b is does not represent a value.
107 * range 0 to BASE-1. The lowercase form is used unless the uppercase flag is
212 for(q=delta, k=BASE; /* no condition */; k+=BASE) {
235 dest.append(digitToBasic(t+(q-t)%(BASE
[all...]
/external/icu/icu4c/source/common/
H A Dpunycode.cpp62 #define BASE 36 macro
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
[all...]

Completed in 625 milliseconds

12345