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

1234567891011>>

/frameworks/base/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/base/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/base/services/jni/
H A Donload.cpp43 jint result = -1; local
47 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/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 DCacheLoader.java36 * @param result CacheResult used as the source for the content.
38 CacheLoader(LoadListener loadListener, CacheManager.CacheResult result) { argument
43 mCacheResult = result;
H A DJsPromptResult.java23 * JsPromptResult parameter. This parameter is used to return a result to
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;
H A DRasterizer.cpp45 int result = AndroidRuntime::registerNativeMethods(env, "android/graphics/Rasterizer", methods, local
47 return result;
/frameworks/base/media/libstagefright/codecs/aacdec/
H A Dpv_div.cpp34 Quotient *result structure that hold result and shift factor
104 void pv_div(Int32 x, Int32 y, Quotient *result) argument
116 result->shift_factor = 0; /* default */
158 result->shift_factor = i - j;
175 result->quotient = flag ? -i : i;
179 result->quotient = 0;
/frameworks/base/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/tools/localize/
H A DPerforce_test.cpp7 string result; local
8 int err = Perforce::RunCommand("p4 help csommands", &result, true);
9 printf("err=%d result=[[%s]]\n", err, result.c_str());
44 string result; local
45 int err = Perforce::GetFile("//device/Makefile", "296", &result, true);
46 printf("err=%d result=[[%s]]\n", err, result.c_str());
H A Dmerge_res_and_xliff_test.cpp35 ValuesFile* result = merge_res_and_xliff(en_current, xx_current, xx_old, local
38 if (result == NULL) {
39 fprintf(stderr, "merge_test: result is NULL\n");
43 printf("======= RESULT =======\n%s===============\n", result->ToString().c_str());

Completed in 358 milliseconds

1234567891011>>