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

1234

/external/bluetooth/bluedroid/tools/
H A Dgen-buildcfg.sh16 BASE=`basename $2`
17 BASE=`echo ${BASE} | tr "[:lower:]" "[:upper:]"`
18 BASE=`echo ${BASE} | sed -e "s/\\./_/"`
19 PROTECT="_${BASE}"
/external/chromium_org/sdch/open-vcdiff/src/zlib/
H A Dadler32.c11 #define BASE 65521UL /* largest prime smaller than 65536 */ macro
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 << 1
[all...]
/external/chromium_org/third_party/zlib/
H A Dadler32.c14 #define BASE 65521UL /* 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 */
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 << 1
[all...]
/external/chromium_org/third_party/mesa/src/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/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.h18 #define DECL(DERIVED, BASE) class DERIVED##Decl;
21 #define STMT(DERIVED, BASE) class DERIVED;
24 #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); }
/external/pdfium/core/src/fxcodec/fx_zlib/zlib_v128/
H A Dfx_zlib_adler32.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/qemu/distrib/zlib-1.2.8/
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/chromium_org/tools/gyp/test/configurations/inheritance/
H A Dconfigurations.c5 #ifdef BASE
/external/chromium_org/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/chromium_org/third_party/libvpx/source/libvpx/vpx_mem/memory_manager/include/
H A Dhmm_cnfg.h47 #define HMM_UNIQUE(BASE) hmm_ ## BASE
76 #define HMM_UNIQUE(BASE) thmm_ ## BASE
/external/libvpx/libvpx/vpx_mem/memory_manager/include/
H A Dhmm_cnfg.h47 #define HMM_UNIQUE(BASE) hmm_ ## BASE
76 #define HMM_UNIQUE(BASE) thmm_ ## BASE
/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/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" },
/external/valgrind/main/auxprogs/
H A Dvalgrind-di-server.c231 # define BASE 65521UL /* largest prime smaller than 65536 */ macro
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 << 1
345 # undef BASE macro
[all...]
/external/valgrind/main/coregrind/
H A Dm_libcbase.c966 # define BASE 65521UL /* largest prime smaller than 65536 */ macro
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); \
984 if (a >= (BASE << 13)) a -= (BASE << 1
1080 # 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;

Completed in 2707 milliseconds

1234