Home
last modified time | relevance | path

Searched refs:use (Results 1 – 25 of 10788) sorted by relevance

12345678910>>...432

/external/clang/test/Modules/
Dno-linkage.cpp29 void use(int);
31 use(Typedef().n); in use_things()
32 use(NS::n); in use_things()
33 use(AliasDecl); in use_things()
34 use(UsingDecl); in use_things()
35 use(RealNS::n); in use_things()
36 use(Struct(0)); in use_things()
37 use(Variable); in use_things()
38 use(AnotherNS); in use_things()
39 use(Enumerator); in use_things()
[all …]
Dusing-decl.cpp41 template<typename T> int use(T);
43 use(conflicting_hidden_using_decl); in test_conflicting()
44 use(conflicting_hidden_using_decl_fn()); in test_conflicting()
45 use(conflicting_hidden_using_decl_var); in test_conflicting()
46 use(conflicting_hidden_using_decl_fn_2()); in test_conflicting()
47 use(conflicting_hidden_using_decl_var_2); in test_conflicting()
48 use(conflicting_hidden_using_decl_mixed_1()); in test_conflicting()
49 use(conflicting_hidden_using_decl_mixed_2); in test_conflicting()
50 use(conflicting_hidden_using_decl_mixed_3()); in test_conflicting()
51 use(conflicting_hidden_using_decl_mixed_4()); in test_conflicting()
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/test/CodeGen/Hexagon/
Dearly-if-debug.mir9 # CHECK: DBG_VALUE debug-use %0, debug-use $noreg
10 # CHECK: DBG_VALUE debug-use %0, debug-use $noreg
11 # CHECK: DBG_VALUE debug-use %0, debug-use $noreg
12 # CHECK: DBG_VALUE debug-use %0, debug-use $noreg
13 # CHECK: DBG_VALUE debug-use %0, debug-use $noreg
43 DBG_VALUE debug-use %0, debug-use $noreg, !1, !1
44 DBG_VALUE debug-use %0, debug-use $noreg, !1, !1
45 DBG_VALUE debug-use %0, debug-use $noreg, !1, !1
46 DBG_VALUE debug-use %0, debug-use $noreg, !1, !1
47 DBG_VALUE debug-use %0, debug-use $noreg, !1, !1
/external/swiftshader/third_party/SPIRV-Tools/source/opt/
Dcopy_prop_arrays.cpp106 var_inst, [&store_inst, var_inst](Instruction* use) { in FindStoreInstruction() argument
107 if (use->opcode() == SpvOpStore && in FindStoreInstruction()
108 use->GetSingleWordInOperand(kStorePointerInOperand) == in FindStoreInstruction()
111 store_inst = use; in FindStoreInstruction()
150 return get_def_use_mgr()->WhileEachUser(ptr_inst, [this](Instruction* use) { in HasNoStores() argument
151 if (use->opcode() == SpvOpLoad) { in HasNoStores()
153 } else if (use->opcode() == SpvOpAccessChain) { in HasNoStores()
154 return HasNoStores(use); in HasNoStores()
155 } else if (use->IsDecoration() || use->opcode() == SpvOpName) { in HasNoStores()
157 } else if (use->opcode() == SpvOpStore) { in HasNoStores()
[all …]
Ddesc_sroa.cpp89 var->result_id(), [this, &work_list](Instruction* use) { in ReplaceCandidate() argument
90 if (use->opcode() == SpvOpName) { in ReplaceCandidate()
94 if (use->IsDecoration()) { in ReplaceCandidate()
98 switch (use->opcode()) { in ReplaceCandidate()
101 work_list.push_back(use); in ReplaceCandidate()
105 "Variable cannot be replaced: invalid instruction", use); in ReplaceCandidate()
115 for (Instruction* use : work_list) { in ReplaceCandidate()
116 if (!ReplaceAccessChain(var, use)) { in ReplaceCandidate()
124 Instruction* use) { in ReplaceAccessChain() argument
125 if (use->NumInOperands() <= 1) { in ReplaceAccessChain()
[all …]
/external/angle/third_party/spirv-tools/src/source/opt/
Dcopy_prop_arrays.cpp106 var_inst, [&store_inst, var_inst](Instruction* use) { in FindStoreInstruction() argument
107 if (use->opcode() == SpvOpStore && in FindStoreInstruction()
108 use->GetSingleWordInOperand(kStorePointerInOperand) == in FindStoreInstruction()
111 store_inst = use; in FindStoreInstruction()
150 return get_def_use_mgr()->WhileEachUser(ptr_inst, [this](Instruction* use) { in HasNoStores() argument
151 if (use->opcode() == SpvOpLoad) { in HasNoStores()
153 } else if (use->opcode() == SpvOpAccessChain) { in HasNoStores()
154 return HasNoStores(use); in HasNoStores()
155 } else if (use->IsDecoration() || use->opcode() == SpvOpName) { in HasNoStores()
157 } else if (use->opcode() == SpvOpStore) { in HasNoStores()
[all …]
Ddesc_sroa.cpp89 var->result_id(), [this, &work_list](Instruction* use) { in ReplaceCandidate() argument
90 if (use->opcode() == SpvOpName) { in ReplaceCandidate()
94 if (use->IsDecoration()) { in ReplaceCandidate()
98 switch (use->opcode()) { in ReplaceCandidate()
101 work_list.push_back(use); in ReplaceCandidate()
105 "Variable cannot be replaced: invalid instruction", use); in ReplaceCandidate()
115 for (Instruction* use : work_list) { in ReplaceCandidate()
116 if (!ReplaceAccessChain(var, use)) { in ReplaceCandidate()
124 Instruction* use) { in ReplaceAccessChain() argument
125 if (use->NumInOperands() <= 1) { in ReplaceAccessChain()
[all …]
/external/deqp-deps/SPIRV-Tools/source/opt/
Dcopy_prop_arrays.cpp106 var_inst, [&store_inst, var_inst](Instruction* use) { in FindStoreInstruction() argument
107 if (use->opcode() == SpvOpStore && in FindStoreInstruction()
108 use->GetSingleWordInOperand(kStorePointerInOperand) == in FindStoreInstruction()
111 store_inst = use; in FindStoreInstruction()
150 return get_def_use_mgr()->WhileEachUser(ptr_inst, [this](Instruction* use) { in HasNoStores() argument
151 if (use->opcode() == SpvOpLoad) { in HasNoStores()
153 } else if (use->opcode() == SpvOpAccessChain) { in HasNoStores()
154 return HasNoStores(use); in HasNoStores()
155 } else if (use->IsDecoration() || use->opcode() == SpvOpName) { in HasNoStores()
157 } else if (use->opcode() == SpvOpStore) { in HasNoStores()
[all …]
Ddesc_sroa.cpp89 var->result_id(), [this, &work_list](Instruction* use) { in ReplaceCandidate() argument
90 if (use->opcode() == SpvOpName) { in ReplaceCandidate()
94 if (use->IsDecoration()) { in ReplaceCandidate()
98 switch (use->opcode()) { in ReplaceCandidate()
101 work_list.push_back(use); in ReplaceCandidate()
105 "Variable cannot be replaced: invalid instruction", use); in ReplaceCandidate()
115 for (Instruction* use : work_list) { in ReplaceCandidate()
116 if (!ReplaceAccessChain(var, use)) { in ReplaceCandidate()
124 Instruction* use) { in ReplaceAccessChain() argument
125 if (use->NumInOperands() <= 1) { in ReplaceAccessChain()
[all …]
/external/clang/test/SemaObjC/
Darc-repeated-weak.mm1 …-has-weak -fobjc-arc -fblocks -Wno-objc-root-class -std=c++11 -Warc-repeated-use-of-weak -verify %s
16 extern void use(id); function
22use(a.weakProp); // expected-warning{{weak property 'weakProp' is accessed multiple times in this …
23 use(a.weakProp); // expected-note{{also accessed here}}
25 use(a.strongProp);
26 use(a.strongProp); // no-warning
28 use(a.weakProp); // expected-note{{also accessed here}}
32 use(a.weakProp); // no-warning
33 use(a.strongProp); // no-warning
57 use(a.weakProp); // expected-warning{{weak property 'weakProp' is accessed multiple times}}
[all …]
Darc-unbridged-cast.m46 …xpected-error {{requires a bridged cast}} expected-note {{use __bridge to}} expected-note {{use CF…
47 …xpected-error {{requires a bridged cast}} expected-note {{use __bridge to}} expected-note {{use CF…
48 …xpected-error {{requires a bridged cast}} expected-note {{use __bridge to}} expected-note {{use CF…
49 …xpected-error {{requires a bridged cast}} expected-note {{use __bridge to}} expected-note {{use CF…
50 …xpected-error {{requires a bridged cast}} expected-note {{use __bridge to}} expected-note {{use CF…
52 …x = (id) auditedCreateString(); // expected-error {{requires a bridged cast}} expected-note {{use
53 … (void*) 0); // expected-error {{requires a bridged cast}} expected-note {{use CFBridgingRelease c…
54 …teString()); // expected-error {{requires a bridged cast}} expected-note {{use CFBridgingRelease c…
55 …teString()); // expected-error {{requires a bridged cast}} expected-note {{use CFBridgingRelease c…
82 … expected-error{{requires a bridged cast}} expected-note{{use __bridge to}} expected-note{{use CFB…
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/test/CodeGen/AMDGPU/
Dbranch-relax-spill.ll129 tail call void asm sideeffect "; reg use $0", "{s0}"(i32 %sgpr0) #0
130 tail call void asm sideeffect "; reg use $0", "{s1}"(i32 %sgpr1) #0
131 tail call void asm sideeffect "; reg use $0", "{s2}"(i32 %sgpr2) #0
132 tail call void asm sideeffect "; reg use $0", "{s3}"(i32 %sgpr3) #0
133 tail call void asm sideeffect "; reg use $0", "{s4}"(i32 %sgpr4) #0
134 tail call void asm sideeffect "; reg use $0", "{s5}"(i32 %sgpr5) #0
135 tail call void asm sideeffect "; reg use $0", "{s6}"(i32 %sgpr6) #0
136 tail call void asm sideeffect "; reg use $0", "{s7}"(i32 %sgpr7) #0
137 tail call void asm sideeffect "; reg use $0", "{s8}"(i32 %sgpr8) #0
138 tail call void asm sideeffect "; reg use $0", "{s9}"(i32 %sgpr9) #0
[all …]
/external/clang/test/Modules/Inputs/declare-use/
Dmodule.map11 use XA
12 // Intentionally doesn't use XB to show that -fdecl-use isn't transitive.
17 use XA
18 // Intentionally doesn't use XB to show that -fdecl-use isn't transitive.
23 use XA
24 use XB
29 use XA
30 use XB
36 use XC
37 use XE
[all …]
/external/mesa3d/src/freedreno/ir3/
Dir3_cp_postsched.c50 struct ir3_instruction *use, in has_conflicting_write() argument
53 assert(src->block == use->block); in has_conflicting_write()
58 foreach_instr_rev (instr, &use->node) { in has_conflicting_write()
103 valid_flags(struct ir3_instruction *use, struct ir3_instruction *mov) in valid_flags() argument
107 foreach_src_n (reg, n, use) { in valid_flags()
111 if (!ir3_valid_flags(use, n, reg->flags | src->flags)) in valid_flags()
139 foreach_ssa_use (use, mov) { in instr_cp_postsched()
140 if (use->block != mov->block) in instr_cp_postsched()
143 if (is_meta(use)) in instr_cp_postsched()
146 if (has_conflicting_write(mov, use, src->array.id, offset)) in instr_cp_postsched()
[all …]
/external/llvm/test/DebugInfo/MIR/X86/
Dlive-debug-values-3preds.mir30 # CHECK-DAG: DBG_VALUE debug-use %edi, debug-use _, !11, !16, debug-location !17
31 # CHECK-DAG: DBG_VALUE debug-use %edx, debug-use _, !13, !16, debug-location !20
32 # CHECK-DAG: DBG_VALUE debug-use %esi, debug-use _, !12, !16, debug-location !18
189 DBG_VALUE debug-use %edi, debug-use _, !9, !17, debug-location !18
190 DBG_VALUE debug-use %esi, debug-use _, !10, !17, debug-location !19
191 DBG_VALUE debug-use %edx, debug-use _, !11, !17, debug-location !21
192 DBG_VALUE debug-use %ecx, debug-use _, !12, !17, debug-location !23
203 DBG_VALUE debug-use %edi, debug-use _, !9, !17, debug-location !18
204 DBG_VALUE debug-use %esi, debug-use _, !10, !17, debug-location !19
205 DBG_VALUE debug-use %edx, debug-use _, !11, !17, debug-location !21
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/test/DebugInfo/MIR/X86/
Dlive-debug-values-3preds.mir34 # CHECK-DAG: DBG_VALUE debug-use $edi, debug-use $noreg, ![[X_VAR]], !DIExpression(), debug-locati…
35 # CHECK-DAG: DBG_VALUE debug-use $esi, debug-use $noreg, ![[Y_VAR]], !DIExpression(), debug-locati…
36 # CHECK-DAG: DBG_VALUE debug-use $edx, debug-use $noreg, ![[Z_VAR]], !DIExpression(), debug-locati…
189 DBG_VALUE debug-use $edi, debug-use _, !9, !17, debug-location !18
190 DBG_VALUE debug-use $esi, debug-use _, !10, !17, debug-location !19
191 DBG_VALUE debug-use $edx, debug-use _, !11, !17, debug-location !21
192 DBG_VALUE debug-use $ecx, debug-use _, !12, !17, debug-location !23
203 DBG_VALUE debug-use $edi, debug-use _, !9, !17, debug-location !18
204 DBG_VALUE debug-use $esi, debug-use _, !10, !17, debug-location !19
205 DBG_VALUE debug-use $edx, debug-use _, !11, !17, debug-location !21
[all …]
/external/libxml2/
Dbuf.c49 size_t use; /* The buffer size used */ member
63 if (buf->use < INT_MAX) buf->compat_use = buf->use; \
75 if (buf->use != (size_t) buf->compat_use) \
77 buf->use = buf->compat_use;
131 ret->use = 0; in xmlBufCreate()
165 ret->use = 0; in xmlBufCreateSize()
211 buf->use = 0; in xmlBufDetach()
249 ret->use = size; in xmlBufCreateStatic()
359 buf->use = 0; in xmlBufEmpty()
392 if (len > buf->use) return(0); in xmlBufShrink()
[all …]
/external/llvm/test/MC/ARM/
Darm-load-store-multiple-deprecated.s14 @ CHECK: warning: use of SP or PC in the list is deprecated
18 @ CHECK: warning: use of SP or PC in the list is deprecated
22 @ CHECK: warning: use of SP or PC in the list is deprecated
26 @ CHECK: warning: use of SP or PC in the list is deprecated
30 @ CHECK: warning: use of SP or PC in the list is deprecated
34 @ CHECK: warning: use of SP or PC in the list is deprecated
42 @ CHECK: warning: use of SP or PC in the list is deprecated
46 @ CHECK: warning: use of SP or PC in the list is deprecated
50 @ CHECK: warning: use of SP or PC in the list is deprecated
54 @ CHECK: warning: use of SP or PC in the list is deprecated
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/test/MC/ARM/
Darm-load-store-multiple-deprecated.s14 @ CHECK: warning: use of SP or PC in the list is deprecated
18 @ CHECK: warning: use of SP or PC in the list is deprecated
22 @ CHECK: warning: use of SP or PC in the list is deprecated
26 @ CHECK: warning: use of SP or PC in the list is deprecated
30 @ CHECK: warning: use of SP or PC in the list is deprecated
34 @ CHECK: warning: use of SP or PC in the list is deprecated
42 @ CHECK: warning: use of SP or PC in the list is deprecated
46 @ CHECK: warning: use of SP or PC in the list is deprecated
50 @ CHECK: warning: use of SP or PC in the list is deprecated
54 @ CHECK: warning: use of SP or PC in the list is deprecated
[all …]
/external/clang/test/CodeGenCXX/
Dmicrosoft-abi-vtables-single-inheritance.cpp23 void use(A *obj) { obj->f(); } in use() function
43 void use(B *obj) { obj->f(); } in use() function
58 void use(C *obj) { obj->f(); } in use() function
73 void use(D *obj) { obj->f(); } in use() function
93 void use(E *obj) { obj->i(); } in use() function
111 void use(F *obj) { obj->i(); } in use() function
132 void use(G *obj) { obj->j(); } in use() function
152 void use(I *obj) { obj->f(); } in use() function
171 void use(J *obj) { obj->foo(42); } in use() function
190 void use(K *obj) { obj->foo(42.0f); } in use() function
[all …]
Dvtable-key-function-arm.cpp16 extern void use(const std::type_info &rtti);
27 Test0a::Test0a() { use(typeid(Test0a)); } in Test0a()
46 Test0b::Test0b() { use(typeid(Test0b)); } in Test0b()
59 Test1a::Test1a() { use(typeid(Test1a)); } in Test1a()
78 Test1b::Test1b() { use(typeid(Test1b)); } in Test1b()
91 Test2a::Test2a() { use(typeid(Test2a)); } in Test2a()
112 Test2b::Test2b() { use(typeid(Test2b)); } in Test2b()
132 Test2c::Test2c() { use(typeid(Test2c)); } in Test2c()
146 Test3a::Test3a() { use(typeid(Test3a)); } in Test3a()
167 Test3b::Test3b() { use(typeid(Test3b)); } in Test3b()
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/test/DebugInfo/X86/
Dlive-debug-vars-discard-invalid.mir66 ; This DBG_VALUE will be discarded (use before def of %0).
67 DBG_VALUE debug-use %0, debug-use $noreg, !18, !DIExpression(), debug-location !25
75 DBG_VALUE debug-use %1, debug-use $noreg, !18, !DIExpression(), debug-location !25
82 DBG_VALUE debug-use %1, debug-use $noreg, !18, !DIExpression(), debug-location !25
86 DBG_VALUE 0, debug-use $noreg, !23, !DIExpression(), debug-location !25
89 DBG_VALUE debug-use %1, debug-use $noreg, !18, !DIExpression(), debug-location !25
92 …; All DBG_VALUEs here should survive. %2 is livein as it was defined in bb.0, and it has use/def i…
93 DBG_VALUE debug-use %2, debug-use $noreg, !18, !DIExpression(), debug-location !25
95 DBG_VALUE 0, debug-use $noreg, !23, !DIExpression(), debug-location !25
96 DBG_VALUE debug-use %2, debug-use $noreg, !18, !DIExpression(), debug-location !25
[all …]
/external/v8/src/compiler/
Dnode.cc122 Use* use = use_ptr - 1 - current; in NewImpl() local
123 use->bit_field_ = Use::InputIndexField::encode(current) | in NewImpl()
125 to->AppendUse(use); in NewImpl()
164 Use* use = GetUsePtr(inline_count); in AppendInput() local
166 use->bit_field_ = Use::InputIndexField::encode(inline_count) | in AppendInput()
168 new_to->AppendUse(use); in AppendInput()
193 Use* use = GetUsePtr(input_count); in AppendInput() local
195 use->bit_field_ = Use::InputIndexField::encode(input_count) | in AppendInput()
197 new_to->AppendUse(use); in AppendInput()
290 for (const Use* use = first_use_; use; use = use->next) { in UseCount() local
[all …]
/external/antlr/runtime/Perl5/t/
Dlexer.t1 use strict;
2 use warnings;
4 use FindBin;
5 use lib qw( t/lib );
7 use File::Slurp;
9 use Test::More;
10 use ANTLR::Runtime::Test;
31 use strict;
32 use warnings;
34 use ANTLR::Runtime::ANTLRStringStream;
[all …]
/external/clang/test/Parser/
Dopencl-atomics-cl20.cl29 _Atomic int i; // expected-error {{use of undeclared identifier '_Atomic'}}
32 // expected-error@-16 {{use of undeclared identifier 'atomic_int'}}
33 // expected-error@-16 {{use of undeclared identifier 'atomic_uint'}}
34 // expected-error@-16 {{use of undeclared identifier 'atomic_long'}}
35 // expected-error@-16 {{use of undeclared identifier 'atomic_ulong'}}
36 // expected-error@-16 {{use of undeclared identifier 'atomic_float'}}
37 // expected-error@-16 {{use of undeclared identifier 'atomic_double'}}
38 // expected-error@-16 {{use of undeclared identifier 'atomic_flag'}}
39 // expected-error@-16 {{use of undeclared identifier 'atomic_intptr_t'}}
40 // expected-error@-16 {{use of undeclared identifier 'atomic_uintptr_t'}}
[all …]

12345678910>>...432