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

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/third_party/mesa/src/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/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...]
  /hardware/invensense/60xx/mlsdk/mllite/
mldmp.c 68 * result = inv_dmp_open( );
69 * if (INV_SUCCESS != result) {
80 inv_error_t result; local
95 result = inv_state_transition(INV_STATE_DMP_OPENED);
96 if (result) {
97 LOG_RESULT_LOCATION(result);
98 return result;
101 result = inv_dl_open(inv_get_serial_handle());
102 if (result) {
103 LOG_RESULT_LOCATION(result);
179 inv_error_t result; local
216 inv_error_t result; local
258 inv_error_t result; local
    [all...]
mlarray_legacy.c 90 inv_error_t result; local
93 result = inv_get_gyro(data);
96 result = inv_get_accel(data);
99 result = inv_get_temperature(data);
102 result = inv_get_rot_mat(data);
105 result = inv_get_quaternion(data);
108 result = inv_get_linear_accel(data);
111 result = inv_get_linear_accel_in_world(data);
114 result = inv_get_gravity(data);
117 result = inv_get_angular_velocity(data)
388 inv_error_t result; local
510 inv_error_t result; local
560 inv_error_t result; local
    [all...]
  /external/icu4c/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;
  /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...]
IntConstantRemainderBenchmark.java 25 int result = 1; local
27 result %= 2;
29 return result;
32 int result = 1; local
34 result %= 8;
36 return result;
40 int result = 1;
42 result %= 10;
44 return result;
47 int result = 1
55 int result = 1; local
62 int result = 1; local
    [all...]
StringIsEmptyBenchmark.java 24 boolean result = true;
26 result &= !("xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx".isEmpty());
28 if (!result) throw new RuntimeException();
32 boolean result = true;
34 result &= ("".isEmpty());
36 if (!result) throw new RuntimeException();
40 boolean result = true;
42 result &= !("xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx".length() == 0);
44 if (!result) throw new RuntimeException();
48 boolean result = true
    [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;
xmemdup0.c 40 char *result = xcharalloc (s + 1); local
41 memcpy (result, p, s);
42 result[s] = 0;
43 return result;
  /external/valgrind/main/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;
  /hardware/qcom/media/mm-video-v4l2/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/chromium_org/content/browser/renderer_host/input/
web_input_event_builders_android.cc 28 WebKeyboardEvent result; local
30 result.type = type;
31 result.modifiers = modifiers;
32 result.timeStampSeconds = time_sec;
35 UpdateWindowsKeyCodeAndKeyIdentifier(&result, windows_key_code);
36 result.modifiers |= GetLocationModifiersFromWindowsKeyCode(windows_key_code);
37 result.nativeKeyCode = keycode;
38 result.unmodifiedText[0] = unicode_character;
39 if (result.windowsKeyCode == ui::VKEY_RETURN) {
43 result.unmodifiedText[0] = '\r'
59 WebMouseEvent result; local
82 WebMouseWheelEvent result; local
122 WebGestureEvent result; local
    [all...]
  /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/chromium_org/third_party/WebKit/Source/web/
WebTextCheckingResult.cpp 42 TextCheckingResult result; local
43 result.decoration = static_cast<TextDecorationType>(decoration);
44 result.location = location;
45 result.length = length;
46 result.replacement = replacement;
47 result.hash = hash;
48 if (result.decoration == TextDecorationTypeGrammar) {
53 result.details.append(detail);
56 return 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...]
  /packages/apps/Dialer/src/com/android/dialer/dialpad/
SmartDialPrefix.java 131 final ArrayList<String> result = Lists.newArrayList(); local
146 result.add(currentIndexToken.toString());
154 result.add(currentIndexToken.toString());
156 return result;
167 final ArrayList<String> result = Lists.newArrayList(); local
181 result.add(fullNameToken.toString());
192 final int recursiveNameStart = result.size();
193 int recursiveNameEnd = result.size();
202 result.add(initial + fullNames.get(j));
205 result.add(initial + result.get(j))
231 final ArrayList<String> result = Lists.newArrayList(); local
329 final HashSet<String> result = new HashSet<String>(); local
572 final HashSet<String> result = new HashSet<String>(); local
    [all...]

Completed in 1128 milliseconds

1 2 3 4 5 6 7 8 91011>>