Home
last modified time | relevance | path

Searched full:used (Results 1 – 25 of 7425) sorted by relevance

12345678910>>...297

/llvm-project/clang/test/CodeGen/
H A Dzero-call-used-regs.c1 // RUN: %clang_cc1 -triple x86_64-unknown-linux-gnu %s -emit-llvm -fzero-call-used-regs=skip -o - |…
2 …known-linux-gnu %s -emit-llvm -fzero-call-used-regs=used-gpr-arg -o - | FileCheck %s --check-prefi…
3 …unknown-linux-gnu %s -emit-llvm -fzero-call-used-regs=used-gpr -o - | FileCheck %s --check-prefix …
4 …unknown-linux-gnu %s -emit-llvm -fzero-call-used-regs=used-arg -o - | FileCheck %s --check-prefix …
5 …4-unknown-linux-gnu %s -emit-llvm -fzero-call-used-regs=used -o - | FileCheck %s --check-prefix CH…
6 // RUN: %clang_cc1 -triple x86_64-unknown-linux-gnu %s -emit-llvm -fzero-call-used-regs=all-gpr-arg…
7 // RUN: %clang_cc1 -triple x86_64-unknown-linux-gnu %s -emit-llvm -fzero-call-used-regs=all-gpr -o …
8 // RUN: %clang_cc1 -triple x86_64-unknown-linux-gnu %s -emit-llvm -fzero-call-used-regs=all-arg -o …
9 // RUN: %clang_cc1 -triple x86_64-unknown-linux-gnu %s -emit-llvm -fzero-call-used-regs=all -o - | …
11 // -fzero-call-used-regs=skip:
[all …]
/llvm-project/clang/test/SemaCXX/
H A Dwarn-unsafe-buffer-usage-multi-decl-warnings.cpp9 …int* p = new int[10]; // expected-warning{{'p' is an unsafe pointer used for buffer access}} expec… in local_assign_both_span()
10 tmp = p[4]; // expected-note{{used in buffer access here}} in local_assign_both_span()
12 …int* q = new int[10]; // expected-warning{{'q' is an unsafe pointer used for buffer access}} expe… in local_assign_both_span()
13 tmp = q[4]; // expected-note{{used in buffer access here}} in local_assign_both_span()
21 int* q = new int[10]; // expected-warning{{'q' is an unsafe pointer used for buffer access}} in local_assign_rhs_span()
22 tmp = q[4]; // expected-note{{used in buffer access here}} in local_assign_rhs_span()
35 …int* p = new int[10]; // expected-warning{{'p' is an unsafe pointer used for buffer access}} expe… in local_assign_lhs_span()
36 tmp = p[4]; // expected-note{{used in buffer access here}} in local_assign_lhs_span()
46 …int *d = c; // expected-warning{{'d' is an unsafe pointer used for buffer access}} expected-note{… in lhs_span_multi_assign()
47 int tmp = d[2]; // expected-note{{used in buffer access here}} in lhs_span_multi_assign()
[all …]
H A Duninitialized.cpp25 int a = a; // no-warning: used to signal intended lack of initialization.
26 int b = b + 1; // expected-warning {{variable 'b' is uninitialized when used within its own initialization}}
27 int c = (c + c); // expected-warning 2 {{variable 'c' is uninitialized when used within its own initialization}}
28 int e = static_cast<long>(e) + 1; // expected-warning {{variable 'e' is uninitialized when used within its own initialization}}
29 int f = foo(f); // expected-warning {{variable 'f' is uninitialized when used within its own initialization}}
39 int l = k ? l : l; // expected-warning 2{{variable 'l' is uninitialized when used within its own initialization}}
40 int m = 1 + (k ? m : m); // expected-warning 2{{variable 'm' is uninitialized when used within its own initialization}}
41 int n = -n; // expected-warning {{variable 'n' is uninitialized when used within its own initialization}}
42 int o = std::move(o); // expected-warning {{variable 'o' is uninitialized when used within its own initialization}}
43 const int p = std::move(p); // expected-warning {{variable 'p' is uninitialized when used withi
[all...]
H A Dwarn-unsafe-buffer-usage.cpp29 void testIncrement(char *p) { // expected-warning{{'p' is an unsafe pointer used for buffer access}} in testIncrement()
30 ++p; // expected-note{{used in pointer arithmetic here}} in testIncrement()
31 p++; // expected-note{{used in pointer arithmetic here}} in testIncrement()
32 --p; // expected-note{{used in pointer arithmetic here}} in testIncrement()
33 p--; // expected-note{{used in pointer arithmetic here}} in testIncrement()
40 // expected-warning@-1{{'p' is an unsafe pointer used for buffer access}} in testArraySubscripts()
41 // expected-warning@-2{{'pp' is an unsafe pointer used for buffer access}} in testArraySubscripts()
42 foo(p[1], // expected-note{{used in buffer access here}} in testArraySubscripts()
43 pp[1][1], // expected-note{{used in buffer access here}} in testArraySubscripts()
45 1[1[pp]], // expected-note{{used i in testArraySubscripts()
[all...]
H A Dwarn-unsafe-buffer-usage-fixits-multi-parm-span.cpp10 int * b = new int[10]; //expected-warning{{'b' is an unsafe pointer used for buffer access}} \ in parmsNoFix()
15 b[5] = 5; // expected-note{{used in buffer access here}} in parmsNoFix()
20 void parmsSingleton(int *p) { //expected-warning{{'p' is an unsafe pointer used for buffer access}}… in parmsSingleton()
27 int * b; //expected-warning{{'b' is an unsafe pointer used for buffer access}} \ in parmsSingleton()
31 b[5] = 5; // expected-note{{used in buffer access here}} in parmsSingleton()
32 p[5] = 5; // expected-note{{used in buffer access here}} in parmsSingleton()
52 …cted-warning{{'p' is an unsafe pointer used for buffer access}} expected-warning{{'q' is an unsa… in multiParmAllFix()
53 expected-warning{{'a' is an unsafe pointer used for buffer access}} \ in multiParmAllFix()
59 tmp = p[5]; // expected-note{{used in buffer access here}} in multiParmAllFix()
60 tmp = a[5]; // expected-note{{used in buffer access here}} in multiParmAllFix()
[all …]
H A Dwarn-unsafe-buffer-usage-fixits-parm-unsupported.cpp12 void typedefPointer(TYPEDEF_PTR p) { // expected-warning{{'p' is an unsafe pointer used for buffer access}} in typedefPointer()
13 if (++p) { // expected-note{{used in pointer arithmetic here}} in typedefPointer()
18 void macroPointer(MACRO_PTR p) { // expected-warning{{'p' is an unsafe pointer used for buffer access}} in macroPointer()
19 if (++p) { // expected-note{{used in pointer arithmetic here}} in macroPointer()
28 // `_Atomic` is used, we cannot get valid source locations of the
32 void typeLocSourceLocationInvalid(_Atomic unsigned *map) { // expected-warning{{'map' is an unsafe pointer used for buffer access}} in typeLocSourceLocationInvalid()
33 map[5] = 5; // expected-note{{used in buffer access here}} in typeLocSourceLocationInvalid()
37 void typeLocSourceLocationValid(unsigned *map) { // expected-warning{{'map' is an unsafe pointer used for buffer access}} \ in typeLocSourceLocationValid()
39 map[5] = 5; // expected-note{{used in buffer access here}} in typeLocSourceLocationValid()
49 A(int * p) { // expected-warning{{'p' is an unsafe pointer used fo
[all...]
H A Dwarn-unused-private-field.cpp8 int used; member in EqDefaultCompare
11 EqDefaultCompare(int x) : used(x) {} in EqDefaultCompare()
16 int used; member in SpaceShipDefaultCompare
19 SpaceShipDefaultCompare(int x) : used(x) {} in SpaceShipDefaultCompare()
24 int used; // no warning, the compiler generated AST for the comparison operator
37 int used; // no warning, same reasoning just tested via a friend declaration.
44 int unused_; // expected-warning{{private field 'unused_' is not used}}
48 int used;
79 int unused_; // expected-warning{{private field 'unused_' is not used}}
97 int unused_; // expected-warning{{private field 'unused_' is not used}}
[all...]
H A Dwarn-unsafe-buffer-usage-multi-decl-uuc.cpp6 int *p = new int[4]; // expected-warning{{'p' is an unsafe pointer used for buffer access}} in foo1a()
8 int tmp = p[9]; // expected-note{{used in buffer access here}} in foo1a()
15 …int *p = new int[4]; // expected-warning{{'p' is an unsafe pointer used for buffer access}} // ex… in uuc_if_body()
18 p[5] = 4; // expected-note{{used in buffer access here}} in uuc_if_body()
23 …int *p = new int[4]; // expected-warning{{'p' is an unsafe pointer used for buffer access}} // ex… in uuc_if_body1()
27 p[5] = 4; // expected-note{{used in buffer access here}} in uuc_if_body1()
32 …int *p = new int[4]; // expected-warning{{'p' is an unsafe pointer used for buffer access}} // ex… in uuc_if_body2()
38 p[5] = 4; // expected-note{{used in buffer access here}} in uuc_if_body2()
45 …int* p = r; // expected-warning{{'p' is an unsafe pointer used for buffer access}} // expected-no… in uuc_if_body2_ptr_init()
46 p[5] = 4; // expected-note{{used in buffer access here}} in uuc_if_body2_ptr_init()
[all …]
/llvm-project/clang/test/Sema/
H A Daarch64-sve-vector-shift-ops.c20 …(void)(i8 << f16); // expected-error{{used type 'svfloat16_t' (aka '__SVFloat16_t') where integer … in lshift()
21 …(void)(i8 << f32); // expected-error{{used type 'svfloat32_t' (aka '__SVFloat32_t') where integer … in lshift()
22 …(void)(i8 << f64); // expected-error{{used type 'svfloat64_t' (aka '__SVFloat64_t') where integer … in lshift()
23 (void)(i8 << 0.f); // expected-error{{used type 'float' where integer is required}} in lshift()
24 (void)(i8 << 0.); // expected-error{{used type 'double' where integer is required}} in lshift()
33 …(void)(u8 << f16); // expected-error{{used type 'svfloat16_t' (aka '__SVFloat16_t') where integer … in lshift()
34 …(void)(u8 << f32); // expected-error{{used type 'svfloat32_t' (aka '__SVFloat32_t') where integer … in lshift()
35 …(void)(u8 << f64); // expected-error{{used type 'svfloat64_t' (aka '__SVFloat64_t') where integer … in lshift()
36 (void)(u8 << 0.f); // expected-error{{used type 'float' where integer is required}} in lshift()
37 (void)(u8 << 0.); // expected-error{{used type 'double' where integer is required}} in lshift()
[all …]
H A Dattr-used.c3 extern int l0 __attribute__((used)); // expected-warning {{'used' attribute ignored on a non-defini…
4 __private_extern__ int l1 __attribute__((used)); // expected-warning {{'used' attribute ignored on …
6 struct __attribute__((used)) s { // expected-warning {{'used' attribute only applies to variables w…
10 int a __attribute__((used));
12 static void __attribute__((used)) f0(void) { in f0()
16 static int a __attribute__((used)); in f1()
17 …int b __attribute__((used)); // expected-warning {{'used' attribute only applies to variables with… in f1()
20 static void __attribute__((used)) f0(void);
/llvm-project/lld/test/wasm/
H A Dtarget-feature-used.yaml9 # RUN: yaml2obj %S/Inputs/use-feature-foo.yaml -o %t.used.o
10 # RUN: wasm-ld --no-entry -o - %t1.o %t.used.o | obj2yaml | FileCheck %s --check-prefix USED
23 # USED x USED => USED
24 # USED x DISALLOWED => Error
25 # USED x NONE => USED
37 - Prefix: USED
[all...]
/llvm-project/llvm/include/llvm/IR/
H A DCallingConv.h49 /// Used by the Glasgow Haskell Compiler (GHC).
52 /// Used by the High-Performance Erlang Compiler (HiPE).
55 /// OBSOLETED - Used for stack based JavaScript calls
58 /// Used for dynamic register based calls (e.g. stackmap and patchpoint
62 /// Used for runtime calls that preserves most registers.
65 /// Used for runtime calls that preserves (almost) all registers.
71 /// Used for access functions.
89 /// Used for runtime calls that preserves none general registers.
96 /// stdcall is mostly used by the Win32 API. It is basically the same as the
105 /// ARM Procedure Calling Standard (obsolete, but still used on some
[all …]
/llvm-project/clang-tools-extra/clang-tidy/
H A DClangTidyForceLinker.h17 // This anchor is used to force the linker to link the AbseilModule.
22 // This anchor is used to force the linker to link the AlteraModule.
27 // This anchor is used to force the linker to link the AndroidModule.
32 // This anchor is used to force the linker to link the BoostModule.
37 // This anchor is used to force the linker to link the BugproneModule.
42 // This anchor is used to force the linker to link the CERTModule.
47 // This anchor is used to force the linker to link the ConcurrencyModule.
52 // This anchor is used to force the linker to link the CppCoreGuidelinesModule.
57 // This anchor is used to force the linker to link the DarwinModule.
62 // This anchor is used to force the linker to link the FuchsiaModule.
[all …]
/llvm-project/flang/test/Semantics/
H A Dresolve81.f9014 !WARNING: Attribute 'PUBLIC' cannot be used more than once
16 !WARNING: Attribute 'PRIVATE' cannot be used more than once
18 !WARNING: Attribute 'ALLOCATABLE' cannot be used more than once
20 !WARNING: Attribute 'ASYNCHRONOUS' cannot be used more than once
22 !ERROR: Attribute 'CODIMENSION' cannot be used more than once
24 !WARNING: Attribute 'CONTIGUOUS' cannot be used more than once
26 !ERROR: Attribute 'DIMENSION' cannot be used more than once
28 !WARNING: Attribute 'EXTERNAL' cannot be used more than once
30 !WARNING: Attribute 'INTRINSIC' cannot be used more than once
34 !WARNING: Attribute 'BIND(C)' cannot be used more than once
[all …]
/llvm-project/clang/test/CXX/temp/temp.names/
H A Dp5.cpp23 struct A<T>::template B<U>::C { }; // expected-error{{'template' cannot be used after a declarative…
27 struct A<int>::template B<bool>::C; // expected-error{{'template' cannot be used after a declarativ…
31 struct A<int>::template B<bool>::C { }; // expected-error{{'template' cannot be used after a declar…
36 struct A<T>::template B<U>::D<V*>; // expected-error{{'template' cannot be used after a declarative…
41 struct A<T>::B<U>::template D<V**>; // expected-error{{'template' cannot be used after a declarativ…
46 struct A<T>::template B<U>::D { }; // expected-error{{'template' cannot be used after a declarative…
51 struct A<T>::template B<U>::D<V*> { }; // expected-error{{'template' cannot be used after a declara…
56 struct A<T>::B<U>::template D<V**> { }; // expected-error{{'template' cannot be used after a declar…
61 struct A<int>::template B<bool>::D; // expected-error{{'template' cannot be used after a declarativ…
66 struct A<int>::template B<bool>::D<short>; // expected-error{{'template' cannot be used after a dec…
[all …]
/llvm-project/clang-tools-extra/test/clang-tidy/checkers/bugprone/
H A Dunsafe-functions.c31 // CHECK-MESSAGES-WITH-ANNEX-K: :[[@LINE-1]]:3: warning: function 'gets' is insecure, was deprecated and removed in C11 and C++14; 'gets_s' should be used instead [bugprone-unsafe-functions] in f1()
35 // CHECK-MESSAGES-WITH-ANNEX-K-CERT-ONLY: :[[@LINE-5]]:3: warning: function 'gets' is insecure, was deprecated and removed in C11 and C++14; 'gets_s' should be used instead in f1()
36 // CHECK-MESSAGES-WITHOUT-ANNEX-K: :[[@LINE-6]]:3: warning: function 'gets' is insecure, was deprecated and removed in C11 and C++14; 'fgets' should be used instead in f1()
39 // CHECK-MESSAGES-WITH-ANNEX-K: :[[@LINE-1]]:3: warning: function 'strlen' is not bounds-checking; 'strnlen_s' should be used instead in f1w()
40 // CHECK-MESSAGES-WITH-ANNEX-K-CERT-ONLY: :[[@LINE-2]]:3: warning: function 'strlen' is not bounds-checking; 'strnlen_s' should be used instead in f1w()
46 // CHECK-MESSAGES-WITH-ANNEX-K: :[[@LINE-1]]:3: warning: function 'wcslen' is not bounds-checking; 'wcsnlen_s' should be used instead
47 // CHECK-MESSAGES-WITH-ANNEX-K-CERT-ONLY: :[[@LINE-2]]:3: warning: function 'wcslen' is not bounds-checking; 'wcsnlen_s' should be used instead
56 // CHECK-MESSAGES-WITH-ANNEX-K: :[[@LINE-1]]:3: warning: function 'asctime' is not bounds-checking and non-reentrant; 'asctime_s' should be used instead in f2()
57 // CHECK-MESSAGES-WITH-ANNEX-K-CERT-ONLY: :[[@LINE-2]]:3: warning: function 'asctime' is not bounds-checking and non-reentrant; 'asctime_s' should be used instead in f2()
58 // CHECK-MESSAGES-WITHOUT-ANNEX-K: :[[@LINE-3]]:3: warning: function 'asctime' is not bounds-checking and non-reentrant; 'strftime' should be used instea in f2()
[all...]
H A Dinteger-division.cpp13 // CHECK-MESSAGES: :[[@LINE-1]]:10: warning: result of integer division used in in singleDiv()
18 // CHECK-MESSAGES: :[[@LINE-1]]:10: warning: result of integer division used in in wrongOrder()
45 // CHECK-MESSAGES: :[[@LINE-1]]:9: warning: result of integer division used in in m()
60 // CHECK-MESSAGES: :[[@LINE-1]]:11: warning: result of integer division used in in integerDivision()
65 // CHECK-MESSAGES: :[[@LINE-1]]:7: warning: result of integer division used in in integerDivision()
67 // CHECK-MESSAGES: :[[@LINE-1]]:8: warning: result of integer division used in in integerDivision()
70 // CHECK-MESSAGES: :[[@LINE-1]]:16: warning: result of integer division used in in integerDivision()
72 // CHECK-MESSAGES: :[[@LINE-1]]:11: warning: result of integer division used in in integerDivision()
74 // CHECK-MESSAGES: :[[@LINE-1]]:19: warning: result of integer division used in in integerDivision()
84 // CHECK-MESSAGES: :[[@LINE-1]]:3: warning: result of integer division used in in integerDivision()
[all …]
/llvm-project/clang/test/SemaOpenACC/
H A Dparallel-loc-and-stmt.c3 // expected-error@+1{{OpenACC construct 'parallel' cannot be used here; it can only be used in a st…
6 // expected-error@+1{{OpenACC construct 'serial' cannot be used here; it can only be used in a stat…
9 // expected-error@+1{{OpenACC construct 'kernels' cannot be used here; it can only be used in a sta…
12 // expected-error@+1{{OpenACC construct 'parallel' cannot be used here; it can only be used in a st…
15 // expected-error@+1{{OpenACC construct 'serial' cannot be used here; it can only be used in a stat…
18 // expected-error@+1{{OpenACC construct 'kernels' cannot be used here; it can only be used in a sta…
23 // expected-error@+1{{OpenACC construct 'parallel' cannot be used here; it can only be used in a st…
26 // expected-error@+1{{OpenACC construct 'serial' cannot be used here; it can only be used in a stat…
29 // expected-error@+1{{OpenACC construct 'kernels' cannot be used here; it can only be used in a sta…
/llvm-project/clang/test/Analysis/
H A Dinner-pointer.cpp54 consume(c); // expected-warning {{Inner pointer of container used after re/deallocation}} in deref_after_scope_char()
55 // expected-note@-1 {{Inner pointer of container used after re/deallocation}} in deref_after_scope_char()
57 consume(d); // expected-warning {{Inner pointer of container used after re/deallocation}} in deref_after_scope_char()
58 // expected-note@-1 {{Inner pointer of container used after re/deallocation}} in deref_after_scope_char()
70 consume(c); // expected-warning {{Inner pointer of container used after re/deallocation}} in deref_after_scope_char_data_non_const()
71 // expected-note@-1 {{Inner pointer of container used after re/deallocation}} in deref_after_scope_char_data_non_const()
89 consume(c); // expected-warning {{Inner pointer of container used after re/deallocation}} in deref_after_scope_wchar_t()
90 // expected-note@-1 {{Inner pointer of container used after re/deallocation}} in deref_after_scope_wchar_t()
92 consume(d); // expected-warning {{Inner pointer of container used after re/deallocation}} in deref_after_scope_wchar_t()
93 // expected-note@-1 {{Inner pointer of container used after re/deallocation}} in deref_after_scope_wchar_t()
[all …]
H A Dtest-after-div-zero.c8 …if (x == 0) { } // expected-warning {{Value being compared against zero has already been used for … in err_eq()
9 } // expected-note@-1 {{Value being compared against zero has already been used for division}} in err_eq()
13 …if (0 == x) { } // expected-warning {{Value being compared against zero has already been used for … in err_eq2()
14 } // expected-note@-1 {{Value being compared against zero has already been used for division}} in err_eq2()
18 …if (x != 0) { } // expected-warning {{Value being compared against zero has already been used for … in err_ne()
19 } // expected-note@-1 {{Value being compared against zero has already been used for division}} in err_ne()
23 …if (x >= 0) { } // expected-warning {{Value being compared against zero has already been used for … in err_ge()
24 } // expected-note@-1 {{Value being compared against zero has already been used for division}} in err_ge()
28 …if (x <= 0) {} // expected-warning {{Value being compared against zero has already been used for d… in err_le()
29 } // expected-note@-1 {{Value being compared against zero has already been used for division}} in err_le()
[all …]
/llvm-project/clang-tools-extra/clang-tidy/misc/
H A DUnusedUsingDeclsCheck.cpp59 auto DeclMatcher = hasDeclaration(namedDecl().bind("used")); in registerMatchers()
62 refsToTemplatedDecl(namedDecl().bind("used")))), in registerMatchers()
64 Finder->addMatcher(callExpr(callee(unresolvedLookupExpr().bind("used"))), in registerMatchers()
68 forEachTemplateArgument(templateArgument().bind("used"))))), in registerMatchers()
71 templateArgument().bind("used")))), in registerMatchers()
73 Finder->addMatcher(userDefinedLiteral().bind("used"), this);
77 type(asTagDecl(tagDecl().bind("used")))))), in check()
124 // Mark a corresponding using declaration as used. in check()
125 auto RemoveNamedDecl = [&](const NamedDecl *Used) { in check()
126 removeFromFoundDecls(Used); in check()
118 __anon8637da2f0202(const NamedDecl *Used) check() argument
137 if (const auto *Used = Result.Nodes.getNodeAs<NamedDecl>("used")) { check() local
154 if (const auto *Used = Result.Nodes.getNodeAs<TemplateArgument>("used")) { check() local
[all...]
/llvm-project/clang-tools-extra/test/clang-move/
H A Dmove-used-helper-decls.cpp1 // RUN: mkdir -p %T/used-helper-decls
2 // RUN: cp %S/Inputs/helper_decls_test* %T/used-helper-decls/
3 // RUN: cd %T/used-helper-decls
6 // Test moving used helper function and its transitively used functions.
8used-helper-decls/new_helper_decls_test.cpp -new_header=%T/used-helper-decls/new_helper_decls_test…
9 // RUN: FileCheck -input-file=%T/used-helper-decls/new_helper_decls_test.cpp -check-prefix=CHECK-NE…
10 // RUN: FileCheck -input-file=%T/used-helper-decls/helper_decls_test.cpp -check-prefix=CHECK-OLD-CL…
32 // Test moving used helper function and its transitively used static variables.
34 // RUN: cp %S/Inputs/helper_decls_test* %T/used-helper-decls/
35used-helper-decls/new_helper_decls_test.cpp -new_header=%T/used-helper-decls/new_helper_decls_test…
[all …]
/llvm-project/clang-tools-extra/test/clang-tidy/checkers/readability/
H A Dcontainer-size-empty.cpp121 …// CHECK-MESSAGES: :[[@LINE-2]]:7: warning: the 'empty' method should be used to check for emptine… in returnsBool()
126 …// CHECK-MESSAGES: :[[@LINE-2]]:7: warning: the 'empty' method should be used to check for emptine… in returnsBool()
131 // CHECK-MESSAGES: :[[@LINE-2]]:7: warning: the 'empty' method should be used in returnsBool()
135 …// CHECK-MESSAGES: :[[@LINE-2]]:7: warning: the 'empty' method should be used to check for emptine… in returnsBool()
139 …// CHECK-MESSAGES: :[[@LINE-2]]:7: warning: the 'empty' method should be used to check for emptine… in returnsBool()
143 …// CHECK-MESSAGES: :[[@LINE-2]]:7: warning: the 'empty' method should be used to check for emptine… in returnsBool()
147 …// CHECK-MESSAGES: :[[@LINE-2]]:7: warning: the 'empty' method should be used to check for emptine… in returnsBool()
151 // CHECK-MESSAGES: :[[@LINE-2]]:7: warning: the 'empty' method should be used in returnsBool()
155 // CHECK-MESSAGES: :[[@LINE-2]]:7: warning: the 'empty' method should be used in returnsBool()
159 …// CHECK-MESSAGES: :[[@LINE-2]]:7: warning: the 'empty' method should be used to check for emptine… in returnsBool()
[all …]
/llvm-project/polly/lib/External/isl/imath/examples/
H A Dimcalc.c53 mp_size used; /* number of slots free */ member
59 mp_size mused; /* number of used memories */
185 /* This is the end-marker, but it is also used to catch implicit
202 /* Error code used internally to signal input problems. */
234 "Output goes to standard output unless \"-o\" is used.\n\n"); in main()
441 } else if (op_state->used < (mp_size)g_ops[cpos].stack_size) { in run_file()
443 op_state->used, g_ops[cpos].stack_size); in run_file()
493 sp->used = 0; in state_init()
507 for (ix = 0; (mp_size)ix < sp->used; ++ix) { in state_clear()
515 sp->used = 0; in state_clear()
[all …]
/llvm-project/lld/COFF/
H A DConfig.h174 // Used for SafeSEH.
180 // Used for /opt:lldlto=N
182 // Used for /opt:lldltocgo=N
185 // Used for /opt:lldltojobs=N
187 // Used for /opt:lldltopartitions=N
190 // Used for /lldltocache=path
192 // Used for /lldltocachepolicy=policy
195 // Used for /opt:[no]ltodebugpassmanager
198 // Used for /merge:from=to (e.g. /merge:.rdata=.text)
201 // Used fo
[all...]

12345678910>>...297