/external/qemu/fpu/ |
D | softfloat-macros.h | 106 bits64 z0, z1; in shift64ExtraRightJamming() local 110 z1 = a1; in shift64ExtraRightJamming() 114 z1 = ( a0<<negCount ) | ( a1 != 0 ); in shift64ExtraRightJamming() 119 z1 = a0 | ( a1 != 0 ); in shift64ExtraRightJamming() 122 z1 = ( ( a0 | a1 ) != 0 ); in shift64ExtraRightJamming() 126 *z1Ptr = z1; in shift64ExtraRightJamming() 143 bits64 z0, z1; in shift128Right() local 147 z1 = a1; in shift128Right() 151 z1 = ( a0<<negCount ) | ( a1>>count ); in shift128Right() 155 z1 = ( count < 64 ) ? ( a0>>( count & 63 ) ) : 0; in shift128Right() [all …]
|
/external/sonivox/arm-hybrid-22k/lib_src/ |
D | ARM-E_filter_gnu.s | 43 z1 .req r4 label 71 LDRSH z1, [pFilter, #m_z1] 91 SMULBB tmp2, z1, b1 @ tmp2 = z1 * -b1 92 SMLABB tmp2, z2, b2, tmp2 @ tmp2 = (-b1 * z1) + (-b2 * z2) 94 MOV z2, z1 @ delay line 96 SMLABB tmp0, tmp0, K, tmp2 @ tmp1 = (K * x[n]) + (-b1 * z1) + (-b2 * z2) 100 MOV z1, tmp0, ASR #14 @ shift result to low word 101 STRH z1, [pBuffer], #NEXT_OUTPUT_PCM @ write back to buffer 103 SMULBB tmp2, z1, b1 @ tmp2 = z1 * -b1 107 SMLABB tmp2, z2, b2, tmp2 @ tmp2 = (-b1 * z1) + (-b2 * z2) [all …]
|
D | eas_wtengine.c | 358 EAS_I32 z1; in WT_VoiceFilter() local 368 z1 = pFilter->z1; in WT_VoiceFilter() 383 acc1 = z1 * b1; in WT_VoiceFilter() 386 z2 = z1; in WT_VoiceFilter() 389 z1 = acc0 >> 14; in WT_VoiceFilter() 390 *pAudioBuffer++ = (EAS_I16) z1; in WT_VoiceFilter() 394 pFilter->z1 = (EAS_I16) z1; in WT_VoiceFilter()
|
D | eas_wtengine.h | 78 EAS_I16 z1; /* 1 sample delay state variable */ member
|
/external/sonivox/arm-wt-22k/lib_src/ |
D | ARM-E_filter_gnu.s | 43 z1 .req r4 label 71 LDRSH z1, [pFilter, #m_z1] 91 SMULBB tmp2, z1, b1 @ tmp2 = z1 * -b1 92 SMLABB tmp2, z2, b2, tmp2 @ tmp2 = (-b1 * z1) + (-b2 * z2) 94 MOV z2, z1 @ delay line 96 SMLABB tmp0, tmp0, K, tmp2 @ tmp1 = (K * x[n]) + (-b1 * z1) + (-b2 * z2) 100 MOV z1, tmp0, ASR #14 @ shift result to low word 101 STRH z1, [pBuffer], #NEXT_OUTPUT_PCM @ write back to buffer 103 SMULBB tmp2, z1, b1 @ tmp2 = z1 * -b1 107 SMLABB tmp2, z2, b2, tmp2 @ tmp2 = (-b1 * z1) + (-b2 * z2) [all …]
|
D | eas_wtengine.c | 358 EAS_I32 z1; in WT_VoiceFilter() local 368 z1 = pFilter->z1; in WT_VoiceFilter() 383 acc1 = z1 * b1; in WT_VoiceFilter() 386 z2 = z1; in WT_VoiceFilter() 389 z1 = acc0 >> 14; in WT_VoiceFilter() 390 *pAudioBuffer++ = (EAS_I16) z1; in WT_VoiceFilter() 394 pFilter->z1 = (EAS_I16) z1; in WT_VoiceFilter()
|
D | eas_wtengine.h | 78 EAS_I16 z1; /* 1 sample delay state variable */ member
|
/external/openssl/crypto/ec/ |
D | ec2_mult.c | 113 static int gf2m_Madd(const EC_GROUP *group, const BIGNUM *x, BIGNUM *x1, BIGNUM *z1, in gf2m_Madd() argument 127 if (!group->meth->field_mul(group, z1, z1, x2, ctx)) goto err; in gf2m_Madd() 128 if (!group->meth->field_mul(group, t2, x1, z1, ctx)) goto err; in gf2m_Madd() 129 if (!BN_GF2m_add(z1, z1, x1)) goto err; in gf2m_Madd() 130 if (!group->meth->field_sqr(group, z1, z1, ctx)) goto err; in gf2m_Madd() 131 if (!group->meth->field_mul(group, x1, z1, t1, ctx)) goto err; in gf2m_Madd() 151 BIGNUM *z1, BIGNUM *x2, BIGNUM *z2, BN_CTX *ctx) in gf2m_Mxy() argument 156 if (BN_is_zero(z1)) in gf2m_Mxy() 179 if (!group->meth->field_mul(group, t3, z1, z2, ctx)) goto err; in gf2m_Mxy() 181 if (!group->meth->field_mul(group, z1, z1, x, ctx)) goto err; in gf2m_Mxy() [all …]
|
/external/jpeg/ |
D | jfdctint.c | 144 INT32 z1, z2, z3, z4, z5; variable 176 z1 = MULTIPLY(tmp12 + tmp13, FIX_0_541196100); 177 dataptr[2] = (DCTELEM) DESCALE(z1 + MULTIPLY(tmp13, FIX_0_765366865), 179 dataptr[6] = (DCTELEM) DESCALE(z1 + MULTIPLY(tmp12, - FIX_1_847759065), 187 z1 = tmp4 + tmp7; 197 z1 = MULTIPLY(z1, - FIX_0_899976223); /* sqrt(2) * (c7-c3) */ 205 dataptr[7] = (DCTELEM) DESCALE(tmp4 + z1 + z3, CONST_BITS-PASS1_BITS); 208 dataptr[1] = (DCTELEM) DESCALE(tmp7 + z1 + z4, CONST_BITS-PASS1_BITS); 241 z1 = MULTIPLY(tmp12 + tmp13, FIX_0_541196100); 242 dataptr[DCTSIZE*2] = (DCTELEM) DESCALE(z1 + MULTIPLY(tmp13, FIX_0_765366865), [all …]
|
D | jidctred.c | 123 INT32 z1, z2, z3, z4; variable 171 z1 = DEQUANTIZE(inptr[DCTSIZE*7], quantptr[DCTSIZE*7]); 176 tmp0 = MULTIPLY(z1, - FIX_0_211164243) /* sqrt(2) * (c3-c1) */ 181 tmp2 = MULTIPLY(z1, - FIX_0_509795579) /* sqrt(2) * (c7-c5) */ 230 z1 = (INT32) wsptr[7]; 235 tmp0 = MULTIPLY(z1, - FIX_0_211164243) /* sqrt(2) * (c3-c1) */ 240 tmp2 = MULTIPLY(z1, - FIX_0_509795579) /* sqrt(2) * (c7-c5) */ 275 INT32 tmp0, tmp10, z1; in jpeg_idct_2x2() local 307 z1 = DEQUANTIZE(inptr[DCTSIZE*0], quantptr[DCTSIZE*0]); in jpeg_idct_2x2() 308 tmp10 = z1 << (CONST_BITS+2); in jpeg_idct_2x2() [all …]
|
D | jidctint.c | 154 INT32 z1, z2, z3, z4, z5; variable 209 z1 = MULTIPLY(z2 + z3, FIX_0_541196100); 210 tmp2 = z1 + MULTIPLY(z3, - FIX_1_847759065); 211 tmp3 = z1 + MULTIPLY(z2, FIX_0_765366865); 233 z1 = tmp0 + tmp3; 243 z1 = MULTIPLY(z1, - FIX_0_899976223); /* sqrt(2) * (c7-c3) */ 251 tmp0 += z1 + z3; 254 tmp3 += z1 + z4; 314 z1 = MULTIPLY(z2 + z3, FIX_0_541196100); 315 tmp2 = z1 + MULTIPLY(z3, - FIX_1_847759065); [all …]
|
D | jfdctflt.c | 63 FAST_FLOAT z1, z2, z3, z4, z5, z11, z13; variable 90 z1 = (tmp12 + tmp13) * ((FAST_FLOAT) 0.707106781); /* c4 */ 91 dataptr[2] = tmp13 + z1; /* phase 5 */ 92 dataptr[6] = tmp13 - z1; 140 z1 = (tmp12 + tmp13) * ((FAST_FLOAT) 0.707106781); /* c4 */ 141 dataptr[DCTSIZE*2] = tmp13 + z1; /* phase 5 */ 142 dataptr[DCTSIZE*6] = tmp13 - z1;
|
D | jfdctfst.c | 118 DCTELEM z1, z2, z3, z4, z5, z11, z13; variable 146 z1 = MULTIPLY(tmp12 + tmp13, FIX_0_707106781); /* c4 */ 147 dataptr[2] = tmp13 + z1; /* phase 5 */ 148 dataptr[6] = tmp13 - z1; 196 z1 = MULTIPLY(tmp12 + tmp13, FIX_0_707106781); /* c4 */ 197 dataptr[DCTSIZE*2] = tmp13 + z1; /* phase 5 */ 198 dataptr[DCTSIZE*6] = tmp13 - z1;
|
/external/libgsm/src/ |
D | preprocess.c | 40 word z1 = S->z1; variable 78 s1 = SO - z1; /* s1 = gsm_sub( *so, z1 ); */ 79 z1 = SO; 110 S->z1 = z1;
|
/external/openssl/crypto/des/ |
D | qud_cksm.c | 79 DES_LONG z0,z1,t0,t1; in DES_quad_cksum() local 97 z1=Q_B0((*seed)[4])|Q_B1((*seed)[5])|Q_B2((*seed)[6])|Q_B3((*seed)[7]); in DES_quad_cksum() 117 t1=z1; in DES_quad_cksum() 121 z1=((t0*((t1+NOISE)&0xffffffffL))&0xffffffffL)%0x7fffffffL; in DES_quad_cksum() 129 (*lp).b = z1; in DES_quad_cksum() 133 *lp++ = z1; in DES_quad_cksum()
|
/external/icu4c/test/intltest/ |
D | tzrulets.h | 43 void compareTransitionsAscending(BasicTimeZone& z1, BasicTimeZone& z2, 45 void compareTransitionsDescending(BasicTimeZone& z1, BasicTimeZone& z2,
|
D | tzregts.cpp | 79 TimeZone *z1 = TimeZone::createTimeZone("PST"); in Test4073209() local 81 if (z1 == z2) in Test4073209() 83 delete z1; in Test4073209() 919 SimpleTimeZone* z1 = new SimpleTimeZone(offset, "_std_zone_"); in Test4176686() local 920 z1->setDSTSavings(45 * 60000, status); // 0:45 in Test4176686() 934 fmt1->setTimeZone(*z1); // Format uses standard zone in Test4176686() 949 z1->getDisplayName(FALSE, TimeZone::SHORT, a), "GMT+01:30", in Test4176686() 951 z1->getDisplayName(FALSE, TimeZone::LONG, b), "GMT+01:30", in Test4176686() 953 z1->getDisplayName(TRUE, TimeZone::SHORT, c), "GMT+01:30", in Test4176686() 955 z1->getDisplayName(TRUE, TimeZone::LONG, d ), "GMT+01:30", in Test4176686() [all …]
|
D | tzrulets.cpp | 2357 TimeZoneRuleTest::compareTransitionsAscending(BasicTimeZone& z1, BasicTimeZone& z2, in compareTransitionsAscending() argument 2364 z1.getID(zid1); in compareTransitionsAscending() 2369 avail1 = z1.getNextTransition(time, inclusive, tzt1); in compareTransitionsAscending() 2414 TimeZoneRuleTest::compareTransitionsDescending(BasicTimeZone& z1, BasicTimeZone& z2, in compareTransitionsDescending() argument 2421 z1.getID(zid1); in compareTransitionsDescending() 2426 avail1 = z1.getPreviousTransition(time, inclusive, tzt1); in compareTransitionsDescending()
|
/external/chromium/third_party/icu/source/test/intltest/ |
D | tzrulets.h | 42 void compareTransitionsAscending(BasicTimeZone& z1, BasicTimeZone& z2, 44 void compareTransitionsDescending(BasicTimeZone& z1, BasicTimeZone& z2,
|
D | tzregts.cpp | 79 TimeZone *z1 = TimeZone::createTimeZone("PST"); in Test4073209() local 81 if (z1 == z2) in Test4073209() 83 delete z1; in Test4073209() 933 SimpleTimeZone* z1 = new SimpleTimeZone(offset, "_std_zone_"); in Test4176686() local 934 z1->setDSTSavings(45 * 60000, status); // 0:45 in Test4176686() 945 fmt1->setTimeZone(*z1); // Format uses standard zone in Test4176686() 960 z1->getDisplayName(FALSE, TimeZone::SHORT, a), "GMT+01:30", in Test4176686() 962 z1->getDisplayName(FALSE, TimeZone::LONG, b), "GMT+01:30", in Test4176686() 964 z1->getDisplayName(TRUE, TimeZone::SHORT, c), "GMT+01:30", in Test4176686() 966 z1->getDisplayName(TRUE, TimeZone::LONG, d ), "GMT+01:30", in Test4176686() [all …]
|
D | tzrulets.cpp | 2228 TimeZoneRuleTest::compareTransitionsAscending(BasicTimeZone& z1, BasicTimeZone& z2, in compareTransitionsAscending() argument 2235 z1.getID(zid1); in compareTransitionsAscending() 2240 avail1 = z1.getNextTransition(time, inclusive, tzt1); in compareTransitionsAscending() 2285 TimeZoneRuleTest::compareTransitionsDescending(BasicTimeZone& z1, BasicTimeZone& z2, in compareTransitionsDescending() argument 2292 z1.getID(zid1); in compareTransitionsDescending() 2297 avail1 = z1.getPreviousTransition(time, inclusive, tzt1); in compareTransitionsDescending()
|
/external/freetype/src/base/ |
D | ftcalc.c | 891 FT_Int64 z1, z2; in ft_corner_orientation() 895 ft_multo64( (FT_Int32)in_x, (FT_Int32)out_y, &z1 ); in ft_corner_orientation() 898 if ( z1.hi > z2.hi ) in ft_corner_orientation() 900 else if ( z1.hi < z2.hi ) in ft_corner_orientation() 902 else if ( z1.lo > z2.lo ) in ft_corner_orientation() 904 else if ( z1.lo < z2.lo ) in ft_corner_orientation()
|
/external/webkit/WebKit/chromium/src/ |
D | WebPluginContainerImpl.cpp | 468 int z1 = ro1->style()->zIndex(); in checkStackOnTop() local 470 if (z1 > z2) in checkStackOnTop() 472 if (z1 < z2) in checkStackOnTop()
|
/external/svox/pico_resources/tools/LingwareBuilding/PicoLingware_source_files/pkb/it-IT/ |
D | it-IT_cm0_kdt_lfz4.pkb | 47 …�D�����f�X'ѩ'�E���3NA�����C�i���sN�°�!j��t�r'�k|"O�Rӄ�ȁ("��yq%4��d���˘z1'���Ӊ�Di0���?��…
|
/external/libgsm/inc/ |
D | private.h | 23 word z1; /* preprocessing.c, Offset_com. */ member
|