Searched defs:result (Results 26 - 50 of 552) sorted by relevance

1234567891011>>

/frameworks/av/libvideoeditor/osal/src/
H A DM4OSA_Semaphore.c134 int result; local
157 result = sem_trywait(&semaphoreContext->semaphore);
158 while ( ((EBUSY == result) || (EAGAIN == result)) && ( 0 < timeout ) )
172 result = sem_trywait(&semaphoreContext->semaphore);
174 if (0 != result)
176 if ((EBUSY == result) || (EAGAIN == result))
/frameworks/av/media/libstagefright/codecs/aacenc/basic_op/
H A Doper_32b.h63 Word32 result; local
65 "SMULWB %[result], %[L_var2], %[var1] \n"
66 :[result]"=r"(result)
69 return result;
/frameworks/av/media/libstagefright/codecs/amrnb/common/include/
H A Dl_mac.h110 Word32 result; local
115 __asm {SMULBB result, var1, var2} local
116 __asm {QDADD L_sum, L_var3, result}
127 Word32 result; local
132 : "=r"(result)
138 : "r"(ra), "r"(result)
148 Word32 result; local
150 result = (Word32) var1 * var2;
151 if (result != (Word32) 0x40000000L)
153 L_sum = (result <<
[all...]
H A Dl_msu.h112 Word32 result; local
119 QDSUB result, L_var3, product local
122 return (result);
133 Word32 result; local
143 : "=r"(result)
147 return (result);
154 Word32 result; local
156 result = L_mult(var1, var2, pOverflow);
157 result = L_sub(L_var3, result, pOverflo
[all...]
H A Dmpy_32.h149 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); */
H A Dmpy_32_16.h101 Word32 result; local
107 __asm {SMULBB result, L_var1_lo, var2} local
108 result >>= 15;
109 __asm {QDADD L_sum, L_product, result}
124 Word32 result, L_product; local
133 : "=r"(result)
138 : "r"(result), "r"(L_product)
142 : "=r"(result)
148 : "r"(result)
151 : "=r"(result)
167 Word32 result; local
[all...]
/frameworks/av/media/libstagefright/codecs/amrnb/common/src/
H A Ddiv_32.cpp46 that the result will not saturate.
104 result = 32-bit quotient of of the division of two 32 bit integers
125 3. result = L_num * (1/L_denom).
179 Word32 result; local
187 result = Mpy_32_16(L_denom_hi, L_denom_lo, approx, pOverflow);
188 /* result is > 0 , and less than 1.0 */
189 result = 0x7fffffffL - result;
191 hi = (Word16)(result >> 16);
192 lo = (result >>
[all...]
/frameworks/av/media/libstagefright/codecs/amrnb/enc/src/
H A Dg_adapt.cpp418 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
[all...]
/frameworks/av/media/libstagefright/foundation/
H A DABitReader.cpp49 uint32_t result = 0; local
60 result = (result << m) | (mReservoir >> (32 - m));
67 return result;
/frameworks/base/core/java/android/accounts/
H A DAccountManagerResponse.java42 public void onResult(Bundle result) { argument
44 mResponse.onResult(result);
/frameworks/base/core/java/android/app/backup/
H A DRestoreObserver.java32 * @param result An array of {@link android.app.backup.RestoreSet RestoreSet} objects
34 * the current device. If no applicable datasets exist, {@code result} will be
39 public void restoreSetsAvailable(RestoreSet[] result) { argument
/frameworks/base/core/java/android/content/
H A DSyncContext.java67 public void onFinished(SyncResult result) { argument
70 mSyncContext.onFinished(result);
/frameworks/base/core/java/android/os/
H A DAsyncResult.java27 // Expect either exception or result to be null
30 public Object result; field in class:AsyncResult
65 result = r;
/frameworks/base/core/java/android/test/
H A DInstrumentationTestSuite.java65 public void runTest(Test test, TestResult result) { argument
72 super.runTest(test, result);
/frameworks/base/core/java/android/webkit/
H A DJsResult.java27 * notifications when the JavaScript result represented by a JsResult instance has
31 public void onJsResultComplete(JsResult result); argument
35 // This is a basic result of a confirm or prompt dialog.
39 * Handle the result if the user cancelled the dialog.
/frameworks/base/core/jni/android/graphics/
H A DDrawFilter.cpp63 result = android::AndroidRuntime::registerNativeMethods(env, name, array, SK_ARRAY_COUNT(array)); \
64 if (result < 0) return result
68 int result; local
H A DXfermode.cpp63 result = android::AndroidRuntime::registerNativeMethods(env, name, array, \
65 if (result < 0) return result
68 int result; local
/frameworks/base/core/jni/
H A Dandroid_hardware_UsbDevice.cpp42 jstring result = env->NewStringUTF(name); local
44 return result;
H A Dandroid_util_FloatMath.cpp55 int result = android::AndroidRuntime::registerNativeMethods(env, local
59 return result;
/frameworks/base/libs/androidfw/tests/
H A DInputChannel_test.cpp62 status_t result = InputChannel::openInputChannelPair(String8("channel name"), local
65 ASSERT_EQ(OK, result)
113 status_t result = InputChannel::openInputChannelPair(String8("channel name"), local
116 ASSERT_EQ(OK, result)
127 status_t result = InputChannel::openInputChannelPair(String8("channel name"), local
130 ASSERT_EQ(OK, result)
143 status_t result = InputChannel::openInputChannelPair(String8("channel name"), local
146 ASSERT_EQ(OK, result)
/frameworks/base/libs/hwui/thread/
H A DFuture.h34 * Returns the result of this future, blocking if
35 * the result is not available yet.
45 void produce(T result) { argument
46 mResult = result;
H A DTask.h47 void setResult(T result) { argument
48 mFuture->produce(result);
/frameworks/base/media/mca/filterfw/native/core/
H A Dnative_frame.cpp46 NativeFrame* result = new NativeFrame(size_); local
48 result->WriteData(data_, 0, size_);
49 return result;
/frameworks/base/media/tests/omxjpegdecoder/
H A DStreamSource.cpp43 ssize_t result = mStream->read(data, size); local
45 return result;
/frameworks/base/services/input/
H A DInputManager.cpp54 status_t result = mDispatcherThread->run("InputDispatcher", PRIORITY_URGENT_DISPLAY); local
55 if (result) {
56 ALOGE("Could not start InputDispatcher thread due to error %d.", result);
57 return result;
60 result = mReaderThread->run("InputReader", PRIORITY_URGENT_DISPLAY);
61 if (result) {
62 ALOGE("Could not start InputReader thread due to error %d.", result);
65 return result;
72 status_t result = mReaderThread->requestExitAndWait(); local
73 if (result) {
[all...]

Completed in 644 milliseconds

1234567891011>>