/external/ltp/testcases/kernel/syscalls/nftw/ |
D | nftw64.c | 45 FILE *temp; variable 264 fprintf(temp, in main() 266 fprintf(temp, "char *, const struct stat *, int, struct FTW *), int\n"); in main() 267 fprintf(temp, "depth, int flags) shall recursively descend the\n"); in main() 268 fprintf(temp, "directory hierarchy rooted in path until it has\n"); in main() 269 fprintf(temp, in main() 271 fprintf(temp, "each object in the directory tree, and return 0.\n\n"); in main() 280 fprintf(temp, in main() 282 fprintf(temp, "char *, const struct stat *, int, struct FTW *), int\n"); in main() 283 fprintf(temp, "depth, int flags) when flags contains FTW_PHYS shall\n"); in main() [all …]
|
D | nftw.c | 45 FILE *temp; variable 267 fprintf(temp, "A call to int nftw(const char *path, int (*fn)(const\n"); in main() 268 fprintf(temp, "char *, const struct stat *, int, struct FTW *), int\n"); in main() 269 fprintf(temp, "depth, int flags) shall recursively descend the\n"); in main() 270 fprintf(temp, "directory hierarchy rooted in path until it has\n"); in main() 271 fprintf(temp, in main() 273 fprintf(temp, "each object in the directory tree, and return 0.\n\n"); in main() 282 fprintf(temp, "A call to int nftw(const char *path, int (*fn)(const\n"); in main() 283 fprintf(temp, "char *, const struct stat *, int, struct FTW *), int\n"); in main() 284 fprintf(temp, "depth, int flags) when flags contains FTW_PHYS shall\n"); in main() [all …]
|
D | test64.c | 36 extern FILE *temp; 49 temp = stderr; in test1A() 51 fprintf(temp, "TEST: nftw64() succeeds\n"); in test1A() 66 fprintf(temp, "TEST: Whole tree traversed\n"); in test1A() 70 fprintf(temp, "ERROR: Count of objects visited incorrect\n"); in test1A() 71 fprintf(temp, " Expected %d, Received %d\n", ngoods, in test1A() 90 fprintf(temp, "ERROR: Unexpected visit to %s\n", in test1A() 109 temp = stderr; in test2A() 111 fprintf(temp, in test2A() 129 fprintf(temp, in test2A() [all …]
|
D | test_func64.c | 35 extern FILE *temp; 46 temp = stderr; in test_func1() 64 fprintf(temp, "INFO: Call to fn() at %s\n", path_name); in test_func1() 68 fprintf(temp, "ERROR: Too many paths traversed\n"); in test_func1() 79 temp = stderr; in test_func3() 81 fprintf(temp, "INFO: Call to fn() at %s\n", path_name); in test_func3() 85 fprintf(temp, "ERROR: Too many paths traversed\n"); in test_func3() 91 fprintf(temp, in test_func3() 118 temp = stderr; in test_func5() 128 fprintf(temp, "ERROR: For file %s cwd is %s\n", path_name, in test_func5() [all …]
|
D | test.c | 37 extern FILE *temp; 51 temp = stderr; in test1A() 53 fprintf(temp, "TEST: nftw() succeeds\n"); in test1A() 68 fprintf(temp, "TEST: Whole tree traversed\n"); in test1A() 72 fprintf(temp, "ERROR: Count of objects visited incorrect\n"); in test1A() 73 fprintf(temp, " Expected %d, Received %d\n", ngoods, in test1A() 92 fprintf(temp, "ERROR: Unexpected visit to %s\n", in test1A() 111 temp = stderr; in test2A() 113 fprintf(temp, in test2A() 131 fprintf(temp, in test2A() [all …]
|
D | test_func.c | 35 extern FILE *temp; 47 temp = stderr; in test_func1() 65 fprintf(temp, "INFO: Call to fn() at %s\n", path_name); in test_func1() 69 fprintf(temp, "ERROR: Too many paths traversed\n"); in test_func1() 80 temp = stderr; in test_func3() 82 fprintf(temp, "INFO: Call to fn() at %s\n", path_name); in test_func3() 86 fprintf(temp, "ERROR: Too many paths traversed\n"); in test_func3() 92 fprintf(temp, in test_func3() 128 fprintf(temp, "ERROR: For file %s cwd is %s\n", path_name, in test_func5() 159 fprintf(temp, "ERROR: Should not have traversed %s\n", in test_func7() [all …]
|
/external/mesa3d/src/gallium/state_trackers/vega/ |
D | asm_fill.h | 36 struct ureg_dst *temp, 44 struct ureg_dst *temp, in solid_fill() argument 55 ureg_MOV(ureg, ureg_writemask(temp[0], TGSI_WRITEMASK_XY), in[0]); \ 57 ureg_writemask(temp[0], TGSI_WRITEMASK_Z), \ 59 ureg_DP3(ureg, temp[1], constant[4], ureg_src(temp[0])); \ 60 ureg_DP3(ureg, temp[2], constant[5], ureg_src(temp[0])); \ 61 ureg_DP3(ureg, temp[3], constant[6], ureg_src(temp[0])); \ 62 ureg_RCP(ureg, temp[3], ureg_src(temp[3])); \ 63 ureg_MUL(ureg, temp[1], ureg_src(temp[1]), ureg_src(temp[3])); \ 64 ureg_MUL(ureg, temp[2], ureg_src(temp[2]), ureg_src(temp[3])); \ [all …]
|
/external/ipsec-tools/src/racoon/missing/crypto/rijndael/ |
D | rijndael-alg-fst.c | 154 #define temp xtemp.x8 in rijndaelEncrypt() macro 158 *((word32*)temp[0]) = *((word32*)(a )) ^ *((word32*)rk[0][0]); in rijndaelEncrypt() 159 *((word32*)temp[1]) = *((word32*)(a+ 4)) ^ *((word32*)rk[0][1]); in rijndaelEncrypt() 160 *((word32*)temp[2]) = *((word32*)(a+ 8)) ^ *((word32*)rk[0][2]); in rijndaelEncrypt() 161 *((word32*)temp[3]) = *((word32*)(a+12)) ^ *((word32*)rk[0][3]); in rijndaelEncrypt() 162 *((word32*)(b )) = *((const word32*)T1[temp[0][0]]) in rijndaelEncrypt() 163 ^ *((const word32*)T2[temp[1][1]]) in rijndaelEncrypt() 164 ^ *((const word32*)T3[temp[2][2]]) in rijndaelEncrypt() 165 ^ *((const word32*)T4[temp[3][3]]); in rijndaelEncrypt() 166 *((word32*)(b + 4)) = *((const word32*)T1[temp[1][0]]) in rijndaelEncrypt() [all …]
|
/external/selinux/libsemanage/src/ |
D | semanageswig_ruby.i | 21 %typemap(in, numinputs=0) char **(char *temp=NULL) { 22 $1 = &temp; 30 %typemap(in, numinputs=0) char ***(char **temp=NULL) { 31 $1 = &temp; 36 %typemap(in, numinputs=0) semanage_module_info_t **(semanage_module_info_t *temp=NULL) { 37 $1 = &temp; 48 %typemap(in, numinputs=0) semanage_context_t **(semanage_context_t *temp=NULL) { 49 $1 = &temp; 60 %typemap(in, numinputs=0) semanage_bool_t ***(semanage_bool_t **temp=NULL) { 61 $1 = &temp; [all …]
|
D | semanageswig_python.i | 111 %typemap(in, numinputs=0) char **(char *temp=NULL) { 112 $1 = &temp; 120 %typemap(in, numinputs=0) char ***(char **temp=NULL) { 121 $1 = &temp; 148 %typemap(in, numinputs=0) semanage_module_info_t **(semanage_module_info_t *temp=NULL) { 149 $1 = &temp; 160 %typemap(in, numinputs=0) semanage_module_key_t **(semanage_module_key_t *temp=NULL) { 161 $1 = &temp; 172 %typemap(in, numinputs=0) semanage_context_t **(semanage_context_t *temp=NULL) { 173 $1 = &temp; [all …]
|
/external/libgsm/src/ |
D | lpc.c | 36 word temp, smax, scalauto; variable 49 temp = GSM_ABS( s[k] ); 50 if (temp > smax) smax = temp; 183 register word temp; variable 198 temp = gsm_norm( L_ACF[0] ); 200 assert(temp >= 0 && temp < 32); 203 for (i = 0; i <= 8; i++) ACF[i] = SASR( L_ACF[i] << temp, 16 ); 215 temp = P[1]; 216 temp = GSM_ABS(temp); 217 if (P[0] < temp) { [all …]
|
/external/libvpx/libvpx/third_party/libyuv/source/ |
D | row_any.cc | 30 SIMD_ALIGNED(uint8 temp[64 * 5]); \ 31 memset(temp, 0, 64 * 4); /* for msan */ \ 37 memcpy(temp, y_buf + n, r); \ 38 memcpy(temp + 64, u_buf + (n >> UVSHIFT), SS(r, UVSHIFT)); \ 39 memcpy(temp + 128, v_buf + (n >> UVSHIFT), SS(r, UVSHIFT)); \ 40 memcpy(temp + 192, a_buf + n, r); \ 41 ANY_SIMD(temp, temp + 64, temp + 128, temp + 192, temp + 256, \ 43 memcpy(dst_ptr + (n >> DUVSHIFT) * BPP, temp + 256, \ 62 SIMD_ALIGNED(uint8 temp[64 * 4]); \ 63 memset(temp, 0, 64 * 3); /* for YUY2 and msan */ \ [all …]
|
/external/eigen/blas/f2c/ |
D | ctbmv.c | 28 complex temp; in ctbmv_() local 248 temp.r = x[i__2].r, temp.i = x[i__2].i; in ctbmv_() 257 q__2.r = temp.r * a[i__5].r - temp.i * a[i__5].i, in ctbmv_() 258 q__2.i = temp.r * a[i__5].i + temp.i * a[ in ctbmv_() 284 temp.r = x[i__4].r, temp.i = x[i__4].i; in ctbmv_() 294 q__2.r = temp.r * a[i__5].r - temp.i * a[i__5].i, in ctbmv_() 295 q__2.i = temp.r * a[i__5].i + temp.i * a[ in ctbmv_() 326 temp.r = x[i__1].r, temp.i = x[i__1].i; in ctbmv_() 335 q__2.r = temp.r * a[i__2].r - temp.i * a[i__2].i, in ctbmv_() 336 q__2.i = temp.r * a[i__2].i + temp.i * a[ in ctbmv_() [all …]
|
D | ztbmv.c | 28 doublecomplex temp; in ztbmv_() local 248 temp.r = x[i__2].r, temp.i = x[i__2].i; in ztbmv_() 257 z__2.r = temp.r * a[i__5].r - temp.i * a[i__5].i, in ztbmv_() 258 z__2.i = temp.r * a[i__5].i + temp.i * a[ in ztbmv_() 284 temp.r = x[i__4].r, temp.i = x[i__4].i; in ztbmv_() 294 z__2.r = temp.r * a[i__5].r - temp.i * a[i__5].i, in ztbmv_() 295 z__2.i = temp.r * a[i__5].i + temp.i * a[ in ztbmv_() 326 temp.r = x[i__1].r, temp.i = x[i__1].i; in ztbmv_() 335 z__2.r = temp.r * a[i__2].r - temp.i * a[i__2].i, in ztbmv_() 336 z__2.i = temp.r * a[i__2].i + temp.i * a[ in ztbmv_() [all …]
|
/external/boringssl/src/crypto/bn/asm/ |
D | armv4-mont.pl | 269 my $temp=&Dlo($Temp); 301 vshl.i64 $temp,`&Dhi("$A0xB")`,#16 304 vadd.u64 $temp,$temp,`&Dlo("$A0xB")` 306 vmul.u32 $Ni,$temp,$M0 334 vshr.u64 $temp,$temp,#16 337 vadd.u64 $temp,$temp,`&Dhi("$Temp")` 340 vshr.u64 $temp,$temp,#16 349 vadd.u64 `&Dlo("$A0xB")`,`&Dlo("$A0xB")`,$temp 354 vshl.i64 $temp,`&Dhi("$A0xB")`,#16 357 vadd.u64 $temp,$temp,`&Dlo("$A0xB")` [all …]
|
/external/libyuv/files/source/ |
D | row_any.cc | 38 SIMD_ALIGNED(uint8 temp[64 * 5]); \ 39 memset(temp, 0, 64 * 4); /* for msan */ \ 45 memcpy(temp, y_buf + n, r); \ 46 memcpy(temp + 64, u_buf + (n >> UVSHIFT), SS(r, UVSHIFT)); \ 47 memcpy(temp + 128, v_buf + (n >> UVSHIFT), SS(r, UVSHIFT)); \ 48 memcpy(temp + 192, a_buf + n, r); \ 49 ANY_SIMD(temp, temp + 64, temp + 128, temp + 192, temp + 256, \ 51 memcpy(dst_ptr + (n >> DUVSHIFT) * BPP, temp + 256, \ 73 SIMD_ALIGNED(uint8 temp[64 * 4]); \ 74 memset(temp, 0, 64 * 3); /* for YUY2 and msan */ \ [all …]
|
/external/sonivox/arm-wt-22k/lib_src/ |
D | eas_pan.c | 63 EAS_INT temp; in EAS_CalcPanControl() local 78 temp = EG1_ONE + FMUL_15x15(COEFF_PAN_G2, netAngle); in EAS_CalcPanControl() 79 temp = COEFF_PAN_G0 + FMUL_15x15(temp, netAngle); in EAS_CalcPanControl() 81 if (temp > SYNTH_FULL_SCALE_EG1_GAIN) in EAS_CalcPanControl() 82 temp = SYNTH_FULL_SCALE_EG1_GAIN; in EAS_CalcPanControl() 83 else if (temp < 0) in EAS_CalcPanControl() 84 temp = 0; in EAS_CalcPanControl() 86 *pGainRight = (EAS_I16) temp; in EAS_CalcPanControl() 89 temp = -EG1_ONE + FMUL_15x15(COEFF_PAN_G2, netAngle); in EAS_CalcPanControl() 90 temp = COEFF_PAN_G0 + FMUL_15x15(temp, netAngle); in EAS_CalcPanControl() [all …]
|
D | eas_wtsynth.c | 519 EAS_I32 temp; in WT_UpdateVoice() local 553 temp = pChannel->staticPitch + pWTRegion->tuning; in WT_UpdateVoice() 557 temp += pVoice->note * 100; in WT_UpdateVoice() 559 temp += (pVoice->note + pSynth->globalTranspose) * 100; in WT_UpdateVoice() 560 intFrame.frame.phaseIncrement = WT_UpdatePhaseInc(pWTVoice, pArt, pChannel, temp); in WT_UpdateVoice() 561 temp = pWTVoice->loopEnd - pWTVoice->loopStart; in WT_UpdateVoice() 562 if (temp != 0) { in WT_UpdateVoice() 563 temp = temp << NUM_PHASE_FRAC_BITS; in WT_UpdateVoice() 564 if (intFrame.frame.phaseIncrement > temp) { in WT_UpdateVoice() 566 intFrame.frame.phaseIncrement %= temp; in WT_UpdateVoice() [all …]
|
/external/opencv/cxcore/src/ |
D | cxrand.cpp | 73 uint64 temp = *state; \ 88 temp = ICV_RNG_NEXT(temp); \ 89 t0 = ((unsigned)temp & p[i + 12]) + p[i]; \ 90 temp = ICV_RNG_NEXT(temp); \ 91 t1 = ((unsigned)temp & p[i + 13]) + p[i+1]; \ 95 temp = ICV_RNG_NEXT(temp); \ 96 t0 = ((unsigned)temp & p[i + 14]) + p[i+2]; \ 97 temp = ICV_RNG_NEXT(temp); \ 98 t1 = ((unsigned)temp & p[i + 15]) + p[i+3]; \ 115 temp = ICV_RNG_NEXT(temp); \ [all …]
|
/external/ltp/testcases/misc/math/atof/ |
D | atof01.c | 61 FILE *temp; variable 87 fprintf(temp, "output conversion incorrect."); in main() 88 fprintf(temp, "%*.*f = '%s'", i, j, pi, buf); in main() 93 fprintf(temp, "\tnumin('%s') failed\n", buf); in main() 98 fprintf(temp, "\tcompare fails, %f vs %f\n", in main() 100 fprintf(temp, "\terr value is %f\n", x); in main() 115 fprintf(temp, "\tsprintf small # failed\n"); in main() 116 fprintf(temp, "\t printed '%s', expected 1.0\n", buf); in main() 129 fprintf(temp, "\tnumin('%s') failed\n", buf); in main() 143 fprintf(temp, "\tx = %.15f = %e\n", x, x); in main() [all …]
|
/external/mesa3d/src/mesa/tnl/ |
D | t_vertex_sse.c | 263 struct x86_reg temp ) in emit_store() argument 266 store[sz-1](p, dest, temp); in emit_store() 271 struct x86_reg temp ) in emit_pack_store_4ub() argument 275 sse_mulps(&p->func, temp, p->chan0); in emit_pack_store_4ub() 278 sse2_cvtps2dq(&p->func, temp, temp); in emit_pack_store_4ub() 279 sse2_packssdw(&p->func, temp, temp); in emit_pack_store_4ub() 280 sse2_packuswb(&p->func, temp, temp); in emit_pack_store_4ub() 281 sse_movss(&p->func, dest, temp); in emit_pack_store_4ub() 286 sse_cvtps2pi(&p->func, mmx0, temp); in emit_pack_store_4ub() 287 sse_movhlps(&p->func, temp, temp); in emit_pack_store_4ub() [all …]
|
/external/wpa_supplicant_8/src/crypto/ |
D | aes-internal.c | 782 u32 temp; in rijndaelKeySetupEnc() local 791 temp = rk[3]; in rijndaelKeySetupEnc() 792 rk[4] = rk[0] ^ TE421(temp) ^ TE432(temp) ^ in rijndaelKeySetupEnc() 793 TE443(temp) ^ TE414(temp) ^ RCON(i); in rijndaelKeySetupEnc() 807 temp = rk[5]; in rijndaelKeySetupEnc() 808 rk[6] = rk[0] ^ TE421(temp) ^ TE432(temp) ^ in rijndaelKeySetupEnc() 809 TE443(temp) ^ TE414(temp) ^ RCON(i); in rijndaelKeySetupEnc() 826 temp = rk[7]; in rijndaelKeySetupEnc() 827 rk[8] = rk[0] ^ TE421(temp) ^ TE432(temp) ^ in rijndaelKeySetupEnc() 828 TE443(temp) ^ TE414(temp) ^ RCON(i); in rijndaelKeySetupEnc() [all …]
|
/external/lzma/xz-embedded/ |
D | xz_dec_stream.c | 140 } temp; member 171 b->in_size - b->in_pos, s->temp.size - s->temp.pos); in fill_temp() 173 memcpy(s->temp.buf + s->temp.pos, b->in + b->in_pos, copy_size); in fill_temp() 175 s->temp.pos += copy_size; in fill_temp() 177 if (s->temp.pos == s->temp.size) { in fill_temp() 178 s->temp.pos = 0; in fill_temp() 409 if (!memeq(s->temp.buf, HEADER_MAGIC, HEADER_MAGIC_SIZE)) in dec_stream_header() 412 if (xz_crc32(s->temp.buf + HEADER_MAGIC_SIZE, 2, 0) in dec_stream_header() 413 != get_le32(s->temp.buf + HEADER_MAGIC_SIZE + 2)) in dec_stream_header() 416 if (s->temp.buf[HEADER_MAGIC_SIZE] != 0) in dec_stream_header() [all …]
|
/external/dng_sdk/source/ |
D | dng_xy_coord.cpp | 49 dng_xy_coord temp = coord; in XYtoXYZ() local 55 temp.x = Pin_real64 (0.000001, temp.x, 0.999999); in XYtoXYZ() 56 temp.y = Pin_real64 (0.000001, temp.y, 0.999999); in XYtoXYZ() 58 if (temp.x + temp.y > 0.999999) in XYtoXYZ() 60 real64 scale = 0.999999 / (temp.x + temp.y); in XYtoXYZ() 61 temp.x *= scale; in XYtoXYZ() 62 temp.y *= scale; in XYtoXYZ() 65 return dng_vector_3 (temp.x / temp.y, in XYtoXYZ() 67 (1.0 - temp.x - temp.y) / temp.y); in XYtoXYZ()
|
/external/lzma/C/ |
D | Sort.c | 8 #define HeapSortDown(p, k, size, temp) \ argument 13 if (temp >= p[s]) break; \ 15 } p[k] = temp; } 26 UInt32 temp = p[i]; in HeapSort() local 28 HeapSortDown(p, k, size, temp) in HeapSort() 44 UInt32 temp = p[size]; in HeapSort() local 48 HeapSortDown(p, k, size, temp) in HeapSort() 51 UInt32 temp = p[size]; in HeapSort() local 53 if (size > 2 && p[2] < temp) in HeapSort() 56 p[2] = temp; in HeapSort() [all …]
|