Home
last modified time | relevance | path

Searched refs:make (Results 1 - 25 of 611) sorted by relevance

12345678910>>...25

/third_party/mbedtls/tests/scripts/
H A Dall.sh94 # * Run `make clean`.
189 # if MAKEFLAGS is not set add the -j option to speed up invocations of make
198 # Include more verbose output for failing tests run by CMake or make
221 # Pick up "quiet" wrappers for make and cmake, which don't output very much
316 command make clean
379 # for parallel make.
414 make clean
416 WARNING_CFLAGS='-Werror -xc -std=c99' make lib
643 *make*[\ /]tests*) false;; # make test
[all...]
/third_party/skia/third_party/externals/icu/scripts/
H A Dmake_data_all.sh24 make -j 120
27 (cd data && make clean)
29 make -j 120
33 (cd data && make clean)
35 make -j 120
39 (cd data && make clean)
41 $ICUROOT/cast/patch_locale.sh && make -j 120
45 (cd data && make clean)
47 make -j 120
51 (cd data && make clea
[all...]
/third_party/node/deps/v8/third_party/wasm-api/example/
H A Dcallback.cc61 auto engine = wasm::Engine::make(); in run()
62 auto store_ = wasm::Store::make(engine.get()); in run()
81 auto module = wasm::Module::make(store, binary); in run()
89 auto print_type = wasm::FuncType::make( in run()
90 wasm::ownvec<wasm::ValType>::make(wasm::ValType::make(wasm::I32)), in run()
91 wasm::ownvec<wasm::ValType>::make(wasm::ValType::make(wasm::I32)) in run()
93 auto print_func = wasm::Func::make(store, print_type.get(), print_callback); in run()
98 auto closure_type = wasm::FuncType::make( in run()
[all...]
H A Dthreads.cc28 auto store_ = wasm::Store::make(engine); in run()
44 auto func_type = wasm::FuncType::make( in run()
45 wasm::ownvec<wasm::ValType>::make(wasm::ValType::make(wasm::I32)), in run()
46 wasm::ownvec<wasm::ValType>::make() in run()
48 auto func = wasm::Func::make(store, func_type.get(), callback, mutex); in run()
50 auto global_type = wasm::GlobalType::make( in run()
51 wasm::ValType::make(wasm::I32), wasm::CONST); in run()
52 auto global = wasm::Global::make( in run()
57 auto instance = wasm::Instance::make(stor in run()
[all...]
H A Dtrap.cc15 auto message = wasm::Name::make(std::string("callback abort"));
16 return wasm::Trap::make(store, message);
31 auto engine = wasm::Engine::make(); in run()
32 auto store_ = wasm::Store::make(engine.get()); in run()
51 auto module = wasm::Module::make(store, binary); in run()
59 auto fail_type = wasm::FuncType::make( in run()
60 wasm::ownvec<wasm::ValType>::make(), in run()
61 wasm::ownvec<wasm::ValType>::make(wasm::ValType::make(wasm::I32)) in run()
64 wasm::Func::make(stor in run()
[all...]
H A Dmulti.cc29 auto engine = wasm::Engine::make(); in run()
30 auto store_ = wasm::Store::make(engine.get()); in run()
49 auto module = wasm::Module::make(store, binary); in run()
57 auto tuple = wasm::ownvec<wasm::ValType>::make( in run()
58 wasm::ValType::make(wasm::I32), in run()
59 wasm::ValType::make(wasm::I64), in run()
60 wasm::ValType::make(wasm::I64), in run()
61 wasm::ValType::make(wasm::I32) in run()
64 wasm::FuncType::make(tuple.deep_copy(), tuple.deep_copy()); in run()
65 auto callback_func = wasm::Func::make(stor in run()
[all...]
H A Dglobal.cc55 auto engine = wasm::Engine::make(); in run()
56 auto store_ = wasm::Store::make(engine.get()); in run()
75 auto module = wasm::Module::make(store, binary); in run()
83 auto const_f32_type = wasm::GlobalType::make( in run()
84 wasm::ValType::make(wasm::F32), wasm::CONST); in run()
85 auto const_i64_type = wasm::GlobalType::make( in run()
86 wasm::ValType::make(wasm::I64), wasm::CONST); in run()
87 auto var_f32_type = wasm::GlobalType::make( in run()
88 wasm::ValType::make(wasm::F32), wasm::VAR); in run()
89 auto var_i64_type = wasm::GlobalType::make( in run()
[all...]
H A Dhello.cc23 auto engine = wasm::Engine::make(); in run()
24 auto store_ = wasm::Store::make(engine.get()); in run()
43 auto module = wasm::Module::make(store, binary); in run()
51 auto hello_type = wasm::FuncType::make( in run()
52 wasm::ownvec<wasm::ValType>::make(), wasm::ownvec<wasm::ValType>::make() in run()
54 auto hello_func = wasm::Func::make(store, hello_type.get(), hello_callback); in run()
59 auto instance = wasm::Instance::make(store, module.get(), imports); in run()
H A Dserialize.cc23 auto engine = wasm::Engine::make(); in run()
24 auto store_ = wasm::Store::make(engine.get()); in run()
43 auto module = wasm::Module::make(store, binary); in run()
63 auto hello_type = wasm::FuncType::make( in run()
64 wasm::ownvec<wasm::ValType>::make(), wasm::ownvec<wasm::ValType>::make() in run()
66 auto hello_func = wasm::Func::make(store, hello_type.get(), hello_callback); in run()
71 auto instance = wasm::Instance::make(store, deserialized.get(), imports); in run()
H A Dtable.cc75 auto engine = wasm::Engine::make(); in run()
76 auto store_ = wasm::Store::make(engine.get()); in run()
95 auto module = wasm::Module::make(store, binary); in run()
103 auto instance = wasm::Instance::make(store, module.get(), nullptr); in run()
120 auto neg_type = wasm::FuncType::make( in run()
121 wasm::ownvec<wasm::ValType>::make(wasm::ValType::make(wasm::I32)), in run()
122 wasm::ownvec<wasm::ValType>::make(wasm::ValType::make(wasm::I32)) in run()
124 auto h = wasm::Func::make(stor in run()
[all...]
/third_party/protobuf/
H A Dtests.sh5 # will need to make sure the required compilers/tools are available.
23 make -j$(nproc)
28 make check -j$(nproc) || (cat src/test-suite.log; false)
29 cd conformance && make test_cpp && cd ..
35 cd benchmarks && make cpp-benchmark && cd ..
45 ./configure LIBS=-ltcmalloc && make clean && make \
61 make dist
87 make distcheck -j$(nproc)
95 make dis
[all...]
/third_party/node/deps/v8/third_party/wasm-api/
H A Dwasm.hh130 static auto make(size_t size, T init[]) -> vec {
136 static auto make(std::string s) -> vec<char> {
143 static auto make() -> vec {
148 static auto make(Ts&&... args) -> vec {
150 return make(sizeof...(Ts), data);
183 static auto make() -> own<Config>;
197 static auto make(own<Config>&& = Config::make()) -> own<Engine>;
209 static auto make(Engine*) -> own<Store>;
246 static auto make(ValKin
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Demangle/
H A DItaniumDemangle.h2366 template <class T, class... Args> Node *make(Args &&... args) { in make() function in PODSmallVector
2531 return make<NameWithTemplateArgs>(S, TA); in parseName()
2544 return make<NameWithTemplateArgs>(N, TA); in parseName()
2563 auto *StringLitName = make<NameType>("string literal"); in parseLocalName()
2566 return make<LocalName>(Encoding, StringLitName); in parseLocalName()
2576 return make<LocalName>(Encoding, N); in parseLocalName()
2583 return make<LocalName>(Encoding, Entity); in parseLocalName()
2596 return make<StdQualifiedName>(R); in parseUnscopedName()
2623 Result = make<StructuredBindingName>(popTrailingNodeArray(BindingsBegin)); in parseUnqualifiedName()
2649 return make<UnnamedTypeNam in parseUnnamedTypeName()
[all...]
/third_party/typescript/tests/baselines/reference/
H A DdefaultDeclarationEmitNamedCorrectly.js6 export function make<P, CTor>(x: { new (): CTor & {props: P} }): Things<P, CTor> {
15 static create = make(MyComponent);
21 exports.make = void 0;
22 function make(x) { function
25 exports.make = make;
29 MyComponent.create = make(MyComponent);
40 export declare function make<P, CTor>(x: {
H A DdefaultDeclarationEmitShadowedNamedCorrectly.js7 export function make<P, CTor>(x: { new (): CTor & {props: P} }): Things<P, CTor> {
19 export const create = make(me.default);
25 exports.Something = exports.make = void 0;
27 function make(x) { function
30 exports.make = make;
40 Something.create = make(me["default"]);
50 export declare function make<P, CTor>(x: {
/third_party/mbedtls/scripts/
H A Dmemory.sh41 # make measurements with one configuration
62 make clean
63 CFLAGS=$CFLAGS_EXEC make OFLAGS=-Os lib >/dev/null 2>&1
65 CFLAGS=$CFLAGS_EXEC make OFLAGS=-Os ssl/$CLIENT >/dev/null
72 make clean
73 CFLAGS=$CFLAGS_MEM make OFLAGS=-Os lib >/dev/null 2>&1
75 CFLAGS=$CFLAGS_MEM make OFLAGS=-Os ssl/$CLIENT >/dev/null
106 make clean
107 make lib >/dev/null 2>&1
108 (cd programs && make ss
[all...]
/third_party/python/Doc/
H A DMakefile31 @echo "Please use \`make <target>' where <target> is one of"
34 @echo " html to make standalone HTML files"
36 @echo " htmlhelp to make HTML files and a HTML help project"
37 @echo " latex to make LaTeX files, you can set PAPER=a4 or PAPER=letter"
38 @echo " text to make plain text files"
39 @echo " texinfo to make Texinfo file"
40 @echo " epub to make EPUB files"
41 @echo " changes to make an overview over all changed/added/deprecated items"
69 echo "Please run 'make venv' to install local copies."; \
88 @echo "Run \`make al
[all...]
/third_party/libuv/docs/
H A Dmake.bat21 echo.Please use `make ^<target^>` where ^<target^> is one of
22 echo. html to make standalone HTML files
23 echo. dirhtml to make HTML files named index.html in directories
24 echo. singlehtml to make a single large HTML file
25 echo. pickle to make pickle files
26 echo. json to make JSON files
27 echo. htmlhelp to make HTML files and a HTML help project
28 echo. qthelp to make HTML files and a qthelp project
29 echo. devhelp to make HTML files and a Devhelp project
30 echo. epub to make a
[all...]
/third_party/nghttp2/doc/
H A Dmake.bat18 echo.Please use `make ^<target^>` where ^<target^> is one of
19 echo. html to make standalone HTML files
20 echo. dirhtml to make HTML files named index.html in directories
21 echo. singlehtml to make a single large HTML file
22 echo. pickle to make pickle files
23 echo. json to make JSON files
24 echo. htmlhelp to make HTML files and a HTML help project
25 echo. qthelp to make HTML files and a qthelp project
26 echo. devhelp to make HTML files and a Devhelp project
27 echo. epub to make a
[all...]
/third_party/ltp/utils/benchmark/kernbench-0.42/
H A Dkernbench95 make clean > /dev/null 2>&1
108 make mrproper > /dev/null 2>&1
110 make defconfig > /dev/null 2>&1
113 yes "" | make oldconfig > /dev/null 2>&1
130 echo make
133 echo make -j $halfjobs
136 echo make -j $optijobs
139 echo make -j
147 make -j $optijobs > /dev/null 2>&1
196 make clea
[all...]
/third_party/skia/tests/
H A DArenaAllocTest.cpp37 REPORTER_ASSERT(r, *arena.make<int>(3) == 3); in DEF_TEST()
38 Foo* foo = arena.make<Foo>(3, 4.0f); in DEF_TEST()
53 arena.make<OddAlignment>(); in DEF_TEST()
62 REPORTER_ASSERT(r, *arena.make<int>(3) == 3); in DEF_TEST()
63 Foo* foo = arena.make<Foo>(3, 4.0f); in DEF_TEST()
78 arena.make<OddAlignment>(); in DEF_TEST()
88 REPORTER_ASSERT(r, *arena.make<int>(3) == 3); in DEF_TEST()
89 Foo* foo = arena.make<Foo>(3, 4.0f); in DEF_TEST()
104 arena.make<OddAlignment>(); in DEF_TEST()
130 current = arena.make<Nod in DEF_TEST()
[all...]
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/
H A Dbuild.sh46 make -C $ROOT_DIR/wpa_supplicant/ clean
47 make DEPDIR=$1 COMPILER_TYPE=$3 LIB_TYPE=$2 DEBUG=$4 COMPILER_DIR=$5 KERNEL_TYPE=$6 -C $ROOT_DIR/wpa_supplicant/ -j
49 make -C $ROOT_DIR/hostapd/ clean
50 make DEPDIR=$1 COMPILER_TYPE=$3 LIB_TYPE=$2 DEBUG=$4 COMPILER_DIR=$5 KERNEL_TYPE=$6 -C $ROOT_DIR/hostapd/ -j
52 make -C $ROOT_DIR/build/ clean
53 make DEPDIR=$1 COMPILER_TYPE=$3 LIB_TYPE=$2 DEBUG=$4 COMPILER_DIR=$5 KERNEL_TYPE=$6 -C $ROOT_DIR/build/
62 make DEPDIR=DEPDIR=$1 COMPILER_TYPE=$3 LIB_TYPE=$2 DEBUG=$4 COMPILER_DIR=$5 KERNEL_TYPE=$6 -C $ROOT_DIR/wpa_supplicant/ libwpa_client.so -j
65 make DEPDIR=DEPDIR=$1 COMPILER_TYPE=$3 LIB_TYPE=$2 DEBUG=$4 COMPILER_DIR=$5 KERNEL_TYPE=$6 -C $ROOT_DIR/wpa_supplicant/ libwpa_client.a -j
/third_party/wpa_supplicant/wpa_supplicant-2.9/
H A Dbuild.sh46 make -C $ROOT_DIR/wpa_supplicant/ clean
47 make DEPDIR=$1 COMPILER_TYPE=$3 LIB_TYPE=$2 DEBUG=$4 COMPILER_DIR=$5 KERNEL_TYPE=$6 -C $ROOT_DIR/wpa_supplicant/ -j
49 make -C $ROOT_DIR/hostapd/ clean
50 make DEPDIR=$1 COMPILER_TYPE=$3 LIB_TYPE=$2 DEBUG=$4 COMPILER_DIR=$5 KERNEL_TYPE=$6 -C $ROOT_DIR/hostapd/ -j
52 make -C $ROOT_DIR/build/ clean
53 make DEPDIR=$1 COMPILER_TYPE=$3 LIB_TYPE=$2 DEBUG=$4 COMPILER_DIR=$5 KERNEL_TYPE=$6 -C $ROOT_DIR/build/
62 make DEPDIR=DEPDIR=$1 COMPILER_TYPE=$3 LIB_TYPE=$2 DEBUG=$4 COMPILER_DIR=$5 KERNEL_TYPE=$6 -C $ROOT_DIR/wpa_supplicant/ libwpa_client.so -j
65 make DEPDIR=DEPDIR=$1 COMPILER_TYPE=$3 LIB_TYPE=$2 DEBUG=$4 COMPILER_DIR=$5 KERNEL_TYPE=$6 -C $ROOT_DIR/wpa_supplicant/ libwpa_client.a -j
/third_party/libcoap/scripts/
H A Dbuild.sh54 make -C examples/contiki
57 make -C examples/lwip
60 make && make check
74 make -C tests/oss-fuzz -f Makefile.ci check clean
80 make -C man
/third_party/toybox/scripts/
H A Dmcm-buildall.sh8 echo Run this script in musl-cross-make directory to make "ccc" directory.
10 echo " "git clone https://github.com/richfelker/musl-cross-make
11 echo " "cd musl-cross-make
26 make clean
74 PATH="$LP" make OUTPUT="$OUTPUT" TARGET="$TARGET" \
94 [ -z "$TYPE" ] && make clean

Completed in 14 milliseconds

12345678910>>...25