HomeSort by relevance Sort by last modified time
    Searched refs:cd (Results 26 - 50 of 1839) sorted by null

12 3 4 5 6 7 8 91011>>

  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/numerics/complex.number/complex.special/
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/clang/test/CodeGen/
volatile-complex.c 11 volatile _Complex double cd; variable
30 // CHECK: load volatile double* getelementptr inbounds ({ double, double }* @cd, i32 0, i32 0), align 8
31 // CHECK-NEXT: load volatile double* getelementptr inbounds ({ double, double }* @cd, i32 0, i32 1), align 8
32 (void)(cd);
33 // CHECK-NEXT: [[R:%.*]] = load volatile double* getelementptr inbounds ({ double, double }* @cd, i32 0, i32 0), align 8
34 // CHECK-NEXT: [[I:%.*]] = load volatile double* getelementptr inbounds ({ double, double }* @cd, i32 0, i32 1), align 8
35 // CHECK-NEXT: store volatile double [[R]], double* getelementptr inbounds ({ double, double }* @cd, i32 0, i32 0), align 8
36 // CHECK-NEXT: store volatile double [[I]], double* getelementptr inbounds ({ double, double }* @cd, i32 0, i32 1), align 8
37 (void)(cd=cd);
    [all...]
  /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 248 LinuxCameraDevice* cd; local
250 ANEW0(cd);
251 memset(cd, 0, sizeof(*cd));
252 cd->header.opaque = cd;
253 cd->handle = -1;
255 return cd;
287 _camera_device_reset(LinuxCameraDevice* cd)
293 if (cd->framebuffers != NULL)
801 LinuxCameraDevice* cd; local
831 LinuxCameraDevice* cd; local
926 LinuxCameraDevice* cd; local
975 LinuxCameraDevice* cd; local
1060 LinuxCameraDevice* cd; local
1079 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 357 MacCameraDevice* cd = (MacCameraDevice*)malloc(sizeof(MacCameraDevice));
358 if (cd != NULL) {
359 memset(cd, 0, sizeof(MacCameraDevice));
360 cd->header.opaque = cd;
364 return cd;
372 _camera_device_free(MacCameraDevice* cd)
374 if (cd != NULL) {
375 if (cd->device != NULL) {
376 [cd->device free]
    [all...]
  /external/openssl/crypto/cms/
cms_cd.c 75 CMS_CompressedData *cd; local
89 cd = M_ASN1_new_of(CMS_CompressedData);
91 if (!cd)
95 cms->d.compressedData = cd;
97 cd->version = 0;
99 X509_ALGOR_set0(cd->compressionAlgorithm,
103 cd->encapContentInfo->eContentType = OBJ_nid2obj(NID_pkcs7_data);
117 CMS_CompressedData *cd; local
125 cd = cms->d.compressedData;
126 X509_ALGOR_get0(&compoid, NULL, NULL, cd->compressionAlgorithm)
    [all...]
  /external/compiler-rt/test/msan/
iconv.cc 12 iconv_t cd = iconv_open("ASCII", "ASCII"); local
13 assert(cd != (iconv_t)-1);
32 res = iconv(cd, 0, 0, 0, 0);
35 res = iconv(cd, 0, 0, &outbuf, &outbytesleft);
38 res = iconv(cd, &inbuf, &inbytesleft, &outbuf, &outbytesleft);
46 iconv_close(cd);
  /external/libcxx/test/depr/depr.c.headers/
tgmath_h.pass.cpp 20 std::complex<double> cd; local
  /external/libcxx/test/numerics/c.math/
ctgmath.pass.cpp 20 std::complex<double> cd; local
  /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 *'}}
conversion-delete-expr.cpp 89 void foo6(const Derived cd, Derived d) {
91 delete cd;
  /external/pcre/dist/
pcre_compile.c 49 #define NLBLOCK cd /* Block containing newline information */
8800 compile_data *cd = &compile_block; local
    [all...]
  /hardware/invensense/60xx/libsensors_iio/software/build/android/
shared.mk 45 cd $$DIR && $(MAKE) -f shared.mk $@ ); \
48 cd $$DIR && $(MAKE) -f shared.mk $@ ); \
53 cd $$DIR && $(MAKE) -f shared.mk $@ ); \
56 cd $$DIR && $(MAKE) -f shared.mk $@ ); \
61 cd $$DIR && $(MAKE) -f shared.mk $@ ); \
64 cd $$DIR && $(MAKE) -f shared.mk $@ ); \
69 cd $$DIR && $(MAKE) -f shared.mk $@ ); \
72 cd $$DIR && $(MAKE) -f shared.mk $@ ); \
  /hardware/invensense/6515/libsensors_iio/software/build/android/
shared.mk 47 cd $$DIR && $(MAKE) -f shared.mk $@ ); \
50 cd $$DIR && $(MAKE) -f shared.mk $@ ); \
55 cd $$DIR && $(MAKE) -f shared.mk $@ ); \
58 cd $$DIR && $(MAKE) -f shared.mk $@ ); \
63 cd $$DIR && $(MAKE) -f shared.mk $@ ); \
66 cd $$DIR && $(MAKE) -f shared.mk $@ ); \
71 cd $$DIR && $(MAKE) -f shared.mk $@ ); \
74 cd $$DIR && $(MAKE) -f shared.mk $@ ); \
  /hardware/invensense/65xx/libsensors_iio/software/build/android/
shared.mk 47 cd $$DIR && $(MAKE) -f shared.mk $@ ); \
50 cd $$DIR && $(MAKE) -f shared.mk $@ ); \
55 cd $$DIR && $(MAKE) -f shared.mk $@ ); \
58 cd $$DIR && $(MAKE) -f shared.mk $@ ); \
63 cd $$DIR && $(MAKE) -f shared.mk $@ ); \
66 cd $$DIR && $(MAKE) -f shared.mk $@ ); \
71 cd $$DIR && $(MAKE) -f shared.mk $@ ); \
74 cd $$DIR && $(MAKE) -f shared.mk $@ ); \
  /external/e2fsprogs/e2fsck/
pass2.c 90 struct check_dir_struct cd; local
100 clear_problem_context(&cd.pctx);
107 fix_problem(ctx, PR_2_PASS_HEADER, &cd.pctx);
112 cd.pctx.errcode = 0;
116 cd.pctx.errcode = ext2fs_create_icount2(fs,
122 if (cd.pctx.errcode) {
123 fix_problem(ctx, PR_2_ALLOCATE_ICOUNT, &cd.pctx);
137 cd.buf = buf;
138 cd.ctx = ctx;
139 cd.count = 1
726 struct check_dir_struct *cd; local
    [all...]
  /external/qemu/distrib/sdl-1.2.15/src/stdlib/
SDL_iconv.c 42 size_t SDL_iconv(SDL_iconv_t cd,
48 retCode = iconv(cd, (char **)inbuf, inbytesleft, outbuf, outbytesleft);
50 retCode = iconv(cd, inbuf, inbytesleft, outbuf, outbytesleft);
197 SDL_iconv_t cd = (SDL_iconv_t)SDL_malloc(sizeof(*cd)); local
198 if ( cd ) {
199 cd->src_fmt = src_fmt;
200 cd->dst_fmt = dst_fmt;
201 return cd;
207 size_t SDL_iconv(SDL_iconv_t cd,
817 SDL_iconv_t cd; local
    [all...]
  /development/apps/Development/src/com/android/development/
Details.java 86 ColumnData cd = mData.get(i); local
87 TextView label = makeView(cd.key, true, 12);
88 TextView contents = makeView(cd.value, false, 12);
124 ColumnData cd = new ColumnData(columnNames[i], str);
125 mData.add(cd);
145 ColumnData cd = mData.get(i);
146 System.out.println(" " + cd.key + ": " + cd.value);
  /frameworks/wilhelm/src/
devices.c 215 const CodecDescriptor *cd = codecDescriptors; local
218 for (index = 0 ; NULL != cd->mDescriptor; ++cd) {
219 if (cd->mCodecID == codecId) {
227 for ( ; NULL != cd->mDescriptor; ++cd) {
228 if (cd->mCodecID == codecId) {
230 *pDescriptor = *cd->mDescriptor;
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/x86_64-linux/include/c++/4.8/ext/pb_ds/detail/ov_tree_map_/
erase_fn_imps.hpp 54 cond_dtor<size_type> cd(m_a_values, m_end_it, m_size);
93 cond_dtor<size_type> cd(a_new_values, target_it, new_size);
108 cd.set_no_action();
145 cond_dtor<size_type> cd(a_values, target_it, m_size - 1);
167 cd.set_no_action();

Completed in 1696 milliseconds

12 3 4 5 6 7 8 91011>>