HomeSort by relevance Sort by last modified time
    Searched refs:result (Results 126 - 150 of 27666) sorted by null

1 2 3 4 56 7 8 91011>>

  /art/test/402-optimizing-control-flow/src/
Main.java 29 int result = $opt$testIfEq1(42); local
30 expectEquals(42, result);
32 result = $opt$testIfEq2(42);
33 expectEquals(7, result);
35 result = $opt$testWhileLoop(42);
36 expectEquals(45, result);
38 result = $opt$testDoWhileLoop(42);
39 expectEquals(45, result);
41 result = $opt$testForLoop(42);
42 expectEquals(44, result);
    [all...]
  /art/test/505-simplifier-type-propagation/src/
Main.java 19 byte result = bar((byte)2);
20 if (result != 2) {
21 throw new Error("Expected 2, got " + result);
  /art/tools/
libcore_failures.txt 13 result: EXEC_FAILED,
19 result: EXEC_FAILED,
25 result: EXEC_FAILED,
34 result: EXEC_FAILED,
40 result: EXEC_FAILED,
49 result: EXEC_FAILED,
59 result: EXEC_FAILED,
65 result: EXEC_FAILED,
82 result: EXEC_FAILED,
97 result: EXEC_TIMEOUT
    [all...]
  /bionic/libc/bionic/
strtold.cpp 38 long double result; local
39 __strtorQ(s, end_ptr, FLT_ROUNDS, &result);
40 return result;
  /external/elfutils/libdw/
dwarf_begin_elf.c 68 check_section (Dwarf *result, GElf_Ehdr *ehdr, Elf_Scn *scn, bool inscngrp)
84 return result;
93 return result;
98 const char *scnname = elf_strptr (result->elf, ehdr->e_shstrndx,
105 Dwarf_Sig8_Hash_free (&result->sig8_hash);
107 free (result);
126 return result;
128 if (unlikely (result->sectiondata[cnt] != NULL))
130 return result;
147 Dwarf_Sig8_Hash_free (&result->sig8_hash)
312 Dwarf *result = (Dwarf *) calloc (1, sizeof (Dwarf) + mem_default_size); local
    [all...]
  /external/elfutils/src/
sectionhash.c 33 int result = strcmp (one->name, two->name); local
35 if (result == 0)
37 result = one->type - two->type;
39 if (result == 0)
43 result = diff < 0 ? -1 : diff == 0 ? 0 : 1;
45 if (result == 0)
47 result = one->entsize - two->entsize;
49 if (result == 0)
51 result = (one->grp_signature == NULL
57 if (result == 0
    [all...]
  /external/libffi/
libtool-ldflags 33 result=
52 result="$result -Xcompiler"
74 # will result in the same number of arguments being passed to
102 result="$result $quoted_arg"
106 echo "$result"
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/sched_getscheduler/
4-1.c 21 int result = -1; local
23 result = sched_getscheduler(0);
25 if (result != -1 && errno == 0) {
  /external/python/cpython2/Modules/_ctypes/libffi/
libtool-ldflags 33 result=
52 result="$result -Xcompiler"
74 # will result in the same number of arguments being passed to
102 result="$result $quoted_arg"
106 echo "$result"
  /external/python/cpython3/Modules/_ctypes/libffi/
libtool-ldflags 33 result=
52 result="$result -Xcompiler"
74 # will result in the same number of arguments being passed to
102 result="$result $quoted_arg"
106 echo "$result"
  /external/tensorflow/tensorflow/core/lib/core/
raw_coding.h 32 uint16 result; local
33 memcpy(&result, ptr, sizeof(result)); // gcc optimizes this to a plain load
34 return result;
44 uint32 result; local
45 memcpy(&result, ptr, sizeof(result)); // gcc optimizes this to a plain load
46 return result;
58 uint64 result; local
59 memcpy(&result, ptr, sizeof(result)); // gcc optimizes this to a plain loa
    [all...]
  /external/vboot_reference/firmware/lib/
utility.c 15 int result = 0; local
25 result |= *us1++ ^ *us2++;
27 return result != 0;
  /frameworks/av/media/libstagefright/codecs/amrnb/common/src/
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);
  /frameworks/wilhelm/src/ut/
slesutResult.c 22 /** \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)
54 return result < SLESUT_RESULT_MAX ? slesutResultStrings[result] : NULL;
  /toolchain/binutils/binutils-2.27/libiberty/
timeval-utils.c 44 struct timeval *@var{b}, struct timeval *@var{result})
46 Adds @var{a} to @var{b} and stores the result in @var{result}.
53 timeval_add (struct timeval *result,
56 result->tv_sec = a->tv_sec + b->tv_sec;
57 result->tv_usec = a->tv_usec + b->tv_usec;
58 if (result->tv_usec >= 1000000)
60 ++result->tv_sec;
61 result->tv_usec -= 1000000;
68 struct timeval *@var{b}, struct timeval *@var{result})
    [all...]
  /tools/apksig/src/main/java/com/android/apksig/internal/util/
ByteBufferUtils.java 29 byte[] result = new byte[buf.remaining()];
30 buf.get(result);
31 return result;
  /external/replicaisland/src/com/replica/replicaisland/
DebugLog.java 33 int result = 0; local
35 result = Log.v(tag, msg);
37 return result;
41 int result = 0; local
43 result = Log.v(tag, msg, tr);
45 return result;
49 int result = 0; local
51 result = Log.d(tag, msg);
53 return result;
57 int result = 0 local
65 int result = 0; local
73 int result = 0; local
81 int result = 0; local
89 int result = 0; local
97 int result = 0; local
105 int result = 0; local
113 int result = 0; local
    [all...]
  /art/test/445-checker-licm/src/
Main.java 34 int result = 0; local
36 result += staticField / 42;
38 return result;
51 int result = 0; local
54 result += staticField / 42;
57 return result;
67 int result = 0; local
73 result += staticField * i;
76 return result;
86 int result = 0 local
108 int result = 0; local
147 int result = 0; local
166 int result = 0; local
185 int result = 0; local
    [all...]
  /art/test/447-checker-inliner3/src/
Main.java 45 int result = 0; local
47 result += foo(i % 2 == 0);
49 return result;
59 int result = 0; local
61 result += 42;
63 return result;
  /art/test/478-checker-inline-noreturn/src/
Main.java 27 public static void assertIntEquals(int expected, int result) {
28 if (expected != result) {
29 throw new Error("Expected: " + expected + ", found: " + result);
34 int result; local
36 result = 42;
40 return result;
  /art/test/513-array-deopt/src/
Main.java 44 int[] result = bar(a); local
45 if (result.length != 0) {
46 throw new Error("Expected 0, got " + result.length);
49 result = foo(a);
50 if (result.length != 4) {
51 throw new Error("Expected 5, got " + result.length);
  /dalvik/libdex/
Leb128.h 33 int result = *(ptr++); local
35 if (result > 0x7f) {
37 result = (result & 0x7f) | ((cur & 0x7f) << 7);
40 result |= (cur & 0x7f) << 14;
43 result |= (cur & 0x7f) << 21;
51 result |= cur << 28;
58 return result;
68 int result = *(ptr++); local
70 if (result <= 0x7f)
    [all...]
  /external/clang/test/SemaCXX/
builtins-va_arg.cpp 16 int result = 0; local
27 result++;
32 result++;
43 return result;
49 int result = test_vprintf(fmt, ap); local
51 return result;
  /external/libchrome/base/process/
memory_stubs.cc 34 bool UncheckedMalloc(size_t size, void** result) {
35 *result = malloc(size);
36 return *result != nullptr;
39 bool UncheckedCalloc(size_t num_items, size_t size, void** result) {
40 *result = calloc(num_items, size);
41 return *result != nullptr;
  /external/tensorflow/tensorflow/core/common_runtime/gpu/
gpu_init.cc 34 auto result = gpu::MultiPlatformManager::PlatformWithName("CUDA"); local
35 if (!result.ok()) {
36 return StreamExecutorUtil::ConvertStatus(result.status());
43 auto result = gpu::MultiPlatformManager::PlatformWithName("CUDA"); local
44 if (!result.ok()) {
49 return result.ValueOrDie();

Completed in 375 milliseconds

1 2 3 4 56 7 8 91011>>