HomeSort by: relevance | last modified time | path
    Searched defs:build (Results 1 - 25 of 59) sorted by relevancy

1 2 3

  /src/external/bsd/zstd/dist/build/VS_scripts/
build.generic.cmd 17 GOTO build
21 echo Syntax: build.generic.cmd msbuild_version msbuild_platform msbuild_configuration msbuild_toolset
29 :build label
58 SET msbuild_params=/verbosity:minimal /nologo /t:Clean,Build /p:Platform=%msbuild_platform% /p:Configuration=%msbuild_configuration%
66 echo ### Build Params: %msbuild_params%
  /src/external/bsd/atf/dist/atf-c++/
build.hpp 41 namespace build { namespace in namespace:atf
54 } // namespace build
  /src/external/gpl3/gcc/dist/gcc/
tree-vector-builder.cc 40 tree_vector_builder::build () function in class:tree_vector_builder
rtx-vector-builder.cc 31 rtx_vector_builder::build (rtvec v) function in class:rtx_vector_builder
60 rtx_vector_builder::build () function in class:rtx_vector_builder
  /src/external/gpl3/gcc.old/dist/gcc/
tree-vector-builder.cc 40 tree_vector_builder::build () function in class:tree_vector_builder
rtx-vector-builder.cc 31 rtx_vector_builder::build (rtvec v) function in class:rtx_vector_builder
60 rtx_vector_builder::build () function in class:rtx_vector_builder
  /src/tests/lib/libc/string/
t_swab.c 42 build(char *a, char *b, size_t n) function
80 build(a, b, i);
  /src/external/apache2/llvm/dist/llvm/lib/Support/
VersionTuple.cpp 36 if (Optional<unsigned> Build = V.getBuild())
37 Out << '.' << *Build;
64 unsigned major = 0, minor = 0, micro = 0, build = 0; local
103 if (parseInt(input, build))
110 *this = VersionTuple(major, minor, micro, build);
  /src/external/apache2/llvm/dist/llvm/tools/llvm-exegesis/lib/
CodeTemplate.cpp 57 MCInst InstructionTemplate::build() const { function in class:llvm::InstructionTemplate
  /src/external/public-domain/sqlite/dist/autosetup/teaish/
tester.tcl 250 # @teaish-build-flag3 flag tgtVar ?dflt?
252 # If the current build has the configure-time flag named $flag set
260 # more direct access to the build state. This function requires that
268 proc teaish-build-flag3 {flag tgtVar {dflt ""}} {
276 "[test-current-scope 1] without the build flags imported."
283 # @teaish-build-flag flag ?dflt?
285 # Convenience form of teaish-build-flag3 which returns the
289 proc teaish-build-flag {flag {dflt ""}} {
291 teaish-build-flag3 $flag tgt $dflt
  /src/sys/dev/usb/
aubtfwlreg.h 18 uint32_t build; member in struct:ar3k_version
  /src/external/apache2/llvm/dist/clang/utils/analyzer/
SATest.py 35 def build(parser, args): function
151 sys.exit(call("docker build --tag satest-image {}".format(SCRIPTS_DIR),
175 "-v {build}:/build "
182 build=args.build_dir,
207 # TODO: Add an option not to build.
212 help="Build mode: 0 for single file project, "
229 # build subcommand
231 "build",
232 help="Build projects from the project map and compare results with
    [all...]
SATestBuild.py 10 information on how to build them and the expected output.
19 Note that the build tree must be inside the project dir.
21 To test the build of the analyzer one would:
23 the build directory does not pollute the repository to min network
25 - Build all projects, until error. Produce logs to report errors.
34 The compiler for scan-build and scan-build are in the PATH.
35 export PATH=/Users/zaks/workspace/c2llvm/build/Release+Asserts/bin:$PATH
138 # The script that needs to be executed before the build can start.
140 # This is a file containing commands for scan-build
362 def build(self, directory: str, output_dir: str) -> Tuple[float, int]: member in class:ProjectTester
    [all...]
  /src/external/public-domain/sqlite/dist/autosetup/
system.tcl 7 # such as '--host', '--build', '--prefix', and setting 'srcdir', 'builddir', and 'EXEEXT'.
32 the application will run (defaults to the same value as --build)}
33 build:build-alias => {a complete or partial cpu-vendor-opsys for the system
36 prefix:dir=/usr/local => {the target directory for the build (default: '@default@')}
301 # Build map from global defines to their values so they can be
303 proc build-define-mapping {} {
310 set mapping [build-define-mapping]
317 set mapping [build-define-mapping]
326 # build/host tuples and cross-compilation prefi
    [all...]
  /src/external/bsd/bc/dist/
execute.c 619 bc_num build, temp, result, mult, divisor; local
627 build = bc_copy_num (_zero_);
655 bc_int2num (&build, (int) first_ch);
662 bc_multiply (build, mult, &result, 0);
664 bc_add (result, temp, &build, 0);
687 bc_add (build, result, &build, 0);
692 bc_sub (_zero_, build, &build, 0);
694 push_num (build);
709 bc_num build; local
    [all...]
  /src/external/bsd/pcc/dist/pcc/os/win32/
build.bat 17 goto build
20 echo build.bat [/h] { /pcc or /cl } [/prefix -dir-] [/pccdir -dir-] [/pccsrcdir -dir-] [/pcclibssrcdir -dir-] [/install]
69 :build label
  /src/external/mit/isl/dist/
codegen.c 81 /* Update the build options based on the user-specified options.
86 static __isl_give isl_ast_build *set_options(__isl_take isl_ast_build *build,
107 build = isl_ast_build_set_options(build, opt);
109 return build;
121 isl_ast_build *build; local
130 build = isl_ast_build_from_context(context);
131 build = set_options(build, options_map, options, schedule);
132 tree = isl_ast_build_node_from_schedule_map(build, schedule)
183 isl_ast_build *build; local
    [all...]
isl_test_cpp-checked.cc 251 isl::ast_build build) {
255 auto build = isl::ast_build(ctx); local
256 build = build.set_at_each_domain(fail_inc_count_ast);
257 auto ast = build.node_from(schedule);
260 auto build_copy = build;
263 [&count_ast](isl::ast_node node, isl::ast_build build) {
273 ast = build.node_from(schedule);
isl_test_cpp-generic.cc 182 isl::ast_build build = isl::ast_build::from_context(context); local
186 isl::ast_expr expr = build.expr_from(pw_aff);
190 expr = build.expr_from(set);
318 [&count_ast](isl::ast_node node, isl::ast_build build) {
322 auto build = isl::ast_build(schedule.ctx()); local
323 build = build.set_at_each_domain(inc_count_ast);
324 auto ast = build.node_from(schedule);
342 [&count_ast](isl::ast_node node, isl::ast_build build) {
346 auto build = isl::ast_build(ctx) local
368 isl::ast_build build = isl::ast_build::from_context(pa.domain()); local
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Object/
IRSymtab.cpp 67 /// Stores the temporary state that is required to build an IR symbol table.
114 Error build(ArrayRef<Module *> Mods);
320 Error Builder::build(ArrayRef<Module *> IRMods) { function in class:__anon4470::Builder
351 Error irsymtab::build(ArrayRef<Module *> Mods, SmallVector<char, 0> &Symtab, function in class:irsymtab
354 return Builder(Symtab, StrtabBuilder, Alloc).build(Mods);
378 if (Error E = build(Mods, FC.Symtab, StrtabBuilder, Alloc))
  /src/external/apache2/llvm/dist/llvm/lib/Target/Hexagon/
HexagonISelDAGToDAGHVX.cpp 108 build();
145 void build();
164 void Coloring::build() { function in class:Coloring
  /src/external/bsd/libfido2/dist/fuzz/
fuzz_mgmt.c 226 uint8_t proto, major, minor, build, flags; local
237 build = fido_dev_build(dev);
243 consume(&build, sizeof(build));
  /src/external/bsd/zstd/dist/tests/fuzz/
fuzz.py 142 help='Fuzz target(s) to build {{{}}}'.format(', '.join(ALL_TARGETS)))
219 For regression testing just build.
377 help='Fuzz target(s) to build {{{}}}'.format(', '.join(ALL_TARGETS))
394 def build(args): function
496 # Clean and build
519 The fuzzer should have been build with LIB_FUZZING_ENGINE pointing to
545 help='Fuzz target(s) to build {{{}}}'.format(', '.join(TARGETS)))
619 help='Fuzz target(s) to build {{{}}}'.format(', '.join(TARGETS)))
720 help='Fuzz target(s) to build {{{}}}'.format(', '.join(TARGETS)))
811 Runs a libfuzzer fuzzer with -merge=1 to build a minimal corpus i
    [all...]
  /src/external/gpl3/gcc/dist/gcc/config/i386/
i386-features.cc 461 /* Build new chain starting from insn INSN_UID recursively
466 scalar_chain::build (bitmap candidates, unsigned insn_uid, bitmap disallowed) function in class:scalar_chain
2533 if (chain->build (&candidates[i], uid, disallowed))
3902 /* Build result decl and add to function_decl. */
  /src/external/gpl3/gcc.old/dist/gcc/config/i386/
i386-features.cc 454 /* Build new chain starting from insn INSN_UID recursively
458 scalar_chain::build (bitmap candidates, unsigned insn_uid) function in class:scalar_chain
1770 chain->build (&candidates[i], uid);
2918 /* Build result decl and add to function_decl. */

Completed in 29 milliseconds

1 2 3