/frameworks/av/media/libstagefright/codecs/amrnb/enc/src/ |
D | calc_en.cpp | 279 Word32 s3; /* Intermediate energy accumulator */ in calc_unfilt_energies() local 294 s3 = 0; in calc_unfilt_energies() 311 … s3 = amrnb_fxp_mac_16_by_16bb((Word32) tmp2, (Word32) code[i], s3);/* Compute scalar product */ in calc_unfilt_energies() 323 s3 = s3 << 1; in calc_unfilt_energies() 355 exp = norm_l(s3); in calc_unfilt_energies() 356 frac_en[2] = (Word16)(L_shl(s3, exp, pOverflow) >> 16); in calc_unfilt_energies() 609 Word32 s3; /* Intermediate energy accumulator */ in calc_filt_energies() local 627 s3 = 0L; in calc_filt_energies() 633 s3 = 1L; in calc_filt_energies() 649 s3 = L_mac(s3, y1[i], tmp, pOverflow); in calc_filt_energies() [all …]
|
/frameworks/av/media/libstagefright/codecs/amrnb/common/src/ |
D | residu.cpp | 208 Word32 s3; in Residu() local 222 s3 = 0x0000800L; in Residu() 234 s3 += ((Word32) * (p_coef) * *(p_input3++)); in Residu() 238 s3 += ((Word32) * (p_coef) * *(p_input3++)); in Residu() 244 s3 += (((Word32) * (p_coef)) * *(p_input3)); in Residu() 249 *(p_residual_ptr--) = (Word16)(s3 >> 12); in Residu()
|
/frameworks/base/core/tests/coretests/src/android/animation/ |
D | AnimatorSetActivityTest.java | 93 AnimatorSet s3 = new AnimatorSet(); in testGetChildAnimations() local 94 s3.play(a1).before(a2).after(s1).with(s2).after(a3); in testGetChildAnimations() 95 ArrayList<Animator> s3Children = s3.getChildAnimations(); in testGetChildAnimations() 149 AnimatorSet s3 = new AnimatorSet(); in testTotalDuration() local 150 s3.play(a1).before(a2).after(a3); in testTotalDuration() 151 s3.play(a1).after(a2).with(a4); in testTotalDuration() 152 assertEquals(AnimatorSet.DURATION_INFINITE, s3.getTotalDuration()); in testTotalDuration() 556 final AnimatorSet s3 = s1.clone(); 558 s3.addListener(l3); 572 s3.start(); [all …]
|
/frameworks/rs/java/tests/RSTest_CompatLib/src/com/android/rs/test/ |
D | apitest.rs | 40 volatile short3 s3; 192 s3 = rsGetElementAt_short3(aShort3, 0); 193 rsSetElementAt_short3(aShort3, s3, 0); 194 s3 = rsGetElementAt_short3(aShort3, 0, 0); 195 rsSetElementAt_short3(aShort3, s3, 0, 0); 196 s3 = rsGetElementAt_short3(aShort3, 0, 0, 0); 197 rsSetElementAt_short3(aShort3, s3, 0, 0, 0); 427 c3 = convert_char3(s3); 449 uc3 = convert_uchar3(s3); 469 s3 = convert_short3(c3); [all …]
|
D | math.rs | 22 volatile short3 s3;
|
/frameworks/rs/java/tests/RSTest_CompatLibLegacy/src/com/android/rs/test/ |
D | apitest.rs | 40 volatile short3 s3; 190 s3 = rsGetElementAt_short3(aShort3, 0); 191 rsSetElementAt_short3(aShort3, s3, 0); 192 s3 = rsGetElementAt_short3(aShort3, 0, 0); 193 rsSetElementAt_short3(aShort3, s3, 0, 0); 194 s3 = rsGetElementAt_short3(aShort3, 0, 0, 0); 195 rsSetElementAt_short3(aShort3, s3, 0, 0, 0); 425 c3 = convert_char3(s3); 447 uc3 = convert_uchar3(s3); 467 s3 = convert_short3(c3); [all …]
|
D | math.rs | 22 volatile short3 s3;
|
/frameworks/base/docs/html/topic/instant-apps/ |
D | index.jd | 90 src="/images/topic/instant-apps/s3-BandH-static.png" 91 data-stat="/images/topic/instant-apps/s3-BandH-static.png" 92 data-anim="/images/topic/instant-apps/s3-BandH-animated.gif"> 101 src="/images/topic/instant-apps/s3-BuzzFeed-static.png" 102 data-stat="/images/topic/instant-apps/s3-BuzzFeed-static.png" 103 data-anim="/images/topic/instant-apps/s3-BuzzFeed-animated.gif"> 112 src="/images/topic/instant-apps/s3-ParkandPay-static.png" 113 data-stat="/images/topic/instant-apps/s3-ParkandPay-static.png" 114 data-anim="/images/topic/instant-apps/s3-ParkandPay-animated.gif">
|
/frameworks/base/wifi/java/android/net/wifi/ |
D | WifiManager.java | 2314 String s1, s2, s3; 2319 s3 = "refcounted: refcount = " + mRefCount; 2321 s3 = "not refcounted"; 2323 return "WifiLock{ " + s1 + "; " + s2 + s3 + " }"; 2537 String s1, s2, s3; 2542 s3 = "refcounted: refcount = " + mRefCount; 2544 s3 = "not refcounted"; 2546 return "MulticastLock{ " + s1 + "; " + s2 + s3 + " }";
|
/frameworks/base/core/tests/coretests/src/android/text/ |
D | TextUtilsTest.java | 274 Spannable s3 = new SpannableString(s1); in testEllipsize() local 275 s3.setSpan(new StyleSpan(0), 5, 10, Spannable.SPAN_EXCLUSIVE_EXCLUSIVE); in testEllipsize() 299 String out3 = TextUtils.ellipsize(s3, p, i, kind).toString(); in testEllipsize() 303 String keep3 = TextUtils.ellipsize(s3, p, i, kind, true, null).toString(); in testEllipsize()
|
/frameworks/compile/slang/tests/P_math_int/ |
D | math_int.rs | 26 short3 s3;
|
/frameworks/rs/tests/typecheck/ |
D | kernels.rs | 44 short3 s3;
|
/frameworks/native/cmds/installd/ |
D | utils.h | 141 char *build_string3(const char *s1, const char *s2, const char *s3);
|
D | utils.cpp | 1146 char *build_string3(const char *s1, const char *s2, const char *s3) { in build_string3() argument 1147 if (s1 == NULL || s2 == NULL || s3 == NULL) return NULL; in build_string3() 1151 int len_s3 = strlen(s3); in build_string3() 1158 strcpy(result + len_s1 + len_s2, s3); in build_string3()
|
/frameworks/av/media/libstagefright/ |
D | MediaCodecListOverrides.cpp | 252 const AString &s, const AString &delimiter, AString *s1, AString *s2, AString *s3) { in splitString() argument 257 if (!splitString(temp, delimiter, s2, s3)) { in splitString()
|
/frameworks/rs/api/ |
D | rs_value_types.spec | 50 myVar.w == myVar.a == myVar.s3 == myVar.S3</code>
|
/frameworks/rs/java/tests/RsTest_11/src/com/android/rs/test/ |
D | math.rs | 22 volatile short3 s3;
|
/frameworks/rs/java/tests/RsTest_14/src/com/android/rs/test/ |
D | math.rs | 22 volatile short3 s3;
|
D | math.rs.bak | 22 volatile short3 s3;
|
D | math.rs.orig | 22 volatile short3 s3;
|
/frameworks/rs/java/tests/RsTest/src/com/android/rs/test/ |
D | math.rs | 22 volatile short3 s3;
|
/frameworks/rs/java/tests/RsTest_16/src/com/android/rs/test/ |
D | math.rs | 22 volatile short3 s3;
|
/frameworks/rs/scriptc/ |
D | rs_value_types.rsh | 52 * myVar.w == myVar.a == myVar.s3 == myVar.S3
|
/frameworks/base/docs/html/guide/topics/graphics/ |
D | hardware-accel.jd | 266 …olor:#ffffff;text-align:center;border-top:1px solid #CCC;} .tblGenFixed td.s3 {background-color:wh…
|
/frameworks/base/docs/html/guide/topics/renderscript/reference/ |
D | rs_value_types.jd | 44 myVar.w == myVar.a == myVar.s3 == myVar.S3</code>
|