/third_party/ltp/testcases/open_posix_testsuite/stress/threads/pthread_cond_timedwait/ |
D | stress2.c | 197 struct celldata *cd = (struct celldata *)arg; in cleanup() local 200 ret = pthread_mutex_unlock(&(cd->mtx)); in cleanup() 210 struct celldata *cd = (struct celldata *)arg; in worker() local 214 ret = pthread_mutex_lock(&(cd->mtx)); in worker() 220 cd->count += 1; in worker() 223 ret = clock_gettime(cd->cid, &ts); in worker() 234 ret = pthread_cond_timedwait(&(cd->cnd), &(cd->mtx), &ts); in worker() 246 } while (cd->boolean == 0); in worker() 249 ret = pthread_cond_broadcast(&(cd->cnd)); in worker() 258 ret = pthread_mutex_unlock(&(cd->mtx)); in worker() [all …]
|
D | stress1.c | 208 struct childdata cd[NTOT]; member 221 struct childdata *cd = (struct childdata *)arg; in threaded_B() local 223 ret = pthread_mutex_lock(&(cd->mtx)); in threaded_B() 228 while (*(cd->pBool) == 0) { in threaded_B() 229 ret = pthread_cond_broadcast(&(cd->cnd)); in threaded_B() 234 ret = clock_gettime(cd->cid, &ts); in threaded_B() 241 ret = pthread_cond_timedwait(&(cd->cnd), &(cd->mtx), &ts); in threaded_B() 252 ret = pthread_cond_broadcast(&(cd->cnd)); in threaded_B() 257 ret = pthread_mutex_unlock(&(cd->mtx)); in threaded_B() 270 struct childdata *cd = (struct childdata *)arg; in threaded_A() local [all …]
|
/third_party/ltp/testcases/open_posix_testsuite/stress/threads/pthread_cond_wait/ |
D | stress.c | 206 struct celldata *cd = (struct celldata *)arg; in cleanup() local 209 ret = pthread_mutex_unlock(&(cd->mtx)); in cleanup() 219 struct celldata *cd = (struct celldata *)arg; in worker() local 223 ret = pthread_mutex_lock(&(cd->mtx)); in worker() 229 cd->count += 1; in worker() 232 ret = clock_gettime(cd->cid, &ts); in worker() 243 ret = pthread_cond_timedwait(&(cd->cnd), &(cd->mtx), &ts); in worker() 255 } while (cd->boolean == 0); in worker() 258 ret = pthread_cond_broadcast(&(cd->cnd)); in worker() 267 ret = pthread_mutex_unlock(&(cd->mtx)); in worker() [all …]
|
D | stress2.c | 206 struct celldata *cd = (struct celldata *)arg; in cleanup() local 209 ret = pthread_mutex_unlock(&(cd->mtx)); in cleanup() 219 struct celldata *cd = (struct celldata *)arg; in worker() local 223 ret = pthread_mutex_lock(&(cd->mtx)); in worker() 229 cd->count += 1; in worker() 232 ret = clock_gettime(cd->cid, &ts); in worker() 243 ret = pthread_cond_timedwait(&(cd->cnd), &(cd->mtx), &ts); in worker() 255 } while (cd->boolean == 0); in worker() 258 ret = pthread_cond_broadcast(&(cd->cnd)); in worker() 267 ret = pthread_mutex_unlock(&(cd->mtx)); in worker() [all …]
|
D | stress1.c | 217 struct childdata cd[NTOT]; member 229 struct childdata *cd = (struct childdata *)arg; in threaded_B() local 231 ret = pthread_mutex_lock(&(cd->mtx)); in threaded_B() 236 while (*(cd->pBool) == 0) { in threaded_B() 237 ret = pthread_cond_broadcast(&(cd->cnd)); in threaded_B() 244 ret = pthread_cond_wait(&(cd->cnd), &(cd->mtx)); in threaded_B() 251 ret = pthread_cond_broadcast(&(cd->cnd)); in threaded_B() 256 ret = pthread_mutex_unlock(&(cd->mtx)); in threaded_B() 269 struct childdata *cd = (struct childdata *)arg; in threaded_A() local 274 ret = pthread_mutex_lock(&(cd->mtx)); in threaded_A() [all …]
|
/third_party/vk-gl-cts/ |
D | history.log | 14 1023 cd test/ 16 1025 cd plugins/ 18 1027 cd .. 20 1029 cd .. 22 1031 cd blueman/ 24 1033 cd bluez/ 28 1037 cd .. 38 1047 cd .. 40 1049 cd apps/ 63 1072 cd bluez-5.50/test [all …]
|
/third_party/libxml2/os400/iconv/ |
D | iconv.c | 101 iconv_t * cd; in IconvOpen() local 110 cd = (iconv_t *) malloc(sizeof *cd); in IconvOpen() 112 if (!cd) in IconvOpen() 115 *cd = iconv_open(toibmccsid, fromibmccsid); in IconvOpen() 117 if (cd->return_value) { in IconvOpen() 118 free((char *) cd); in IconvOpen() 122 return (Iconv_t) cd; in IconvOpen() 127 Iconv(Iconv_t cd, char * * inbuf, size_t * inbytesleft, in Iconv() argument 131 if (!cd || cd == (Iconv_t) -1) { in Iconv() 136 return iconv(*(iconv_t *) cd, inbuf, inbytesleft, outbuf, outbytesleft); in Iconv() [all …]
|
/third_party/icu/tools/unicodetools/com/ibm/rbm/ |
D | install.bat | 13 cd zip 16 cd docs 18 cd Images 20 cd .. 23 cd .. 25 cd .. 39 cd docs 41 cd Images 44 cd Screenshots 47 cd ..\..\Tutorial [all …]
|
/third_party/libfuse/lib/ |
D | cuse_lowlevel.c | 118 struct cuse_data *cd; in cuse_prep_data() local 130 cd = calloc(1, sizeof(*cd) + dev_info_len); in cuse_prep_data() 131 if (!cd) { in cuse_prep_data() 136 memcpy(&cd->clop, clop, sizeof(cd->clop)); in cuse_prep_data() 137 cd->max_read = 131072; in cuse_prep_data() 138 cd->dev_major = ci->dev_major; in cuse_prep_data() 139 cd->dev_minor = ci->dev_minor; in cuse_prep_data() 140 cd->dev_info_len = dev_info_len; in cuse_prep_data() 141 cd->flags = ci->flags; in cuse_prep_data() 142 cuse_pack_info(ci->dev_info_argc, ci->dev_info_argv, cd->dev_info); in cuse_prep_data() [all …]
|
/third_party/flutter/skia/third_party/externals/sdl/src/stdlib/ |
D | SDL_iconv.c | 57 SDL_iconv_close(SDL_iconv_t cd) in SDL_iconv_close() argument 59 return iconv_close((iconv_t) ((size_t) cd)); in SDL_iconv_close() 63 SDL_iconv(SDL_iconv_t cd, in SDL_iconv() argument 69 retCode = iconv((iconv_t) ((size_t) cd), (char **) inbuf, inbytesleft, outbuf, outbytesleft); in SDL_iconv() 71 retCode = iconv((iconv_t) ((size_t) cd), inbuf, inbytesleft, outbuf, outbytesleft); in SDL_iconv() 236 SDL_iconv_t cd = (SDL_iconv_t) SDL_malloc(sizeof(*cd)); in SDL_iconv_open() local 237 if (cd) { in SDL_iconv_open() 238 cd->src_fmt = src_fmt; in SDL_iconv_open() 239 cd->dst_fmt = dst_fmt; in SDL_iconv_open() 240 return cd; in SDL_iconv_open() [all …]
|
/third_party/ffmpeg/libavfilter/ |
D | af_acrossover.c | 49 double cd[5]; member 216 b->cd[B0] = b0 / a0; in set_lp() 217 b->cd[B1] = b1 / a0; in set_lp() 218 b->cd[B2] = b2 / a0; in set_lp() 219 b->cd[A1] = -a1 / a0; in set_lp() 220 b->cd[A2] = -a2 / a0; in set_lp() 222 b->cf[B0] = b->cd[B0]; in set_lp() 223 b->cf[B1] = b->cd[B1]; in set_lp() 224 b->cf[B2] = b->cd[B2]; in set_lp() 225 b->cf[A1] = b->cd[A1]; in set_lp() [all …]
|
/third_party/typescript/tests/baselines/reference/ |
D | stringIncludes.types | 5 includes = "abcde".includes("cd"); 6 >includes = "abcde".includes("cd") : boolean 8 >"abcde".includes("cd") : boolean 12 >"cd" : "cd" 14 includes = "abcde".includes("cd", 2); 15 >includes = "abcde".includes("cd", 2) : boolean 17 >"abcde".includes("cd", 2) : boolean 21 >"cd" : "cd"
|
D | binaryArithmeticControlFlowGraphNotTooLarge.js | 5 var a, b, c, d, ab, bc, cd, da, blocks = this.blocks; 65 cd = c & d; 66 b += (cd | (c & a) | da) + blocks[12] + 1518500249; 69 a += (bc | (b & d) | cd) + blocks[1] + 1518500249; 77 cd = c & d; 78 b += (cd | (c & a) | da) + blocks[13] + 1518500249; 81 a += (bc | (b & d) | cd) + blocks[2] + 1518500249; 89 cd = c & d; 90 b += (cd | (c & a) | da) + blocks[14] + 1518500249; 93 a += (bc | (b & d) | cd) + blocks[3] + 1518500249; [all …]
|
/third_party/FreeBSD/sys/dev/usb/ |
D | usb_parse.c | 44 usb_desc_foreach(struct usb_config_descriptor *cd, in usb_desc_foreach() argument 53 if (cd == NULL) in usb_desc_foreach() 57 start = (uint8_t *)cd; in usb_desc_foreach() 58 end = start + UGETW(cd->wTotalLength); in usb_desc_foreach() 96 usb_idesc_foreach(struct usb_config_descriptor *cd, in usb_idesc_foreach() argument 109 usb_desc_foreach(cd, (struct usb_descriptor *)id); in usb_idesc_foreach() 169 usb_edesc_foreach(struct usb_config_descriptor *cd, in usb_edesc_foreach() argument 176 while ((desc = usb_desc_foreach(cd, desc))) { in usb_edesc_foreach() 204 usb_ed_comp_foreach(struct usb_config_descriptor *cd, in usb_ed_comp_foreach() argument 211 while ((desc = usb_desc_foreach(cd, desc))) { in usb_ed_comp_foreach() [all …]
|
/third_party/openssl/crypto/cms/ |
D | cms_cd.c | 29 CMS_CompressedData *cd; in ossl_cms_CompressedData_create() local 43 cd = M_ASN1_new_of(CMS_CompressedData); in ossl_cms_CompressedData_create() 45 if (cd == NULL) in ossl_cms_CompressedData_create() 49 cms->d.compressedData = cd; in ossl_cms_CompressedData_create() 51 cd->version = 0; in ossl_cms_CompressedData_create() 53 X509_ALGOR_set0(cd->compressionAlgorithm, in ossl_cms_CompressedData_create() 56 cd->encapContentInfo->eContentType = OBJ_nid2obj(NID_pkcs7_data); in ossl_cms_CompressedData_create() 67 CMS_CompressedData *cd; in ossl_cms_CompressedData_init_bio() local 74 cd = cms->d.compressedData; in ossl_cms_CompressedData_init_bio() 75 X509_ALGOR_get0(&compoid, NULL, NULL, cd->compressionAlgorithm); in ossl_cms_CompressedData_init_bio()
|
/third_party/protobuf/kokoro/linux/dockerfile/test/php_32bit/ |
D | Dockerfile | 42 RUN cd /var/local \ 44 && cd /var/local/bison-2.6.4 \ 57 RUN cd php-src \ 60 RUN cd php-src \ 69 RUN cd php-src \ 85 RUN cd php-src \ 88 RUN cd php-src \ 97 RUN cd php-src \ 113 RUN cd php-src \ 116 RUN cd php-src \ [all …]
|
/third_party/gstreamer/gstplugins_good/gst/spectrum/ |
D | gstspectrum.c | 209 GstSpectrumChannel *cd; in gst_spectrum_alloc_channel_data() local 223 cd = &spectrum->channel_data[i]; in gst_spectrum_alloc_channel_data() 224 cd->fft_ctx = gst_fft_f32_new (nfft, FALSE); in gst_spectrum_alloc_channel_data() 225 cd->input = g_new0 (gfloat, nfft); in gst_spectrum_alloc_channel_data() 226 cd->input_tmp = g_new0 (gfloat, nfft); in gst_spectrum_alloc_channel_data() 227 cd->freqdata = g_new0 (GstFFTF32Complex, bands); in gst_spectrum_alloc_channel_data() 228 cd->spect_magnitude = g_new0 (gfloat, bands); in gst_spectrum_alloc_channel_data() 229 cd->spect_phase = g_new0 (gfloat, bands); in gst_spectrum_alloc_channel_data() 238 GstSpectrumChannel *cd; in gst_spectrum_free_channel_data() local 244 cd = &spectrum->channel_data[i]; in gst_spectrum_free_channel_data() [all …]
|
/third_party/protobuf/kokoro/linux/dockerfile/test/php/ |
D | Dockerfile | 44 RUN cd /var/local \ 46 && cd /var/local/bison-2.6.4 \ 59 RUN cd php-src \ 62 RUN cd php-src \ 72 RUN cd php-src \ 89 RUN cd php-src \ 92 RUN cd php-src \ 102 RUN cd php-src \ 119 RUN cd php-src \ 122 RUN cd php-src \ [all …]
|
/third_party/typescript/tests/cases/compiler/ |
D | binaryArithmeticControlFlowGraphNotTooLarge.ts | 6 var a, b, c, d, ab, bc, cd, da, blocks = this.blocks; 66 cd = c & d; 67 b += (cd | (c & a) | da) + blocks[12] + 1518500249; 70 a += (bc | (b & d) | cd) + blocks[1] + 1518500249; 78 cd = c & d; 79 b += (cd | (c & a) | da) + blocks[13] + 1518500249; 82 a += (bc | (b & d) | cd) + blocks[2] + 1518500249; 90 cd = c & d; 91 b += (cd | (c & a) | da) + blocks[14] + 1518500249; 94 a += (bc | (b & d) | cd) + blocks[3] + 1518500249; [all …]
|
/third_party/musl/libc-test/src/functional/ |
D | iconv_open.c | 8 iconv_t cd; in main() local 17 cd = iconv_open(bad, bad); in main() 18 if (cd != (iconv_t)-1) in main() 24 cd = iconv_open("UTF-8", "UTF-8"); in main() 25 if (cd == (iconv_t)-1) in main() 30 r = iconv(cd, &inbuf, &inlen, &outbuf, &outlen); in main() 38 r = iconv(cd, &inbuf, &inlen, &outbuf, &outlen); in main() 44 r = iconv_close(cd); in main()
|
/third_party/mbedtls/tests/docker/bionic/ |
D | Dockerfile | 66 RUN cd /tmp \ 68 && cd openssl-1.0.1j \ 76 RUN cd /tmp \ 78 && cd openssl-1.0.2g \ 87 RUN cd /tmp \ 89 && cd openssl-1.1.1a \ 97 RUN cd /tmp \ 99 && cd nettle-2.7.1 \ 107 RUN cd /tmp \ 109 && cd gnutls-3.3.8 \ [all …]
|
/third_party/protobuf/kokoro/linux/32-bit/ |
D | Dockerfile | 63 RUN cd php-5.5.38 && ./configure --enable-maintainer-zts --prefix=/usr/local/php-5.5-zts && \ 64 make && make install && make clean && cd .. 65 RUN cd php-5.5.38 && make clean && ./configure --enable-bcmath --prefix=/usr/local/php-5.5 && \ 66 make && make install && make clean && cd .. 71 RUN cd php-5.6.30 && ./configure --enable-maintainer-zts --prefix=/usr/local/php-5.6-zts && \ 72 make && make install && cd .. 73 RUN cd php-5.6.30 && make clean && ./configure --enable-bcmath --prefix=/usr/local/php-5.6 && \ 74 make && make install && cd .. 79 RUN cd php-7.0.18 && ./configure --enable-maintainer-zts --prefix=/usr/local/php-7.0-zts && \ 80 make && make install && cd .. [all …]
|
/third_party/libxml2/os400/ |
D | transcode.c | 51 iconv_t cd; in xmlTranscodeResult() local 87 cd = iconv_open(encoding, "UTF-8"); in xmlTranscodeResult() 89 if (cd == (iconv_t) -1) in xmlTranscodeResult() 94 srcc = iconv(cd, &srcp, &srcc, &dstp, &dstc); in xmlTranscodeResult() 95 iconv_close(cd); in xmlTranscodeResult() 139 iconv_t cd; in inTranscode() local 167 cd = iconv_open("UTF-8", encoding); in inTranscode() 169 if (cd == (iconv_t) -1) { in inTranscode() 176 srcc = iconv(cd, &srcp, &srcc, &dstp, &dstc); in inTranscode() 177 iconv_close(cd); in inTranscode()
|
D | libxmlmain.c | 38 iconv_t cd; in main() local 54 cd = iconv_open(tocode, fromcode); in main() 63 j = iconv(cd, in main() 68 iconv(cd, NULL, &inbytesleft, &outbuf, &outbytesleft); in main() 82 iconv(cd, &inbuf, &inbytesleft, &outbuf, &outbytesleft); in main() 83 iconv(cd, NULL, &inbytesleft, &outbuf, &outbytesleft); in main() 86 iconv_close(cd); in main()
|
/third_party/nghttp2/docker/ |
D | Dockerfile | 11 cd openssl && \ 15 cd .. && \ 19 cd nghttp3 && \ 24 cd .. && \ 28 cd ngtcp2 && \ 36 cd .. && \ 40 cd libbpf && \ 42 cd .. && \ 46 cd nghttp2 && \ 63 cd .. && \
|