Home
last modified time | relevance | path

Searched refs:correct (Results 1 – 25 of 854) sorted by relevance

12345678910>>...35

/llvm-project-15.0.7/libcxx/test/std/utilities/charconv/charconv.msvc/
H A Dtest.hpp32 const char* correct; member
39 const char* correct; member
53 const char* correct; member
60 const char* correct; member
H A Dtest.cpp147 for (size_t n = 0; n <= correct.size() + ExtraChars; ++n) { in test_common_to_chars()
169 if (n < correct.size()) { in test_common_to_chars()
176 assert(result.ptr == first + correct.size()); in test_common_to_chars()
179 assert(equal(first, result.ptr, correct.begin(), correct.end())); in test_common_to_chars()
188 test_common_to_chars(value, opt_base, nullopt, correct); in test_integer_to_chars()
191 const char* const correct_first = correct.data(); in test_integer_to_chars()
192 const char* const correct_last = correct_first + correct.size(); in test_integer_to_chars()
972 test_common_to_chars(value, opt_fmt, opt_precision, correct); in test_floating_to_chars()
1024 test_floating_to_chars(t.value, t.fmt, nullopt, t.correct); in all_floating_tests()
1033 test_floating_to_chars(t.value, t.fmt, nullopt, t.correct); in all_floating_tests()
[all …]
/llvm-project-15.0.7/clang-tools-extra/docs/clang-tidy/checks/llvmlibc/
H A Dimplementation-in-namespace.rst7 correct namespace.
11 // Correct: implementation inside the correct namespace.
25 // Incorrect: outer most namespace is not correct.
/llvm-project-15.0.7/llvm/test/tools/llvm-profdata/
H A Dshow-prof-info.test7 ; To check llvm-profdata shows the correct flags for ProfileSummarySection.
9 ; To check llvm-profdata shows the correct flags for NameTableSection.
11 ; To check llvm-profdata shows the correct file size.
/llvm-project-15.0.7/llvm/test/CodeGen/AArch64/
H A Daarch64-dynamic-stack-layout.ll307 ; Check correct reservation of 16-byte aligned VLA (size in w0) on stack
315 ; Check correct access to local variable, through frame pointer
317 ; Check correct accessing of the VLA variable through the base pointer
362 ; Check correct access to local variable, through frame pointer
364 ; Check correct accessing of the VLA variable through the base pointer
424 ; Check correct access to local variable, through base pointer
472 ; Check correct access to local variable, through base pointer
525 ; Check correct access to local variable, through base pointer
560 ; Check correct access to local variable, through base pointer
611 ; Check correct access to local variable, through base pointer
[all …]
/llvm-project-15.0.7/llvm/test/DebugInfo/ARM/
H A Ddwarfdump-rela.yaml7 # CHECK-NEXT: DW_AT_name {{.*}}("correct")
8 # CHECK-NEXT: DW_AT_type ([[TYPEDIE:0x[0-9A-Fa-f]+]] "correct")
10 # CHECK-NEXT: DW_AT_name {{.*}}("correct")
86 - 'correct'
/llvm-project-15.0.7/clang/test/Parser/
H A Dwhile-loop-outside-function.c21 void correct();
23 void correct() { in correct() function
/llvm-project-15.0.7/clang/test/CodeGenObjC/
H A Dgnustep2-category.m4 // Check that we have a method list that refers to the correct thing method:
9 // Check that we emit the correct encoding for the property (somewhere)
12 // Check that we emit a single-element property list of the correct form.
/llvm-project-15.0.7/llvm/test/tools/llvm-libtool-darwin/
H A Darchive-flattening.test7 ## Input a correct archive:
8 # RUN: rm -f %t.correct.ar
9 # RUN: llvm-ar cr %t.correct.ar %t-x86_64.bc %t-input1.o %t-input2.o
10 # RUN: llvm-libtool-darwin -static -o %t.lib %t.correct.ar
42 # RUN: llvm-libtool-darwin -static -o %t.lib %t-x86_64.bc %t.correct.ar %t-input1.o
62 # RUN: llvm-libtool-darwin -static -o %t.lib %t-x86_64.bc %t.correct.ar %t-input1.o 2>&1 | \
64 …ATHA=%t-input1.o -DFILEB=%basename_t.tmp-x86_64.bc -DPATHB=%t-x86_64.bc -DPATHCORRECT=%t.correct.ar
/llvm-project-15.0.7/compiler-rt/test/builtins/Unit/
H A Dpowisf2_test.c15 int correct = (x == expected) && (signbit(x) == signbit(expected)); in test__powisf2() local
16 if (!correct) in test__powisf2()
19 return !correct; in test__powisf2()
H A Dpowitf2_test.c18 int correct = (x == expected) && (signbit(x) == signbit(expected)); in test__powitf2() local
19 if (!correct) in test__powitf2()
22 return !correct; in test__powitf2()
H A Dpowixf2_test.c19 int correct = (x == expected) && (signbit(x) == signbit(expected)); in test__powixf2() local
20 if (!correct) in test__powixf2()
23 return !correct; in test__powixf2()
H A Dpowidf2_test.c15 int correct = (x == expected) && (signbit(x) == signbit(expected)); in test__powidf2() local
16 if (!correct) in test__powidf2()
19 return !correct; in test__powidf2()
/llvm-project-15.0.7/llvm/test/tools/llvm-objdump/X86/
H A Dsource-interleave-prefix.test18 ;; Test invalid source interleave fixed by adding the correct prefix.
28 ; RUN: sed -e "s,SRC_COMPDIR,%/p/Inputs,g" %p/Inputs/source-interleave.ll > %t-correct-prefix.ll
29 ; RUN: llc -o %t-correct-prefix.o -filetype=obj -mtriple=x86_64-pc-linux %t-correct-prefix.ll
30 ; RUN: llvm-objdump --prefix myprefix --source %t-correct-prefix.o 2>&1 | \
31 ; RUN: FileCheck %s --check-prefix=CHECK-BROKEN-PREFIX -DFILE=%t-correct-prefix.o -DPREFIX=mypref…
44 ;; Test invalid source interleave fixed by adding the correct prefix and
/llvm-project-15.0.7/llvm/test/Transforms/InstCombine/
H A D2008-04-22-ByValBitcast.ll2 ;; the correct type, or at least a type of the correct size.
/llvm-project-15.0.7/lldb/test/API/lang/objc/objc_direct-methods/
H A Dmain.m26 … //%self.expect_expr("[self directCallConflictingName]", result_summary='"correct function"')
61 return "correct function";
89 … //%self.expect_expr("[foo directCallConflictingName]", result_summary='"correct function"')
/llvm-project-15.0.7/llvm/test/DebugInfo/X86/
H A Ddebug-cu-index-overlap.s5 # itself - in which case this test would need to be updated to have a correct
6 # hash table (currently hand crafted with no attempt at correct allocation of
/llvm-project-15.0.7/llvm/test/Assembler/
H A Dgetelementptr_vec_idx2.ll6 ; This code is correct
12 ; This code is correct
/llvm-project-15.0.7/clang-tools-extra/docs/clang-tidy/checks/cert/
H A Dmem57-cpp.rst8 ``operator new`` is guaranteed to provide the correct alignment if the
12 assume that the user provided the correct memory allocation).
/llvm-project-15.0.7/llvm/test/Transforms/Coroutines/
H A Dcoro-padding.ll1 ; Check that we will insert the correct padding if natural alignment of the
36 ; See if we used correct index to access packed struct (padding is field 3)
42 ; See if we used correct index to access packed struct (padding is field 3)
/llvm-project-15.0.7/compiler-rt/test/sanitizer_common/TestCases/FreeBSD/
H A Dcapsicum.cpp44 bool correct = cap_rights_is_valid(&rights); in test_cap_rights() local
45 assert(correct == true); in test_cap_rights()
/llvm-project-15.0.7/llvm/test/Verifier/
H A Dfpmath.ll13 ; Above line is correct.
15 ; Above line is correct.
/llvm-project-15.0.7/libclc/generic/lib/integer/
H A Dmad_sat.cl45 /* Low overflow in mul and z not neg enough to correct it */
51 /* Low overflow in mul and z not pos enough to correct it */
55 * the correct value */
/llvm-project-15.0.7/lld/test/MachO/
H A Dflat-namespace-interposable.s5 ## Check that we generate the correct bindings for them. The test also includes
7 ## (correct) thing even when `-flat_namespace` is enabled, instead of generating
/llvm-project-15.0.7/llvm/test/Transforms/PGOProfile/
H A Dmisexpect-branch.ll13 …ormance regression from use of the llvm.expect intrinsic: Annotation was correct on 19.98% (399668…
16 …ormance regression from use of the llvm.expect intrinsic: Annotation was correct on 19.98% (399668…
19 …ormance regression from use of the llvm.expect intrinsic: Annotation was correct on 19.98% (399668…
22 …ormance regression from use of the llvm.expect intrinsic: Annotation was correct on 19.98% (399668…
25 …ormance regression from use of the llvm.expect intrinsic: Annotation was correct on 19.98% (399668…

12345678910>>...35