HomeSort by relevance Sort by last modified time
    Searched defs:result (Results 1451 - 1475 of 11920) sorted by null

<<51525354555657585960>>

  /frameworks/av/media/libstagefright/
FileSource.cpp 151 off64_t result = lseek64(mFd, offset + mOffset, SEEK_SET); local
152 if (result == -1) {
  /frameworks/av/media/libstagefright/codecs/amrnb/common/include/
mpy_32.h 149 register Word32 L_product, result; local
164 : "=r"(result)
169 : "r"(result), "r"(L_product)
228 /* result = mult (L_var1_hi, L_var2_lo, pOverflow); */
231 /* L_product = L_mac (L_product, result, 1, pOverflow); */
244 /* result = mult (L_var1_lo, L_var2_hi, pOverflow); */
247 /* L_product = L_mac (L_product, result, 1, pOverflow); */
  /frameworks/av/media/libstagefright/codecs/amrnb/enc/src/
g_adapt.cpp 418 Word16 result; /* alpha factor, Q13 */ local
473 filt = gmed_n(st->ltpg_mem, 5); /* function result */
479 result = 0;
485 result = 16384; /* 16384 Q15 = 0.5 */
488 { /* result = 0.5 - 0.75257499*filt */
489 /* result (Q15) = 16384 - 24660 * (filt << 2) */
491 result = mult(24660, filt, pOverflow);
492 result = sub(16384, result, pOverflow);
498 result = 0
    [all...]
  /frameworks/av/services/audiopolicy/common/managerdefinitions/src/
AudioGain.cpp 105 String8 result; local
108 result.append(buffer);
110 result.append(buffer);
112 result.append(buffer);
114 result.append(buffer);
116 result.append(buffer);
118 result.append(buffer);
120 result.append(buffer);
122 result.append(buffer);
124 result.append(buffer)
    [all...]
EffectDescriptor.cpp 29 String8 result; local
32 result.append(buffer);
34 result.append(buffer);
36 result.append(buffer);
38 result.append(buffer);
40 result.append(buffer);
41 write(fd, result.string(), result.size());
IOProfile.cpp 107 String8 result; local
112 result.append(buffer);
113 write(fd, result.string(), result.size());
VolumeCurve.cpp 67 String8 result; local
69 result.append(buffer);
73 result.append(buffer);
74 result.append(i == (mCurvePoints.size() - 1) ? " }\n" : ", ");
76 write(fd, result.string(), result.size());
83 String8 result; local
88 result.append(buffer);
91 result.append(buffer);
93 result.append("\n")
    [all...]
  /frameworks/base/core/java/android/accounts/
Account.java 40 int result = 17; local
41 result = 31 * result + name.hashCode();
42 result = 31 * result + type.hashCode();
43 return result;
  /frameworks/base/core/java/android/app/usage/
NetworkStatsManager.java 105 * Query network usage statistics summaries. Result is summarised data usage for the whole
106 * device. Result is a single Bucket aggregated over time, state, uid, tag and roaming. This
142 * Query network usage statistics summaries. Result is summarised data usage for all uids
143 * belonging to calling user. Result is a single Bucket aggregated over time, state and uid.
178 * Query network usage statistics summaries. Result filtered to include only uids belonging to
179 * calling user. Result is aggregated over time, hence all buckets will have the same start and
205 NetworkStats result; local
206 result = new NetworkStats(mContext, template, startTime, endTime);
207 result.startSummaryEnumeration();
209 return result;
251 NetworkStats result; local
295 NetworkStats result; local
    [all...]
  /frameworks/base/core/java/android/content/pm/
PackageCleanItem.java 52 int result = 17; local
53 result = 31 * result + userId;
54 result = 31 * result + packageName.hashCode();
55 result = 31 * result + (andCode ? 1 : 0);
56 return result;
  /frameworks/base/core/java/android/print/
PrintJobId.java 56 int result = 1; local
57 result = prime * result + mValue.hashCode();
58 return result;
  /frameworks/base/core/java/android/widget/
Space.java 76 int result = size; local
82 result = size;
85 result = Math.min(size, specSize);
88 result = specSize;
91 return result;
  /frameworks/base/core/java/com/android/internal/widget/
DrawingSpace.java 52 int result = size; local
58 result = size;
61 result = Math.min(size, specSize);
64 result = specSize;
67 return result;
  /frameworks/base/core/jni/android/graphics/
DrawFilter.cpp 59 const bool result = (flags & sFilterBitmapFlag) != 0; local
61 return result;
109 int result = RegisterMethodsOrDie(env, "android/graphics/DrawFilter", drawfilter_methods, local
111 result |= RegisterMethodsOrDie(env, "android/graphics/PaintFlagsDrawFilter", paintflags_methods,
Interpolator.cpp 53 SkInterpolatorBase::Result result; local
56 result = interp->timeToValues(msec, (SkScalar*)values);
66 return static_cast<jint>(result);
  /frameworks/base/core/jni/
android_os_MemoryFile.cpp 33 int result = ashmem_create_region(namestr, length); local
38 if (result < 0) {
43 return jniCreateFileDescriptor(env, result);
50 void* result = mmap(NULL, length, prot, MAP_SHARED, fd, 0); local
51 if (result == MAP_FAILED) {
54 return reinterpret_cast<jlong>(result);
59 int result = munmap(reinterpret_cast<void *>(addr), length); local
60 if (result < 0)
114 int result = (pin ? ashmem_pin_region(fd, 0, 0) : ashmem_unpin_region(fd, 0, 0)); local
115 if (result < 0)
126 int result = ashmem_get_size_region(fd); local
    [all...]
  /frameworks/base/core/tests/coretests/src/android/widget/listview/
ListItemsExpandOnSelection.java 42 TextView result = new ExpandWhenSelectedView(parent.getContext(), desiredHeight); local
43 result.setHeight(desiredHeight);
44 result.setFocusable(mItemsFocusable);
45 result.setText(getValueAtPosition(position));
49 result.setLayoutParams(lp);
50 return result;
  /frameworks/base/core/tests/hosttests/test-apps/SharedUid/32/jni/
native.cpp 26 int result = a + b; local
27 ALOGI("%d + %d = %d", a, b, result);
28 return result;
89 jint result = -1; local
105 result = JNI_VERSION_1_4;
108 return result;
  /frameworks/base/core/tests/hosttests/test-apps/SharedUid/64/jni/
native.cpp 26 int result = a + b; local
27 ALOGI("%d + %d = %d", a, b, result);
28 return result;
89 jint result = -1; local
105 result = JNI_VERSION_1_4;
108 return result;
  /frameworks/base/core/tests/hosttests/test-apps/SharedUid/dual/jni/
native.cpp 26 int result = a + b; local
27 ALOGI("%d + %d = %d", a, b, result);
28 return result;
89 jint result = -1; local
105 result = JNI_VERSION_1_4;
108 return result;
  /frameworks/base/graphics/java/android/graphics/
Insets.java 98 int result = left; local
99 result = 31 * result + top;
100 result = 31 * result + right;
101 result = 31 * result + bottom;
102 return result;
  /frameworks/base/keystore/java/android/security/keystore/
AndroidKeyStoreKeyFactorySpi.java 74 T result = (T) AndroidKeyStoreSecretKeyFactorySpi.getKeyInfo( local
76 return result;
85 T result = (T) new X509EncodedKeySpec(((AndroidKeyStorePublicKey) key).getEncoded()); local
86 return result;
100 T result = local
102 return result;
113 T result = (T) new ECPublicKeySpec(ecKey.getW(), ecKey.getParams()); local
114 return result;
AndroidKeyStorePublicKey.java 49 int result = super.hashCode(); local
50 result = prime * result + Arrays.hashCode(mEncoded);
51 return result;
ArrayUtils.java 51 byte[] result = new byte[len1 + len2];
52 System.arraycopy(arr1, offset1, result, 0, len1);
53 System.arraycopy(arr2, offset2, result, len1, len2);
54 return result;
65 byte[] result = new byte[len];
66 System.arraycopy(arr, offset, result, 0, len);
67 return result;
76 int[] result = new int[arr1.length + arr2.length]; local
77 System.arraycopy(arr1, 0, result, 0, arr1.length);
78 System.arraycopy(arr2, 0, result, arr1.length, arr2.length)
    [all...]
  /frameworks/base/libs/hwui/
Interpolator.cpp 77 float result; local
79 result = 1.0f - (1.0f - input) * (1.0f - input);
81 result = 1.0f - pow((1.0f - input), 2 * mFactor);
83 return result;

Completed in 1332 milliseconds

<<51525354555657585960>>