Searched refs:BUILD (Results 1 - 25 of 85) sorted by relevance

1234

/external/valgrind/drd/scripts/
H A Ddownload-and-build-firefox9 BUILD="${SRC}-build"
12 MOZCONFIG="$BUILD/mozconfig-firefox"
32 rm -rf ${BUILD} || exit $?
35 mkdir -p ${BUILD} || exit $?
36 cd ${BUILD} || exit $?
48 mk_add_options MOZ_OBJDIR="$BUILD"
H A Ddownload-and-build-gcc14 BUILD=${SRC}-build
41 rm -rf ${BUILD} || exit $?
44 mkdir -p ${BUILD} || exit $?
45 cd ${BUILD} || exit $?
/external/libjpeg-turbo/
H A Djconfigint.h3 #define BUILD "" macro
/external/vboot_reference/
H A DMakefile7 # make BUILD=<dir>
38 # We should only run pwd once, not every time we refer to ${BUILD}.
41 BUILD = ${SRCDIR}/build macro
42 export BUILD
72 TEST_INSTALL_DIR = ${BUILD}/install_for_test
192 COV_INFO = ${BUILD}/coverage.info
227 BUILD_RUN = ${BUILD}
232 BUILD_RUN = $(subst ${SYSROOT},,${BUILD})
265 FWLIB = ${BUILD}/vboot_fw.a
270 FWLIB2X = ${BUILD}/vboot_fw2
[all...]
/external/zlib/src/nintendods/
H A DMakefile13 # BUILD is the directory where object files & intermediate files will be placed
19 BUILD := build macro
50 ifneq ($(BUILD),$(notdir $(CURDIR)))
58 export DEPSDIR := $(CURDIR)/$(BUILD)
84 -I$(CURDIR)/$(BUILD)
86 .PHONY: $(BUILD) clean all
89 all: $(BUILD)
96 $(BUILD): lib
98 @$(MAKE) --no-print-directory -C $(BUILD) -f $(CURDIR)/Makefile
103 @rm -fr $(BUILD) li
[all...]
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/
H A DAnnotationVisibility.java37 public static final int BUILD = 0; field in class:AnnotationVisibility
53 return BUILD;
/external/vboot_reference/tests/futility/
H A Drun_test_scripts.sh18 # The Makefile should export the $BUILD directory, but if it's not just warn
20 if [ -z "${BUILD:-}" ]; then
21 BUILD=$(dirname "${BINDIR}")
22 yellow "Assuming BUILD=$BUILD"
29 OUTDIR="${BUILD}/tests/futility_test_results"
34 export BUILD
/external/antlr/antlr-3.4/runtime/Perl5/lib/ANTLR/Runtime/
H A DException.pm9 sub BUILD { subroutine
/external/dexmaker/src/dx/java/com/android/dx/rop/annotation/
H A DAnnotationVisibility.java26 BUILD("build"), enum constant in enum:AnnotationVisibility
/external/libcap/progs/
H A DMakefile12 BUILD=$(PROGS) macro
19 all: $(BUILD)
21 $(BUILD): %: %.o
38 rm -f *.o $(BUILD) tcapsh ping hack.sh
/external/libjpeg-turbo/release/
H A Dmakecygwinpkg.in20 BUILD=@BUILD@
28 rm -f $PACKAGE_NAME-$VERSION-$BUILD.tar.bz2
38 tar cfj ../$PACKAGE_NAME-$VERSION-$BUILD.tar.bz2 *
H A Dmakedpkg.in55 | sed s/{__VERSION}/$VERSION/g | sed s/{__BUILD}/$BUILD/g \
68 BUILD=@BUILD@
/external/v8/test/cctest/wasm/
H A Dtest-run-wasm.cc33 BUILD(r, WASM_I8(kExpectedValue));
41 BUILD(r, WASM_I8(kExpectedValue));
49 BUILD(r, WASM_I8(-99), WASM_I8(kExpectedValue));
57 BUILD(r, WASM_I8(value));
67 BUILD(r, WASM_I32V_5(kExpectedValue));
76 BUILD(r, WASM_I32V(kExpectedValue));
85 BUILD(r, kExprMemorySize);
92 BUILD(r, WASM_GET_LOCAL(0));
99 BUILD(r, WASM_GET_LOCAL(0));
107 BUILD(
[all...]
H A Dtest-run-wasm-asmjs.cc43 BUILD(r, WASM_BINOP(kExprI32AsmjsDivS, WASM_GET_LOCAL(0), WASM_GET_LOCAL(1)));
55 BUILD(r, WASM_BINOP(kExprI32AsmjsRemS, WASM_GET_LOCAL(0), WASM_GET_LOCAL(1)));
67 BUILD(r, WASM_BINOP(kExprI32AsmjsDivU, WASM_GET_LOCAL(0), WASM_GET_LOCAL(1)));
79 BUILD(r, WASM_BINOP(kExprI32AsmjsRemU, WASM_GET_LOCAL(0), WASM_GET_LOCAL(1)));
90 BUILD(r, WASM_UNOP(kExprI32AsmjsSConvertF32, WASM_GET_LOCAL(0)));
100 BUILD(r, WASM_UNOP(kExprI32AsmjsSConvertF64, WASM_GET_LOCAL(0)));
110 BUILD(r, WASM_UNOP(kExprI32AsmjsUConvertF32, WASM_GET_LOCAL(0)));
120 BUILD(r, WASM_UNOP(kExprI32AsmjsUConvertF64, WASM_GET_LOCAL(0)));
134 BUILD(r, WASM_UNOP(kExprI32AsmjsLoadMem, WASM_GET_LOCAL(0)));
154 BUILD(
[all...]
H A Dtest-run-wasm-64.cc105 BUILD(r, WASM_I64V_9(kExpectedValue));
116 BUILD(r, WASM_I64V(kExpectedValue));
126 BUILD(r, WASM_RETURN1(WASM_GET_LOCAL(0)));
135 BUILD(r, WASM_I64_ADD(WASM_GET_LOCAL(0), WASM_GET_LOCAL(1)));
145 BUILD(r, WASM_I64_SUB(WASM_GET_LOCAL(0), WASM_GET_LOCAL(1)));
155 BUILD(r, WASM_I64_DIVS(WASM_GET_LOCAL(0), WASM_GET_LOCAL(1)));
173 BUILD(r, WASM_I64_DIVS(WASM_GET_LOCAL(0), WASM_GET_LOCAL(1)));
185 BUILD(r, WASM_I64_DIVS(WASM_GET_LOCAL(0), WASM_I64V_1(denom)));
200 BUILD(r, WASM_I64_DIVU(WASM_GET_LOCAL(0), WASM_GET_LOCAL(1)));
216 BUILD(
[all...]
H A Dtest-wasm-trap-position.cc72 BUILD(comp1, WASM_UNREACHABLE);
107 BUILD(comp1, WASM_IF(WASM_ONE,
113 BUILD(comp2, WASM_NOP, WASM_CALL_FUNCTION0(wasm_index));
H A Dtest-wasm-stack.cc90 BUILD(comp1, WASM_NOP, WASM_CALL_FUNCTION0(js_throwing_index));
94 BUILD(comp2, WASM_CALL_FUNCTION0(wasm_index));
133 BUILD(comp1, WASM_UNREACHABLE);
138 BUILD(comp2, WASM_CALL_FUNCTION0(wasm_index));
/external/selinux/policycoreutils/mcstrans/utils/
H A Dcallgrind-mcstransd4 runcon -u system_u -r system_r -t setrans_t -l s15:c0.c1023 -- valgrind --tool=callgrind /usr/src/redhat/BUILD/*/src/mcstransd
/external/vboot_reference/tests/
H A Dtest_using_qemu.sh30 -E BUILD=${BUILD_RUN} \
H A Dcommon.sh11 BUILD_DIR="${BUILD}"
/external/dnsmasq/contrib/slackware-dnsmasq/
H A Ddnsmasq.SlackBuild7 BUILD=${BUILD:-1}
55 makepkg -l y -c n ../dnsmasq-$VERSION-$ARCH-$BUILD.tgz
/external/conscrypt/
H A Dupdate_prebuilts.sh97 echo SKIPPING BUILD OF CONSCRYPT PREBUILTS
/external/toybox/scripts/
H A Dmake.sh66 BUILD="$(echo ${CROSS_COMPILE}${CC} $CFLAGS -I . $OPTIMIZE $GITHASH)"
80 echo "BUILD=\"$BUILD\""
87 echo '$BUILD $FILES $LINK'
245 # This is a parallel version of: do_loudly $BUILD $FILES $LINK || exit 1
266 do_loudly $BUILD -c $i -o $OUT &
292 do_loudly $BUILD $LFILES $LINK || exit 1
/external/v8/src/wasm/
H A Dast-decoder.cc93 #define BUILD(func, ...) (build() ? builder_->func(__VA_ARGS__) : nullptr) macro
636 node = BUILD(Unop, opcode, val.node, position());
642 node = BUILD(Binop, opcode, lval.node, rval.node, position());
681 BUILD(Branch, cond.node, &if_true, &if_false);
792 BUILD(Branch, cond.node, &tenv->control, &fenv->control);
812 TFNode* sw = BUILD(Switch, operand.table_count + 1, key.node);
820 ? BUILD(IfDefault, sw)
821 : BUILD(IfValue, i, sw);
850 Push(kAstEnd, BUILD(Unreachable, position()));
856 Push(kAstI32, BUILD(Int32Constan
[all...]
/external/icu/icu4j/
H A Dadjust_icudt_path.mk9 # Usage : include this makefile after your $(BUILD*) rule.

Completed in 649 milliseconds

1234