Home
last modified time | relevance | path

Searched refs:cd (Results 1 – 25 of 375) sorted by relevance

12345678910>>...15

/llvm-project-15.0.7/compiler-rt/test/sanitizer_common/TestCases/Linux/
H A Dcrypt_r.cpp13 crypt_data cd; in main() local
14 cd.initialized = 0; in main()
15 char *p = crypt_r("abcdef", "xz", &cd); in main()
19 crypt_data cd; in main() local
20 cd.initialized = 0; in main()
21 char *p = crypt_r("abcdef", "$1$", &cd); in main()
25 crypt_data cd; in main() local
26 cd.initialized = 0; in main()
27 char *p = crypt_r("abcdef", "$5$", &cd); in main()
31 crypt_data cd; in main() local
[all …]
H A Diconv_test.c12 iconv_t cd = iconv_open("UTF-8", "no"); in main() local
13 assert(cd != (iconv_t)-1); in main()
16 fprintf(stderr, "cd: %p\n", (void*)cd); in main()
22 int ret = iconv(cd, &inbuf, &inbytesleft, &outbuf, &outbytesleft); in main()
29 iconv_close(cd); in main()
/llvm-project-15.0.7/llvm/test/CodeGen/BPF/
H A Dobjdump_imm_hex.ll28 ; CHECK-DEC: 18 03 00 00 cd ab cd ab 00 00 00 00 cd ab cd ab r3 = -6067004223159161907 ll
30 ; CHECK-HEX: 18 03 00 00 cd ab cd ab 00 00 00 00 cd ab cd ab r3 = -0x5432543254325433 ll
43 ; CHECK-DEC: 18 01 00 00 cd ab cd ab 00 00 00 00 cd ab 00 00 r1 = 188899839028173 ll
44 ; CHECK-HEX: 18 01 00 00 cd ab cd ab 00 00 00 00 cd ab 00 00 r1 = 0xabcdabcdabcd ll
/llvm-project-15.0.7/clang/tools/clang-fuzzer/
H A DDockerfile22 RUN cd llvm/tools && svn co http://llvm.org/svn/llvm-project/cfe/trunk clang -r $(cd ../ && svn inf…
23 RUN cd llvm/projects && svn co http://llvm.org/svn/llvm-project/compiler-rt/trunk compiler-rt -r $(
27 RUN mkdir build1 && cd build1 && cmake -GNinja -DCMAKE_BUILD_TYPE=Release ../llvm \
34 RUN cd build1 && ninja clang-fuzzer
35 RUN cd build1 && ninja clang-objc-fuzzer
36 RUN cd build1 && ninja clang-proto-fuzzer
37 RUN cd build1 && ninja clang-proto-to-cxx
38 RUN cd build1 && ninja clang-loop-proto-to-cxx
39 RUN cd build1 && ninja clang-loop-proto-to-llvm
40 RUN cd build1 && ninja clang-loop-proto-fuzzer
[all …]
/llvm-project-15.0.7/libcxx/test/std/numerics/complex.number/complex.special/
H A Dfloat_double_explicit.pass.cpp25 const std::complex<double> cd(2.5, 3.5); in main() local
26 std::complex<float> cf(cd); in main()
27 assert(cf.real() == cd.real()); in main()
28 assert(cf.imag() == cd.imag()); in main()
32 constexpr std::complex<double> cd(2.5, 3.5); in main() local
33 constexpr std::complex<float> cf(cd); in main()
34 static_assert(cf.real() == cd.real(), ""); in main()
35 static_assert(cf.imag() == cd.imag(), ""); in main()
H A Dlong_double_double_implicit.pass.cpp25 const std::complex<double> cd(2.5, 3.5); in main() local
26 std::complex<long double> cf = cd; in main()
27 assert(cf.real() == cd.real()); in main()
28 assert(cf.imag() == cd.imag()); in main()
32 constexpr std::complex<double> cd(2.5, 3.5); in main() local
33 constexpr std::complex<long double> cf = cd; in main()
34 static_assert(cf.real() == cd.real(), ""); in main()
35 static_assert(cf.imag() == cd.imag(), ""); in main()
H A Dlong_double_float_implicit.pass.cpp25 const std::complex<float> cd(2.5, 3.5); in main() local
26 std::complex<long double> cf = cd; in main()
27 assert(cf.real() == cd.real()); in main()
28 assert(cf.imag() == cd.imag()); in main()
32 constexpr std::complex<float> cd(2.5, 3.5); in main() local
33 constexpr std::complex<long double> cf = cd; in main()
34 static_assert(cf.real() == cd.real(), ""); in main()
35 static_assert(cf.imag() == cd.imag(), ""); in main()
H A Ddouble_float_implicit.pass.cpp25 const std::complex<float> cd(2.5, 3.5); in main() local
26 std::complex<double> cf = cd; in main()
27 assert(cf.real() == cd.real()); in main()
28 assert(cf.imag() == cd.imag()); in main()
32 constexpr std::complex<float> cd(2.5, 3.5); in main() local
33 constexpr std::complex<double> cf = cd; in main()
34 static_assert(cf.real() == cd.real(), ""); in main()
35 static_assert(cf.imag() == cd.imag(), ""); in main()
H A Dlong_double_float_explicit.pass.cpp25 const std::complex<float> cd(2.5, 3.5); in main() local
26 std::complex<long double> cf(cd); in main()
27 assert(cf.real() == cd.real()); in main()
28 assert(cf.imag() == cd.imag()); in main()
32 constexpr std::complex<float> cd(2.5, 3.5); in main() local
33 constexpr std::complex<long double> cf(cd); in main()
34 static_assert(cf.real() == cd.real(), ""); in main()
35 static_assert(cf.imag() == cd.imag(), ""); in main()
H A Dfloat_long_double_explicit.pass.cpp25 const std::complex<long double> cd(2.5, 3.5); in main() local
26 std::complex<float> cf(cd); in main()
27 assert(cf.real() == cd.real()); in main()
28 assert(cf.imag() == cd.imag()); in main()
32 constexpr std::complex<long double> cd(2.5, 3.5); in main() local
33 constexpr std::complex<float> cf(cd); in main()
34 static_assert(cf.real() == cd.real(), ""); in main()
35 static_assert(cf.imag() == cd.imag(), ""); in main()
H A Ddouble_long_double_explicit.pass.cpp25 const std::complex<long double> cd(2.5, 3.5); in main() local
26 std::complex<double> cf(cd); in main()
27 assert(cf.real() == cd.real()); in main()
28 assert(cf.imag() == cd.imag()); in main()
32 constexpr std::complex<long double> cd(2.5, 3.5); in main() local
33 constexpr std::complex<double> cf(cd); in main()
34 static_assert(cf.real() == cd.real(), ""); in main()
35 static_assert(cf.imag() == cd.imag(), ""); in main()
H A Ddouble_float_explicit.pass.cpp25 const std::complex<float> cd(2.5, 3.5); in main() local
26 std::complex<double> cf(cd); in main()
27 assert(cf.real() == cd.real()); in main()
28 assert(cf.imag() == cd.imag()); in main()
32 constexpr std::complex<float> cd(2.5, 3.5); in main() local
33 constexpr std::complex<double> cf(cd); in main()
34 static_assert(cf.real() == cd.real(), ""); in main()
35 static_assert(cf.imag() == cd.imag(), ""); in main()
H A Dlong_double_double_explicit.pass.cpp25 const std::complex<double> cd(2.5, 3.5); in main() local
26 std::complex<long double> cf(cd); in main()
27 assert(cf.real() == cd.real()); in main()
28 assert(cf.imag() == cd.imag()); in main()
32 constexpr std::complex<double> cd(2.5, 3.5); in main() local
33 constexpr std::complex<long double> cf(cd); in main()
34 static_assert(cf.real() == cd.real(), ""); in main()
35 static_assert(cf.imag() == cd.imag(), ""); in main()
H A Dfloat_double_implicit.compile.fail.cpp22 const std::complex<double> cd(2.5, 3.5); in main() local
23 std::complex<float> cf = cd; in main()
24 assert(cf.real() == cd.real()); in main()
25 assert(cf.imag() == cd.imag()); in main()
H A Dfloat_long_double_implicit.compile.fail.cpp22 const std::complex<long double> cd(2.5, 3.5); in main() local
23 std::complex<float> cf = cd; in main()
24 assert(cf.real() == cd.real()); in main()
25 assert(cf.imag() == cd.imag()); in main()
H A Ddouble_long_double_implicit.compile.fail.cpp22 const std::complex<long double> cd(2.5, 3.5); in main() local
23 std::complex<double> cf = cd; in main()
24 assert(cf.real() == cd.real()); in main()
25 assert(cf.imag() == cd.imag()); in main()
/llvm-project-15.0.7/compiler-rt/test/msan/
H A Diconv.cpp21 iconv_t cd = iconv_open("ASCII", "ASCII"); in main() local
22 assert(cd != (iconv_t)-1); in main()
46 res = iconv(cd, 0, 0, 0, 0); in main()
49 res = iconv(cd, 0, 0, &outbuf, &outbytesleft); in main()
52 res = iconv(cd, &inbuf, &inbytesleft, &outbuf, &outbytesleft); in main()
60 iconv_close(cd); in main()
/llvm-project-15.0.7/llvm/test/CodeGen/PowerPC/
H A Dfma-precision.ll112 %cd = fmul contract reassoc double %c, %d
115 store double %cd, double* %p3 ; extra use of %cd
116 %r = fsub contract reassoc nsz double %ab, %cd
132 %cd = fmul contract reassoc double %c, %d
134 store double %cd, double* %p2 ; extra use of %cd
135 store double %cd, double* %p3 ; another extra use of %cd
136 %r = fsub contract reassoc double %ab, %cd
154 %cd = fmul contract reassoc double %c, %d
159 …act reassoc nsz double %fg, %cd ; The uses of %cd reduce to 1 after %r is folded. 2 uses of %fg, f…
160 …%r = fsub contract reassoc nsz double %ab, %cd ; Fold %r before %q. 3 uses of %ab, 2 uses of %cd, …
/llvm-project-15.0.7/clang/test/CodeGen/
H A Dvolatile-complex.c11 volatile _Complex double cd; variable
32 (void)(cd); in test_cd()
37 (void)(cd=cd); in test_cd()
/llvm-project-15.0.7/llvm/test/TableGen/
H A Dtemplate-args.td34 class Class2<bits<8> cd> {
35 int Code = cd;
55 // ERROR2: Value specified for template argument 'Class2:cd' (#0) is of type string
87 // ERROR4: Value specified for template argument 'Class2:cd' (#0) is of type string
118 multiclass MC2<bits<8> cd> {
120 bits<8> Code = cd;
123 int Code = cd;
126 list<int> CodeList = [cd];
140 // ERROR6: Value specified for template argument 'MC2::cd' (#0) is of type string
/llvm-project-15.0.7/lld/test/COFF/
H A Ddriver-opt.s5 # RUN: cd %t.dir; lld-link /driver foo.obj
13 # RUN: cd %t.dir; lld-link /driver:uponly foo.obj
20 # RUN: cd %t.dir; lld-link /driver:wdm foo.obj
27 # RUN: cd %t.dir; lld-link /driver:wdm,uponly foo.obj
31 # RUN: cd %t.dir; lld-link /driver:uponly,wdm foo.obj
39 # RUN: cd %t.dir; lld-link /driver foo.obj
43 # RUN: cd %t.dir; lld-link /driver foo.obj /fixed:no
49 # RUN: cd %t.dir; lld-link /driver foo.obj /fixed
/llvm-project-15.0.7/llvm/test/CodeGen/AMDGPU/
H A Dllvm.amdgcn.image.sample.cd.g16.ll11 …%v = call <4 x float> @llvm.amdgcn.image.sample.cd.1d.v4f32.f16.f32(i32 15, half %dsdh, half %dsdv…
37 …%v = call <4 x float> @llvm.amdgcn.image.sample.c.cd.1d.v4f32.f16.f32(i32 15, float %zcompare, hal…
63 …%v = call <4 x float> @llvm.amdgcn.image.sample.cd.cl.1d.v4f32.f16.f32(i32 15, half %dsdh, half %d…
110 declare <4 x float> @llvm.amdgcn.image.sample.cd.1d.v4f32.f16.f32(i32, half, half, float, <8 x i32>…
111 declare <4 x float> @llvm.amdgcn.image.sample.cd.2d.v4f32.f16.f32(i32, half, half, half, half, floa…
112 declare <4 x float> @llvm.amdgcn.image.sample.c.cd.1d.v4f32.f16.f32(i32, float, half, half, float, …
113 declare <4 x float> @llvm.amdgcn.image.sample.c.cd.2d.v4f32.f16.f32(i32, float, half, half, half, h…
114 declare <4 x float> @llvm.amdgcn.image.sample.cd.cl.1d.v4f32.f16.f32(i32, half, half, float, float,…
115 declare <4 x float> @llvm.amdgcn.image.sample.cd.cl.2d.v4f32.f16.f32(i32, half, half, half, half, f…
116 declare <4 x float> @llvm.amdgcn.image.sample.c.cd.cl.1d.v4f32.f16.f32(i32, float, half, half, floa…
[all …]
/llvm-project-15.0.7/llvm/utils/lit/tests/Inputs/shtest-not/
H A Dnot-calls-cd.txt1 # Internal cd always succeeds.
2 # RUN: not not cd foobar
3 # RUN: not --crash cd foobar
/llvm-project-15.0.7/flang/
H A D.drone.star12 "mkdir llvm-project/build && cd llvm-project/build",
15 "cd ../..",
16 "mkdir build && cd build",
38 "mkdir llvm-project/build && cd llvm-project/build",
41 "cd ../..",
42 "mkdir build && cd build",
/llvm-project-15.0.7/llvm/test/tools/llvm-ar/
H A Dflatten-thin-archive-directories.test9 # These tests must be run in the same directory as %t/archive.a. cd %t is
11 RUN: cd %t && llvm-ar rcST foo/archive.a foo/a.txt
12 RUN: cd %t && llvm-ar rcST archive.a foo/archive.a
13 RUN: cd %t && llvm-ar t archive.a | FileCheck %s --match-full-lines

12345678910>>...15