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

1 2 3 4 5 6 7 8 91011>>

  /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;
  /external/webkit/Source/WebCore/css/
FontValue.cpp 33 String result("");
36 result += style->cssText();
38 if (!result.isEmpty())
39 result += " ";
40 result += variant->cssText();
43 if (!result.isEmpty())
44 result += " ";
45 result += weight->cssText();
48 if (!result.isEmpty())
49 result += " "
    [all...]
WebKitCSSTransformValue.cpp 47 String result; local
50 result += "translate(";
53 result += "translateX(";
56 result += "translateY(";
59 result += "rotate(";
62 result += "scale(";
65 result += "scaleX(";
68 result += "scaleY(";
71 result += "skew(";
74 result += "skewX("
    [all...]
  /hardware/invensense/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...]
IntConstantDivisionBenchmark.java 25 int result = 1; local
27 result /= 2;
29 return result;
32 int result = 1; local
34 result /= 8;
36 return result;
39 int result = 1; local
41 result /= 10;
43 return result;
46 int result = 1 local
53 int result = 1; local
60 int result = 1; local
67 int result = 1; local
75 int result = 1; local
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/skia/
TransformationMatrixSkia.cpp 40 SkMatrix result; local
42 result.setScaleX(WebCoreDoubleToSkScalar(a()));
43 result.setSkewX(WebCoreDoubleToSkScalar(c()));
44 result.setTranslateX(WebCoreDoubleToSkScalar(e()));
46 result.setScaleY(WebCoreDoubleToSkScalar(d()));
47 result.setSkewY(WebCoreDoubleToSkScalar(b()));
48 result.setTranslateY(WebCoreDoubleToSkScalar(f()));
51 result.setPerspX(0);
52 result.setPerspY(0);
53 result.set(SkMatrix::kMPersp2, SK_Scalar1)
60 SkMatrix result; 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;
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/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/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;
  /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...]
  /external/chromium/chrome/common/
chrome_paths_internal.h 17 bool GetDefaultUserDataDirectory(FilePath* result);
22 bool GetChromeFrameUserDataDirectory(FilePath* result);
29 // This will always fill in |result| with a directory, sometimes
31 void GetUserCacheDirectory(const FilePath& profile_dir, FilePath* result);
34 bool GetUserDocumentsDirectory(FilePath* result);
38 bool GetUserDownloadsDirectorySafe(FilePath* result);
42 bool GetUserDownloadsDirectory(FilePath* result);
45 bool GetUserDesktop(FilePath* result);
69 bool GetLocalLibraryDirectory(FilePath* result);
  /external/clang/test/PCH/
enum.c 13 int result = aRoundShape; local
14 return result;
  /external/elfutils/libdw/
dwarf_attr.c 60 dwarf_attr (die, search_name, result)
63 Dwarf_Attribute *result;
69 result->valp = __libdw_find_attr (die, search_name, &result->code,
70 &result->form);
72 result->cu = die->cu;
74 return result->code == search_name ? result : NULL;

Completed in 2217 milliseconds

1 2 3 4 5 6 7 8 91011>>