HomeSort by relevance Sort by last modified time
    Searched refs:result (Results 1 - 25 of 13339) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/mesa3d/src/glsl/glcpp/tests/
067-nested-ifdef-ifndef.c 4 #define result success macro
8 #undef result macro
9 #define result failure macro
12 result
16 #undef result macro
17 #define result failure macro
20 result
22 #undef result macro
23 #define result failure macro
26 #undef result macro
27 #define result macro
32 #undef result macro
33 #define result macro
36 #undef result macro
37 #define result macro
    [all...]
  /external/clang/test/CodeGen/
2003-11-26-PointerShift.c 3 unsigned long do_csum(const unsigned char *buff, int len, unsigned long result) {
4 if (2 & (unsigned long) buff) result += 1;
5 return result;
nvptx-inlineasm.c 5 int result; local
13 "}" : "=r"(result) : "r"(a));
14 return result;
builtins-overflow.c 18 unsigned result; local
19 if (__builtin_uadd_overflow(x, y, &result))
21 return result;
27 unsigned long result; local
28 if (__builtin_uaddl_overflow(x, y, &result))
30 return result;
36 unsigned long long result; local
37 if (__builtin_uaddll_overflow(x, y, &result))
39 return result;
45 unsigned result; local
54 unsigned long result; local
63 unsigned long long result; local
72 unsigned result; local
81 unsigned long result; local
90 unsigned long long result; local
99 int result; local
108 long result; local
117 long long result; local
126 int result; local
135 long result; local
144 long long result; local
153 int result; local
162 long result; local
171 long long result; local
    [all...]
  /external/vboot_reference/tests/tpm_lite/
startup.c 14 uint32_t result; local
16 result = TlclStartup();
17 if (result != 0) {
18 printf("tpm startup failed with 0x%x\n", result);
20 result = TlclGetFlags(NULL, NULL, NULL);
21 if (result != 0) {
22 printf("tpm getflags failed with 0x%x\n", result);
26 result = TlclGetFlags(NULL, NULL, NULL);
27 if (result != 0) {
28 printf("tpm getflags failed with 0x%x\n", result);
    [all...]
  /external/icu/icu4c/source/common/unicode/
ustringtrie.h 68 * Same as (result!=USTRINGTRIE_NO_MATCH).
69 * @param result A result from BytesTrie::first(), UCharsTrie::next() etc.
73 #define USTRINGTRIE_MATCHES(result) ((result)!=USTRINGTRIE_NO_MATCH)
76 * Equivalent to (result==USTRINGTRIE_INTERMEDIATE_VALUE || result==USTRINGTRIE_FINAL_VALUE) but
77 * this macro evaluates result exactly once.
78 * @param result A result from BytesTrie::first(), UCharsTrie::next() etc
    [all...]
  /bionic/libc/bionic/
getpriority.c 34 int result = __getpriority(which, who); local
36 return ( result < 0 ) ? result : 20-result;
  /external/valgrind/memcheck/tests/s390x/
ltgjhe.c 6 int result; local
22 :"=d" (result)
26 if (result)
37 :"=d" (result)
41 if (result)
52 :"=d" (result)
56 if (result)
67 :"=d" (result)
71 if (result)
  /libcore/benchmarks/src/benchmarks/regression/
IntConstantMultiplicationBenchmark.java 25 int result = 1; local
27 result *= 6;
29 return result;
32 int result = 1; local
34 result *= 7;
36 return result;
39 int result = 1; local
41 result *= 8;
43 return result;
46 int result = 1 local
53 int result = 1; local
60 int result = 1; local
67 int result = 1; local
74 int result = 1; local
81 int result = 1; local
88 int result = 1; local
96 int result = 1; local
    [all...]
  /external/easymock/src/org/easymock/
LogicalOperator.java 23 public boolean matchResult(int result) {
24 return result < 0;
28 public boolean matchResult(int result) {
29 return result <= 0;
33 public boolean matchResult(int result) {
34 return result == 0;
38 public boolean matchResult(int result) {
39 return result >= 0;
43 public boolean matchResult(int result) {
44 return result > 0;
    [all...]
  /external/bison/lib/
itold.c 24 _Qp_itoq (long double *result, int a)
27 *result = (double) a;
dirname.c 34 char *result = mdir_name (file); local
35 if (!result)
37 return result;
  /external/lldb/test/functionalities/command_script/import/thepackage/
TPunitA.py 1 def command(debugger, command, result, internal_dict):
2 result.PutCString(u"hello world A")
TPunitB.py 1 def command(debugger, command, result, internal_dict):
2 result.PutCString(u"hello world B")
  /external/valgrind/memcheck/tests/x86/
pushfpopf.stdout.exp 1 fooble: result is 22
  /hardware/qcom/media/mm-video-legacy/vidc/venc/test/
camera_test.cpp 40 int result = 0; local
51 return result;
56 int result = 0; local
63 return result;
68 int result = 0; local
75 return result;
80 int result = 0; local
89 return result;
  /libcore/expectations/
taggedtests.txt 8 result: SUCCESS,
  /external/jarjar/src/main/com/tonicsystems/jarjar/
Rule.java 21 private String result; field in class:Rule
23 public void setResult(String result) {
24 this.result = result;
28 return result;
  /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;
  /bionic/tests/libs/
dlsym_from_this_functions.cpp 25 int* result = static_cast<int*>(dlsym(RTLD_DEFAULT, "test_dlsym_symbol")); local
27 if (result == nullptr) {
30 return result;
35 int* result = static_cast<int*>(dlsym(RTLD_DEFAULT, "test_dlsym_symbol2")); local
37 if (result == nullptr) {
40 return result;
45 int* result = static_cast<int*>(dlsym(RTLD_NEXT, "test_dlsym_symbol")); local
47 if (result == nullptr) {
50 return result;
  /external/elfutils/src/libdw/
dwarf_attr.c 39 dwarf_attr (die, search_name, result)
42 Dwarf_Attribute *result;
48 result->valp = __libdw_find_attr (die, search_name, &result->code,
49 &result->form);
51 result->cu = die->cu;
53 return result->valp != NULL && result->code == search_name ? result : NULL;
  /art/test/704-multiply-accumulate/src/
Main.java 25 public static void expectEquals(long expected, long result) {
26 if (expected != result) {
27 throw new Error("Expected: " + expected + ", found: " + result);
31 public static void expectEquals(int expected, int result) {
32 if (expected != result) {
33 throw new Error("Expected: " + expected + ", found: " + result);
38 int result = 0; local
47 result += i*i;
48 result = i - tmp;
50 expectEquals(result, -891)
99 long result = 0; local
    [all...]
  /art/test/507-referrer/src/
Main.java 21 int result = InPackage.foo(); local
22 if (result != 42) {
23 throw new Error("Expected 42, got " + result);
  /art/test/508-referrer-method/src/
Main.java 21 int result = p1.InPackage.$inline$method(); local
22 if (result != 42) {
23 throw new Error("Expected 42, got " + result);
  /libcore/benchmarks/src/benchmarks/
MultiplicationBenchmark.java 28 int result = 1; local
30 result *= 10;
32 return result;
35 int result = 1; local
37 result *= 8;
39 return result;
42 int result = 1; local
45 result *= factor;
47 return result;
50 int result = 1 local
    [all...]

Completed in 403 milliseconds

1 2 3 4 5 6 7 8 91011>>