HomeSort by relevance Sort by last modified time
    Searched defs:result (Results 76 - 100 of 11438) sorted by null

1 2 34 5 6 7 8 91011>>

  /frameworks/av/media/libstagefright/codecs/amrnb/common/src/
l_shr_r.cpp 41 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...]
round.cpp 48 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);
  /libcore/luni/src/test/java/libcore/xml/
KxmlPullParserDtdTest.java 25 KXmlParser result = new KXmlParser(); local
26 result.setFeature(XmlPullParser.FEATURE_PROCESS_DOCDECL, true);
27 return result;
  /art/test/025-access-controller/src/
Main.java 25 Integer result = AccessController.doPrivileged(priv); local
26 System.out.println("AccessControllerTest: got " + result);
  /art/test/112-double-math/src/
Main.java 23 double result = cond_neg_double(-1.0d, true); local
25 if (Double.doubleToRawLongBits(result) == 0x3ff0000000000000L) {
28 System.out.println("cond_neg_double FAILED " + result);
  /bionic/libc/bionic/
gethostname.c 36 int result = 0; local
38 result = uname(&name);
39 if (result != -1)
45 result = -1;
50 return result;
pthread_sigmask.cpp 37 int result = sigprocmask(how, new_set, old_set); local
38 return (result == -1) ? errno : 0;
sigaction.cpp 61 int result = __rt_sigaction(signal, local
75 return result;
sigpending.cpp 37 int result = __rt_sigpending(&set, sizeof(set)); local
38 if (result != -1) {
41 return result;
  /bionic/tests/
sstream_test.cpp 28 T result = T(0); local
29 ss >> result; local
30 EXPECT_FALSE(ss.bad()) << value << ' ' << int64_t(result);
31 EXPECT_EQ(should_overflow, ss.fail()) << value << ' ' << int64_t(result);
33 ASSERT_EQ(expected, result) << value;
  /dalvik/libdex/
Leb128.cpp 35 int result = readUnsignedLeb128(pStream); local
42 return result;
57 int result = readSignedLeb128(pStream); local
64 return result;
  /device/asus/tilapia/recovery/
recovery_updater.c 42 int result = -1; local
53 result = DownloadFiles(modemImg);
55 if (result < 0) {
62 return StringValue(strdup(result >= 0 ? "t" : ""));
  /external/aac/libFDK/include/mips/
clz_mips.h 98 INT result; local
99 __asm__ ("clz %0,%1" : "=d" (result) : "d" (value));
101 return result;
109 INT result; local
110 __asm__ ("clz %[result], %[value]" : [result] "=r" (result) : [value] "r" (value)) ;
112 return result;
  /external/bison/lib/
asnprintf.c 28 char *result; local
31 result = vasnprintf (resultbuf, lengthp, format, args);
33 return result;
mbsrchr.c 36 const char *result = NULL; local
43 result = mbui_cur_ptr (iter);
45 return (char *) result;
msvc-nothrow.c 35 intptr_t result; local
39 result = _get_osfhandle (fd);
43 result = (intptr_t) INVALID_HANDLE_VALUE;
47 return result;
raise.c 38 int result; local
42 result = raise (sig);
46 result = -1;
51 return result;
  /external/chromium_org/base/allocator/
unittest_utils.cc 11 int result; local
14 result = _vsnprintf(buffer, count, format, args);
16 return result;
  /external/chromium_org/base/i18n/
case_conversion_unittest.cc 18 string16 result = base::i18n::ToLower(mixed); local
19 EXPECT_EQ(expected_lower, result);
21 result = base::i18n::ToUpper(mixed);
22 EXPECT_EQ(expected_upper, result);
  /external/chromium_org/base/process/
kill.cc 14 bool result = true; local
18 result &= KillProcessById(entry->pid(), exit_code, true);
20 result &= KillProcess(entry->pid(), exit_code, true);
23 return result;
  /external/chromium_org/build/config/linux/
sysroot_ld_path.py 18 result = subprocess.check_output([sys.argv[1], sys.argv[2]]).strip() variable
20 print '"' + result + '"'
  /external/chromium_org/cc/base/
scoped_ptr_algorithm.h 18 ForwardIterator result = first; local
21 container->swap(first, result);
22 ++result;
25 return result;
  /external/chromium_org/chrome/browser/ui/apps/
apps_metro_handler_win.cc 37 chrome::MessageBoxResult result = chrome::ShowMessageBox( local
43 return result == chrome::MESSAGE_BOX_RESULT_YES;
  /external/chromium_org/chrome/browser/ui/tabs/
pinned_tab_test_utils.cc 19 std::string result; local
22 result += " ";
23 result += TabToString(values[i]);
25 return result;
  /external/chromium_org/chrome/browser/ui/views/tabs/
window_finder_ash.cc 34 aura::Window* result = local
36 if (result)
37 return result;

Completed in 572 milliseconds

1 2 34 5 6 7 8 91011>>