Home
last modified time | relevance | path

Searched full:opt (Results 1 – 25 of 8553) sorted by relevance

12345678910>>...343

/external/mesa3d/src/panfrost/bifrost/
DISA.xml31 <opt>b0</opt>
32 <opt>b1</opt>
33 <opt>b2</opt>
34 <opt>b3</opt>
43 <opt>b00</opt>
44 <opt>b11</opt>
45 <opt>b22</opt>
46 <opt>b33</opt>
47 <opt>b01</opt>
48 <opt>b23</opt>
[all …]
/external/swiftshader/third_party/SPIRV-Tools/source/opt/
Dpasses.h20 #include "source/opt/aggressive_dead_code_elim_pass.h"
21 #include "source/opt/amd_ext_to_khr.h"
22 #include "source/opt/analyze_live_input_pass.h"
23 #include "source/opt/block_merge_pass.h"
24 #include "source/opt/ccp_pass.h"
25 #include "source/opt/cfg_cleanup_pass.h"
26 #include "source/opt/code_sink.h"
27 #include "source/opt/combine_access_chains.h"
28 #include "source/opt/compact_ids_pass.h"
29 #include "source/opt/convert_to_half_pass.h"
[all …]
/external/angle/third_party/vulkan-deps/spirv-tools/src/source/opt/
Dpasses.h20 #include "source/opt/aggressive_dead_code_elim_pass.h"
21 #include "source/opt/amd_ext_to_khr.h"
22 #include "source/opt/analyze_live_input_pass.h"
23 #include "source/opt/block_merge_pass.h"
24 #include "source/opt/ccp_pass.h"
25 #include "source/opt/cfg_cleanup_pass.h"
26 #include "source/opt/code_sink.h"
27 #include "source/opt/combine_access_chains.h"
28 #include "source/opt/compact_ids_pass.h"
29 #include "source/opt/convert_to_half_pass.h"
[all …]
/external/deqp-deps/SPIRV-Tools/source/opt/
Dpasses.h20 #include "source/opt/aggressive_dead_code_elim_pass.h"
21 #include "source/opt/amd_ext_to_khr.h"
22 #include "source/opt/block_merge_pass.h"
23 #include "source/opt/ccp_pass.h"
24 #include "source/opt/cfg_cleanup_pass.h"
25 #include "source/opt/code_sink.h"
26 #include "source/opt/combine_access_chains.h"
27 #include "source/opt/compact_ids_pass.h"
28 #include "source/opt/convert_to_half_pass.h"
29 #include "source/opt/convert_to_sampled_image_pass.h"
[all …]
/external/llvm/test/CodeGen/WebAssembly/
Dcfg-stackify.ll1 ; RUN: llc < %s -asm-verbose=false -disable-wasm-fallthrough-return-opt -disable-block-placement -v…
2 …=false -disable-wasm-fallthrough-return-opt -verify-machineinstrs -fast-isel=false | FileCheck -ch…
30 ; OPT-LABEL: test0:
31 ; OPT: loop
32 ; OPT-NEXT: i32.const
33 ; OPT-NEXT: i32.add
34 ; OPT: i32.ge_s
35 ; OPT-NEXT: br_if
36 ; OPT-NOT: br
37 ; OPT: call
[all …]
/external/llvm/test/CodeGen/AMDGPU/
Dcgp-bitfield-extract.ll1 ; RUN: opt -S -mtriple=amdgcn-- -codegenprepare < %s | FileCheck -check-prefix=OPT %s
2 ; RUN: opt -S -mtriple=amdgcn-- -mcpu=tonga -codegenprepare < %s | FileCheck -check-prefix=OPT %s
9 ; OPT-LABEL: @sink_ubfe_i32(
10 ; OPT: entry:
11 ; OPT-NEXT: br i1
13 ; OPT: bb0:
14 ; OPT: %0 = lshr i32 %arg1, 8
15 ; OPT-NEXT: %val0 = and i32 %0, 255
16 ; OPT: br label
18 ; OPT: bb1:
[all …]
/external/libcxx/test/std/utilities/optional/optional.object/optional.object.assign/
Demplace.pass.cpp51 using Opt = std::optional<T>; in test_one_arg() typedef
53 Opt opt; in test_one_arg() local
54 auto & v = opt.emplace(); in test_one_arg()
56 assert(static_cast<bool>(opt) == true); in test_one_arg()
57 assert(*opt == T(0)); in test_one_arg()
58 assert(&v == &*opt); in test_one_arg()
61 Opt opt; in test_one_arg() local
62 auto & v = opt.emplace(1); in test_one_arg()
64 assert(static_cast<bool>(opt) == true); in test_one_arg()
65 assert(*opt == T(1)); in test_one_arg()
[all …]
Dassign_value.pass.cpp52 using Opt = std::optional<FromOptionalType>; typedef
56 constexpr FromOptionalType(Opt&) { Dummy::BARK; } in FromOptionalType()
58 constexpr FromOptionalType& operator=(Opt&) { Dummy::BARK; return *this; } in operator =()
90 optional<T> opt; in test_with_test_type() local
91 opt = 3; in test_with_test_type()
97 assert(static_cast<bool>(opt) == true); in test_with_test_type()
98 assert(*opt == T(3)); in test_with_test_type()
101 optional<T> opt(42); in test_with_test_type() local
103 opt = 3; in test_with_test_type()
109 assert(static_cast<bool>(opt) == true); in test_with_test_type()
[all …]
/external/openthread/third_party/mbedtls/repo/programs/ssl/
Dssl_client2.c526 } opt; variable
546 if( opt.debug_level == 0 ) in my_verify()
573 if( opt.transport != MBEDTLS_SSL_TRANSPORT_DATAGRAM ) in report_cid_usage()
597 if( opt.cid_enabled == MBEDTLS_SSL_CID_ENABLED ) in report_cid_usage()
801 opt.server_name = DFL_SERVER_NAME; in main()
802 opt.server_addr = DFL_SERVER_ADDR; in main()
803 opt.server_port = DFL_SERVER_PORT; in main()
804 opt.debug_level = DFL_DEBUG_LEVEL; in main()
805 opt.cid_enabled = DFL_CID_ENABLED; in main()
806 opt.cid_val = DFL_CID_VALUE; in main()
[all …]
Dssl_server2.c168 * You will need to adapt the mbedtls_ssl_get_bytes_avail() test in ssl-opt.sh
629 } opt; variable
1222 if( opt.transport != MBEDTLS_SSL_TRANSPORT_DATAGRAM ) in report_cid_usage()
1237 if( opt.cid_enabled == MBEDTLS_SSL_CID_ENABLED ) in report_cid_usage()
1459 opt.buffer_size = DFL_IO_BUF_LEN; in main()
1460 opt.server_addr = DFL_SERVER_ADDR; in main()
1461 opt.server_port = DFL_SERVER_PORT; in main()
1462 opt.debug_level = DFL_DEBUG_LEVEL; in main()
1463 opt.event = DFL_EVENT; in main()
1464 opt.response_size = DFL_RESPONSE_SIZE; in main()
[all …]
/external/llvm/test/Feature/
Doptnone-opt.ll1 ; RUN: opt -S -debug %s 2>&1 | FileCheck %s --check-prefix=OPT-O0
2 ; RUN: opt -O1 -S -debug %s 2>&1 | FileCheck %s --check-prefix=OPT-O1
3 ; RUN: opt -O2 -S -debug %s 2>&1 | FileCheck %s --check-prefix=OPT-O1 --check-prefix=OPT-O2O3
4 ; RUN: opt -O3 -S -debug %s 2>&1 | FileCheck %s --check-prefix=OPT-O1 --check-prefix=OPT-O2O3
5 ; RUN: opt -bb-vectorize -dce -die -loweratomic -S -debug %s 2>&1 | FileCheck %s --check-prefix=OPT
6opt -indvars -licm -loop-deletion -loop-extract -loop-idiom -loop-instsimplify -loop-reduce -loop-…
37 ; OPT-O0-NOT: Skipping pass
40 ; OPT-O1-DAG: Skipping pass 'Aggressive Dead Code Elimination'
41 ; OPT-O1-DAG: Skipping pass 'Combine redundant instructions'
42 ; OPT-O1-DAG: Skipping pass 'Dead Store Elimination'
[all …]
/external/cronet/buildtools/third_party/libc++/trunk/test/std/utilities/optional/optional.object/optional.object.assign/
Demplace.pass.cpp52 using Opt = std::optional<T>; in test_one_arg() typedef
54 Opt opt; in test_one_arg() local
55 auto & v = opt.emplace(); in test_one_arg()
57 assert(static_cast<bool>(opt) == true); in test_one_arg()
58 assert(*opt == T(0)); in test_one_arg()
59 assert(&v == &*opt); in test_one_arg()
62 Opt opt; in test_one_arg() local
63 auto & v = opt.emplace(1); in test_one_arg()
65 assert(static_cast<bool>(opt) == true); in test_one_arg()
66 assert(*opt == T(1)); in test_one_arg()
[all …]
Dassign_value.pass.cpp51 using Opt = std::optional<FromOptionalType>; typedef
55 constexpr FromOptionalType(Opt&) { Dummy::BARK; } in FromOptionalType()
57 constexpr FromOptionalType& operator=(Opt&) { Dummy::BARK; return *this; } in operator =()
89 optional<T> opt; in test_with_test_type() local
90 opt = 3; in test_with_test_type()
96 assert(static_cast<bool>(opt) == true); in test_with_test_type()
97 assert(*opt == T(3)); in test_with_test_type()
100 optional<T> opt(42); in test_with_test_type() local
102 opt = 3; in test_with_test_type()
108 assert(static_cast<bool>(opt) == true); in test_with_test_type()
[all …]
/external/deqp-deps/SPIRV-Tools/
DBUILD.gn560 "source/opt/aggressive_dead_code_elim_pass.cpp",
561 "source/opt/aggressive_dead_code_elim_pass.h",
562 "source/opt/amd_ext_to_khr.cpp",
563 "source/opt/amd_ext_to_khr.h",
564 "source/opt/basic_block.cpp",
565 "source/opt/basic_block.h",
566 "source/opt/block_merge_pass.cpp",
567 "source/opt/block_merge_pass.h",
568 "source/opt/block_merge_util.cpp",
569 "source/opt/block_merge_util.h",
[all …]
/external/mbedtls/programs/ssl/
Dssl_client2.c555 } opt; variable
578 if( opt.debug_level == 0 ) in my_verify()
608 if( opt.transport != MBEDTLS_SSL_TRANSPORT_DATAGRAM ) in report_cid_usage()
632 if( opt.cid_enabled == MBEDTLS_SSL_CID_ENABLED ) in report_cid_usage()
892 opt.server_name = DFL_SERVER_NAME; in main()
893 opt.server_addr = DFL_SERVER_ADDR; in main()
894 opt.server_port = DFL_SERVER_PORT; in main()
895 opt.debug_level = DFL_DEBUG_LEVEL; in main()
896 opt.cid_enabled = DFL_CID_ENABLED; in main()
897 opt.cid_val = DFL_CID_VALUE; in main()
[all …]
Dssl_server2.c699 } opt; variable
1331 if( opt.transport != MBEDTLS_SSL_TRANSPORT_DATAGRAM ) in report_cid_usage()
1346 if( opt.cid_enabled == MBEDTLS_SSL_CID_ENABLED ) in report_cid_usage()
1412 switch( opt.dummy_ticket % 7 ) in dummy_ticket_parse()
1642 opt.buffer_size = DFL_IO_BUF_LEN; in main()
1643 opt.server_addr = DFL_SERVER_ADDR; in main()
1644 opt.server_port = DFL_SERVER_PORT; in main()
1645 opt.debug_level = DFL_DEBUG_LEVEL; in main()
1646 opt.event = DFL_EVENT; in main()
1647 opt.response_size = DFL_RESPONSE_SIZE; in main()
[all …]
/external/golang-protobuf/internal/testprotos/nullable/
Dnullable.go15 …OptionalBool bool `protobuf:"varint,100,opt,name=optional_boo…
16 …OptionalInt32 int32 `protobuf:"varint,101,opt,name=optional_int…
17 …OptionalInt64 int64 `protobuf:"varint,102,opt,name=optional_int…
18 …OptionalUint32 uint32 `protobuf:"varint,103,opt,name=optional_uin…
19 …OptionalUint64 uint64 `protobuf:"varint,104,opt,name=optional_uin…
20 …OptionalFloat float32 `protobuf:"fixed32,105,opt,name=optional_fl…
21 …OptionalDouble float64 `protobuf:"fixed64,106,opt,name=optional_do…
22 …OptionalString string `protobuf:"bytes,107,opt,name=optional_stri…
23 …OptionalBytes []byte `protobuf:"bytes,108,opt,name=optional_byte…
39 …buf:"bytes,300,rep,name=map_bool" protobuf_key:"bytes,1,opt,name=key" protobuf_val:"varint,2,opt,n…
[all …]
/external/oss-fuzz/projects/llvm/
Dbuild.sh29 llvm-opt-fuzzer \
70 # Same for llvm-opt-fuzzer
71 cp $OUT/llvm-opt-fuzzer $OUT/llvm-opt-fuzzer--x86_64-earlycse
72 cp $OUT/llvm-opt-fuzzer $OUT/llvm-opt-fuzzer--x86_64-simplifycfg
73 cp $OUT/llvm-opt-fuzzer $OUT/llvm-opt-fuzzer--x86_64-gvn
74 cp $OUT/llvm-opt-fuzzer $OUT/llvm-opt-fuzzer--x86_64-sccp
76 cp $OUT/llvm-opt-fuzzer $OUT/llvm-opt-fuzzer--x86_64-loop_predication
77 cp $OUT/llvm-opt-fuzzer $OUT/llvm-opt-fuzzer--x86_64-guard_widening
78 cp $OUT/llvm-opt-fuzzer $OUT/llvm-opt-fuzzer--x86_64-loop_vectorize
80 cp $OUT/llvm-opt-fuzzer $OUT/llvm-opt-fuzzer--x86_64-loop_rotate
[all …]
/external/angle/third_party/vulkan-deps/spirv-tools/src/
DBUILD.gn577 "source/opt/aggressive_dead_code_elim_pass.cpp",
578 "source/opt/aggressive_dead_code_elim_pass.h",
579 "source/opt/amd_ext_to_khr.cpp",
580 "source/opt/amd_ext_to_khr.h",
581 "source/opt/analyze_live_input_pass.cpp",
582 "source/opt/analyze_live_input_pass.h",
583 "source/opt/basic_block.cpp",
584 "source/opt/basic_block.h",
585 "source/opt/block_merge_pass.cpp",
586 "source/opt/block_merge_pass.h",
[all …]
/external/swiftshader/third_party/SPIRV-Tools/
DBUILD.gn574 "source/opt/aggressive_dead_code_elim_pass.cpp",
575 "source/opt/aggressive_dead_code_elim_pass.h",
576 "source/opt/amd_ext_to_khr.cpp",
577 "source/opt/amd_ext_to_khr.h",
578 "source/opt/analyze_live_input_pass.cpp",
579 "source/opt/analyze_live_input_pass.h",
580 "source/opt/basic_block.cpp",
581 "source/opt/basic_block.h",
582 "source/opt/block_merge_pass.cpp",
583 "source/opt/block_merge_pass.h",
[all …]
/external/tensorflow/tensorflow/tools/toolchains/cpus/py3/
DBUILD148opt/python3.6/include/python3.6m/Python-ast.h" "$(@D)/python_include/Python-ast.h" && cp "/opt/pyt…
183opt/python3.6/lib/python3.6/site-packages/numpy/core/include/numpy/__multiarray_api.h" "$(@D)/nump…
/external/openthread/third_party/mbedtls/repo/programs/x509/
Dcert_write.c184 } opt; variable
260 opt.issuer_crt = DFL_ISSUER_CRT; in main()
261 opt.request_file = DFL_REQUEST_FILE; in main()
262 opt.subject_key = DFL_SUBJECT_KEY; in main()
263 opt.issuer_key = DFL_ISSUER_KEY; in main()
264 opt.subject_pwd = DFL_SUBJECT_PWD; in main()
265 opt.issuer_pwd = DFL_ISSUER_PWD; in main()
266 opt.output_file = DFL_OUTPUT_FILENAME; in main()
267 opt.subject_name = DFL_SUBJECT_NAME; in main()
268 opt.issuer_name = DFL_ISSUER_NAME; in main()
[all …]
/external/mbedtls/programs/x509/
Dcert_write.c192 } opt; variable
205 if ( opt.format == FORMAT_DER ) in write_certificate()
283 opt.issuer_crt = DFL_ISSUER_CRT; in main()
284 opt.request_file = DFL_REQUEST_FILE; in main()
285 opt.subject_key = DFL_SUBJECT_KEY; in main()
286 opt.issuer_key = DFL_ISSUER_KEY; in main()
287 opt.subject_pwd = DFL_SUBJECT_PWD; in main()
288 opt.issuer_pwd = DFL_ISSUER_PWD; in main()
289 opt.output_file = DFL_OUTPUT_FILENAME; in main()
290 opt.subject_name = DFL_SUBJECT_NAME; in main()
[all …]
/external/clang/lib/Driver/
DToolChains.h106 void init(const llvm::Triple &TargetTriple, const llvm::opt::ArgList &Args,
147 const llvm::opt::ArgList &Args,
153 const llvm::opt::ArgList &Args,
181 void init(const llvm::Triple &TargetTriple, const llvm::opt::ArgList &Args);
216 const llvm::opt::ArgList &Args);
245 const llvm::opt::ArgList &DriverArgs,
246 llvm::opt::ArgStringList &CC1Args) const;
268 const llvm::opt::ArgList &Args);
276 StringRef getMachOArchName(const llvm::opt::ArgList &Args) const;
279 virtual void AddLinkARCArgs(const llvm::opt::ArgList &Args, in AddLinkARCArgs()
[all …]
/external/llvm/tools/llvm-pdbdump/
Dllvm-pdbdump.h19 extern llvm::cl::opt<bool> Compilands;
20 extern llvm::cl::opt<bool> Symbols;
21 extern llvm::cl::opt<bool> Globals;
22 extern llvm::cl::opt<bool> Types;
23 extern llvm::cl::opt<bool> All;
24 extern llvm::cl::opt<bool> ExcludeCompilerGenerated;
26 extern llvm::cl::opt<bool> NoClassDefs;
27 extern llvm::cl::opt<bool> NoEnumDefs;
37 extern llvm::cl::opt<bool> DumpHeaders;
38 extern llvm::cl::opt<bool> DumpStreamBlocks;
[all …]

12345678910>>...343