Searched defs:result (Results 1 - 25 of 523) sorted by relevance

1234567891011>>

/frameworks/compile/llvm-ndk-cc/tests/P_hello/
H A Dbar.c2 int result = 0; local
4 result += 1;
6 return result;
/frameworks/av/media/libstagefright/codecs/amrnb/common/src/
H A Dround.cpp48 Created a new return variable result.
110 result = MS 16 bits of rounded input L_var1.
189 Word16 result; local
192 result = (Word16)(L_var1 >> 16);
194 return (result);
H A Dl_shr_r.cpp41 function return value name from "L_var_out" to "result".
95 result = Shifted result w/ rounding (Word32)
109 the result. The result is saturated in case of underflows or overflows, i.e.,
195 Word32 result; local
199 result = 0;
203 result = L_shr(L_var1, var2, pOverflow);
209 result++;
213 return (result);
[all...]
H A Dlog2.cpp118 positive. If L_x is negative or zero, the result is 0.
171 Word32 result; local
175 result = L_x << exp;
176 Log2_norm(result, exp, pExponent, pFraction);
H A Dshr.cpp114 product = Shifted result limited to 16 bits (Word16)
127 -var2 with sign extension. Saturate the result in case of underflows or
207 register Word16 result; local
216 result = ((var1 < 0) ? -1 : 0);
222 result = (~((~var1) >> var2));
226 result = (var1 >> var2);
241 result = (Word16)(temp_res);
243 if (temp_res != (Word32) result)
246 result = ((var1 > 0) ? MAX_16 : MIN_16);
253 result
[all...]
/frameworks/wilhelm/src/ut/
H A DslesutResult.c22 /** \brief Maximum result return code */
26 /** \brief Array of strings correponding to each result code */
49 /** \brief Convert a result code to a string or NULL. */
51 const char *slesutResultToString(SLresult result) argument
54 return result < SLESUT_RESULT_MAX ? slesutResultStrings[result] : NULL;
/frameworks/compile/mclinker/lib/LD/
H A DResolveInfoFactory.cpp20 entry_type* result = static_cast<entry_type*>( local
22 if (NULL == result)
25 new (result) entry_type();
26 std::memcpy(result->m_Name, pKey.data(), pKey.size());
27 result->m_Name[pKey.size()] = '\0';
28 result->m_BitField &= ~ResolveInfo::RESOLVE_MASK;
29 result->m_BitField |= (pKey.size() << ResolveInfo::NAME_LENGTH_OFFSET);
30 return result;
/frameworks/base/services/jni/
H A Donload.cpp44 jint result = -1; local
48 return result;
/frameworks/compile/libbcc/runtime/lib/
H A Dashldi3.c26 dwords result; local
30 result.s.low = 0;
31 result.s.high = input.s.low << (b - bits_in_word);
37 result.s.low = input.s.low << b;
38 result.s.high = (input.s.high << b) | (input.s.low >> (bits_in_word - b));
40 return result.all;
H A Dashlti3.c28 twords result; local
32 result.s.low = 0;
33 result.s.high = input.s.low << (b - bits_in_dword);
39 result.s.low = input.s.low << b;
40 result.s.high = (input.s.high << b) | (input.s.low >> (bits_in_dword - b));
42 return result.all;
H A Dashrdi3.c26 dwords result; local
30 /* result.s.high = input.s.high < 0 ? -1 : 0 */
31 result.s.high = input.s.high >> (bits_in_word - 1);
32 result.s.low = input.s.high >> (b - bits_in_word);
38 result.s.high = input.s.high >> b;
39 result.s.low = (input.s.high << (bits_in_word - b)) | (input.s.low >> b);
41 return result.all;
H A Dashrti3.c28 twords result; local
32 /* result.s.high = input.s.high < 0 ? -1 : 0 */
33 result.s.high = input.s.high >> (bits_in_dword - 1);
34 result.s.low = input.s.high >> (b - bits_in_dword);
40 result.s.high = input.s.high >> b;
41 result.s.low = (input.s.high << (bits_in_dword - b)) | (input.s.low >> b);
43 return result.all;
H A Dlshrdi3.c26 udwords result; local
30 result.s.high = 0;
31 result.s.low = input.s.high >> (b - bits_in_word);
37 result.s.high = input.s.high >> b;
38 result.s.low = (input.s.high << (bits_in_word - b)) | (input.s.low >> b);
40 return result.all;
H A Dlshrti3.c28 utwords result; local
32 result.s.high = 0;
33 result.s.low = input.s.high >> (b - bits_in_dword);
39 result.s.high = input.s.high >> b;
40 result.s.low = (input.s.high << (bits_in_dword - b)) | (input.s.low >> b);
42 return result.all;
/frameworks/compile/libbcc/runtime/lib/ppc/
H A Dfloatditf.c30 DD result; local
32 result.s.hi = high_addend + low.d;
33 result.s.lo = (high_addend - result.s.hi) + low.d;
35 return result.ld;
/frameworks/compile/mclinker/lib/MC/
H A DContextFactory.cpp27 LDContext* result = find(pPath); local
28 if (0 == result) {
29 result = UniqueGCFactoryBase<sys::fs::Path, LDContext, 0>::allocate();
30 new (result) LDContext();
31 f_KeyMap.insert(std::make_pair(pPath, result));
33 return result;
38 LDContext* result = allocate(); local
39 new (result) LDContext();
40 return result;
/frameworks/native/opengl/tools/glgen/stubs/gles11/
H A DglGetProgramInfoLog.cpp16 jstring result = _env->NewStringUTF(buf); local
18 return result;
H A DglGetShaderInfoLog.cpp16 jstring result = _env->NewStringUTF(buf); local
18 return result;
/frameworks/wilhelm/src/android/
H A DOutputMix_to_android.cpp30 SLresult result = SL_RESULT_SUCCESS; local
62 return result;
/frameworks/av/media/libstagefright/codecs/amrnb/common/include/
H A Dl_add.h113 Word32 result; local
118 QADD result, L_var1, L_var2 local
120 return(result);
129 Word32 result; local
134 : "=r"(result)
137 return (result);
H A Dl_mult.h111 Word32 result; local
119 QADD result, product, product local
122 return (result);
131 Word32 result; local
142 : "=r"(result)
146 return(result);
H A Dl_sub.h111 Word32 result; local
117 QSUB result, L_var1, L_var2 local
120 return(result);
130 Word32 result; local
135 : "=r"(result)
139 return (result);
/frameworks/base/core/java/android/accounts/
H A DAccountAuthenticatorActivity.java31 * The activity then sets the result that is to be handed to the response via
33 * This result will be sent as the result of the request when the activity finishes. If this
42 * Set the result that is to be sent as the result of the request that caused this
43 * Activity to be launched. If result is null or this method is never called then
45 * @param result this is returned as the result of the AbstractAccountAuthenticator request
47 public final void setAccountAuthenticatorResult(Bundle result) { argument
48 mResultBundle = result;
[all...]
/frameworks/base/core/java/android/webkit/
H A DJsPromptResult.java23 * JsPromptResult instance as a parameter. This parameter is used to return the result of this user
28 // String result of the prompt
34 public void confirm(String result) { argument
35 mStringResult = result;
/frameworks/base/core/jni/android/graphics/
H A DPorterDuff.cpp46 int result = AndroidRuntime::registerNativeMethods(env, local
49 return result;

Completed in 443 milliseconds

1234567891011>>