HomeSort by relevance Sort by last modified time
    Searched refs:cd (Results 1 - 25 of 777) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/clang/test/FixIt/
fixit-recompile.c 4 _Complex cd; variable
6 // CHECK: _Complex double cd;
fixit-suffix.c 5 _Complex cd; variable
  /external/clang/test/CodeGen/
2007-04-24-bit-not-expr.c 5 void f(void *cd) {
6 bar(((void *)((unsigned long)(cd) ^ -1)));
volatile-complex.c 13 volatile _Complex double cd; variable
32 // CHECK: load volatile double* getelementptr inbounds ({ double, double }* @cd, i32 0, i32 0), align 8
33 // CHECK-NEXT: load volatile double* getelementptr inbounds ({ double, double }* @cd, i32 0, i32 1), align 8
34 (void)(cd);
35 // CHECK-NEXT: [[R:%.*]] = load volatile double* getelementptr inbounds ({ double, double }* @cd, i32 0, i32 0), align 8
36 // CHECK-NEXT: [[I:%.*]] = load volatile double* getelementptr inbounds ({ double, double }* @cd, i32 0, i32 1), align 8
37 // CHECK-NEXT: store volatile double [[R]], double* getelementptr inbounds ({ double, double }* @cd, i32 0, i32 0), align 8
38 // CHECK-NEXT: store volatile double [[I]], double* getelementptr inbounds ({ double, double }* @cd, i32 0, i32 1), align 8
39 (void)(cd=cd);
    [all...]
arm-aapcs-vfp.c 39 void test_complex(__complex__ double cd) {
40 complex_callee(cd);
46 void test_complex_long(__complex__ long double cd) {
47 complex_callee(cd);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/numerics/complex.number/complex.special/
double_long_double_implicit.fail.cpp 23 const std::complex<long double> cd(2.5, 3.5);
24 std::complex<double> cf = cd;
25 assert(cf.real() == cd.real());
26 assert(cf.imag() == cd.imag());
float_double_implicit.fail.cpp 23 const std::complex<double> cd(2.5, 3.5);
24 std::complex<float> cf = cd;
25 assert(cf.real() == cd.real());
26 assert(cf.imag() == cd.imag());
float_long_double_implicit.fail.cpp 23 const std::complex<long double> cd(2.5, 3.5);
24 std::complex<float> cf = cd;
25 assert(cf.real() == cd.real());
26 assert(cf.imag() == cd.imag());
double_float_explicit.pass.cpp 24 const std::complex<float> cd(2.5, 3.5);
25 std::complex<double> cf(cd);
26 assert(cf.real() == cd.real());
27 assert(cf.imag() == cd.imag());
31 constexpr std::complex<float> cd(2.5, 3.5);
32 constexpr std::complex<double> cf(cd);
33 static_assert(cf.real() == cd.real(), "");
34 static_assert(cf.imag() == cd.imag(), "");
double_float_implicit.pass.cpp 24 const std::complex<float> cd(2.5, 3.5);
25 std::complex<double> cf = cd;
26 assert(cf.real() == cd.real());
27 assert(cf.imag() == cd.imag());
31 constexpr std::complex<float> cd(2.5, 3.5);
32 constexpr std::complex<double> cf = cd;
33 static_assert(cf.real() == cd.real(), "");
34 static_assert(cf.imag() == cd.imag(), "");
double_long_double_explicit.pass.cpp 24 const std::complex<long double> cd(2.5, 3.5);
25 std::complex<double> cf(cd);
26 assert(cf.real() == cd.real());
27 assert(cf.imag() == cd.imag());
31 constexpr std::complex<long double> cd(2.5, 3.5);
32 constexpr std::complex<double> cf(cd);
33 static_assert(cf.real() == cd.real(), "");
34 static_assert(cf.imag() == cd.imag(), "");
float_double_explicit.pass.cpp 24 const std::complex<double> cd(2.5, 3.5);
25 std::complex<float> cf(cd);
26 assert(cf.real() == cd.real());
27 assert(cf.imag() == cd.imag());
31 constexpr std::complex<double> cd(2.5, 3.5);
32 constexpr std::complex<float> cf(cd);
33 static_assert(cf.real() == cd.real(), "");
34 static_assert(cf.imag() == cd.imag(), "");
float_long_double_explicit.pass.cpp 24 const std::complex<long double> cd(2.5, 3.5);
25 std::complex<float> cf(cd);
26 assert(cf.real() == cd.real());
27 assert(cf.imag() == cd.imag());
31 constexpr std::complex<long double> cd(2.5, 3.5);
32 constexpr std::complex<float> cf(cd);
33 static_assert(cf.real() == cd.real(), "");
34 static_assert(cf.imag() == cd.imag(), "");
long_double_double_explicit.pass.cpp 24 const std::complex<double> cd(2.5, 3.5);
25 std::complex<long double> cf(cd);
26 assert(cf.real() == cd.real());
27 assert(cf.imag() == cd.imag());
31 constexpr std::complex<double> cd(2.5, 3.5);
32 constexpr std::complex<long double> cf(cd);
33 static_assert(cf.real() == cd.real(), "");
34 static_assert(cf.imag() == cd.imag(), "");
long_double_double_implicit.pass.cpp 24 const std::complex<double> cd(2.5, 3.5);
25 std::complex<long double> cf = cd;
26 assert(cf.real() == cd.real());
27 assert(cf.imag() == cd.imag());
31 constexpr std::complex<double> cd(2.5, 3.5);
32 constexpr std::complex<long double> cf = cd;
33 static_assert(cf.real() == cd.real(), "");
34 static_assert(cf.imag() == cd.imag(), "");
long_double_float_explicit.pass.cpp 24 const std::complex<float> cd(2.5, 3.5);
25 std::complex<long double> cf(cd);
26 assert(cf.real() == cd.real());
27 assert(cf.imag() == cd.imag());
31 constexpr std::complex<float> cd(2.5, 3.5);
32 constexpr std::complex<long double> cf(cd);
33 static_assert(cf.real() == cd.real(), "");
34 static_assert(cf.imag() == cd.imag(), "");
long_double_float_implicit.pass.cpp 24 const std::complex<float> cd(2.5, 3.5);
25 std::complex<long double> cf = cd;
26 assert(cf.real() == cd.real());
27 assert(cf.imag() == cd.imag());
31 constexpr std::complex<float> cd(2.5, 3.5);
32 constexpr std::complex<long double> cf = cd;
33 static_assert(cf.real() == cd.real(), "");
34 static_assert(cf.imag() == cd.imag(), "");
  /external/qemu/android/camera/
camera-capture.h 43 * cd - Camera descriptor representing a camera device opened in
53 extern int camera_device_start_capturing(CameraDevice* cd,
60 * cd - Camera descriptor representing a camera device opened in
65 extern int camera_device_stop_capturing(CameraDevice* cd);
69 * cd - Camera descriptor representing a camera device opened in
85 extern int camera_device_read_frame(CameraDevice* cd,
95 * cd - Camera descriptor representing a camera device opened in
98 extern void camera_device_close(CameraDevice* cd);
camera-capture-linux.c 251 LinuxCameraDevice* cd; local
253 ANEW0(cd);
254 memset(cd, 0, sizeof(*cd));
255 cd->header.opaque = cd;
256 cd->handle = -1;
258 return cd;
290 _camera_device_reset(LinuxCameraDevice* cd)
296 if (cd->framebuffers != NULL)
804 LinuxCameraDevice* cd; local
834 LinuxCameraDevice* cd; local
929 LinuxCameraDevice* cd; local
978 LinuxCameraDevice* cd; local
1063 LinuxCameraDevice* cd; local
1082 CameraDevice* cd; local
    [all...]
camera-capture-windows.c 106 WndCameraDevice* cd = (WndCameraDevice*)malloc(sizeof(WndCameraDevice)); local
107 if (cd != NULL) {
108 memset(cd, 0, sizeof(WndCameraDevice));
109 cd->header.opaque = cd;
113 return cd;
121 _camera_device_free(WndCameraDevice* cd)
123 if (cd != NULL) {
124 if (cd->cap_window != NULL) {
126 capDriverDisconnect(cd->cap_window)
708 CameraDevice* cd; local
    [all...]
camera-capture-mac.m 345 MacCameraDevice* cd = (MacCameraDevice*)malloc(sizeof(MacCameraDevice));
346 if (cd != NULL) {
347 memset(cd, 0, sizeof(MacCameraDevice));
348 cd->header.opaque = cd;
352 return cd;
360 _camera_device_free(MacCameraDevice* cd)
362 if (cd != NULL) {
363 if (cd->device != NULL) {
364 [cd->device free]
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/depr/depr.c.headers/
tgmath_h.pass.cpp 20 std::complex<double> cd; local
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/numerics/c.math/
ctgmath.pass.cpp 20 std::complex<double> cd; local
  /external/nist-sip/java/gov/nist/javax/sip/parser/
ContentDispositionParser.java 73 ContentDisposition cd = new ContentDisposition(); local
74 cd.setHeaderName(SIPHeaderNames.CONTENT_DISPOSITION);
80 cd.setDispositionType(token.getTokenValue());
82 super.parse(cd);
87 return cd;
  /external/clang/test/SemaCXX/
direct-initializer.cpp 46 void foo(const Derived cd, Derived d) {
47 int *pi = cd; // expected-error {{no viable conversion from 'const Derived' to 'int *'}}

Completed in 319 milliseconds

1 2 3 4 5 6 7 8 91011>>