/external/clang/test/Analysis/ |
lambdas-generalized-capture.cpp | 11 int result = lambda(); local 12 clang_analyzer_eval(result == 7); // expected-warning {{TRUE}} 39 int result = lambda(); local 40 clang_analyzer_eval(result == 8); // expected-warning {{TRUE}} 48 int result = lambda(); local 49 clang_analyzer_eval(result == 1); // expected-warning {{FALSE}} expected-warning {{TRUE}}
|
undef-buffers.c | 32 char result = buf[1]; // expected-warning{{undefined}} local 34 return result; 40 char result = buf[0]; // expected-warning{{undefined}} local 42 return result;
|
/external/clang/test/Parser/ |
builtin_classify_type.c | 15 int result; local 17 result = __builtin_classify_type(a); 18 result = __builtin_classify_type(b); 19 result = __builtin_classify_type(d); 20 result = __builtin_classify_type(s);
|
/external/clang/test/SemaCXX/ |
generic-selection.cpp | 31 enum { result = Arg | Or<Args...>::result }; enumerator in enum:Or::__anon8955 35 enum { result = Arg }; enumerator in enum:Or::__anon8956 40 result = Or<_Generic(Args(), int: 1, long: 2, short: 4, float: 8)...>::result enumerator in enum:TypeMask::__anon8957 44 static_assert(TypeMask<int, long, short>::result == 7, "fail"); 45 static_assert(TypeMask<float, short>::result == 12, "fail"); 46 static_assert(TypeMask<int, float, float>::result == 9, "fail");
|
/external/clang/test/SemaTemplate/ |
instantiate-call.cpp | 12 template<typename T, typename Result> 15 Result result = f0(t); local 24 template<typename T, typename Result> 27 Result &result = f0(t); // expected-error {{undeclared identifier}} \ local 38 template<typename T, typename Result> 41 Result &result = f0(t); local
|
instantiate-subscript.cpp | 16 template<typename T, typename U, typename Result> 19 Result &result = t[u]; // expected-error{{no viable overloaded operator[] for type}} local
|
/external/compiler-rt/lib/builtins/ |
floatdidf.c | 43 const double result = (high - twop52) + low.d; local 44 return result;
|
floatundidf.c | 45 const double result = (high.d - twop84_plus_twop52) + low.d; local 46 return result;
|
mulodi4.c | 28 di_int result = a * b; local 33 return result; 39 return result; 46 return result; 57 return result;
|
mulosi4.c | 28 si_int result = a * b; local 33 return result; 39 return result; 46 return result; 57 return result;
|
muloti4.c | 30 ti_int result = a * b; local 35 return result; 41 return result; 48 return result; 59 return result;
|
/external/compiler-rt/lib/builtins/ppc/ |
fixunstfdi.c | 22 uint64_t result = hibits.x & UINT64_C(0x000fffffffffffff); /* mantissa(hi) */ local 23 result |= UINT64_C(0x0010000000000000); /* matissa(hi) with implicit bit */ 24 result <<= 11; /* mantissa(hi) left aligned in the int64 field. */ 47 result += tailMantissa; 50 result >>= (63 - unbiasedHeadExponent); 51 return result;
|
floatunditf.c | 34 DD result; local 36 result.s.hi = high_addend + low.d; 37 result.s.lo = (high_addend - result.s.hi) + low.d; 39 return result.ld;
|
/external/compiler-rt/test/asan/TestCases/ |
speculative_load2.cc | 20 short result = u->q == 0 ? 0 : u->w.y; local 22 return result;
|
/external/curl/src/ |
tool_xattr.c | 63 CURLcode result = curl_easy_getinfo(curl, mappings[i].info, &value); local 64 if(!result && value) {
|
/external/curl/tests/libtest/ |
lib1514.c | 58 CURLcode result = CURLE_OK; local 72 result = curl_easy_perform(curl); 79 return (int)result;
|
/external/dagger2/core/src/main/java/dagger/internal/ |
MapFactory.java | 54 Map<K, V> result = newLinkedHashMapWithExpectedSize(contributingMap.size()); local 56 result.put(entry.getKey(), entry.getValue().get()); 58 return unmodifiableMap(result);
|
/external/deqp/execserver/ |
xsPosixFileReader.cpp | 73 deFileResult result = deFile_read(m_file, &tmpBuf[0], (deInt64)tmpBuf.size(), &numRead); local 75 if (result == DE_FILERESULT_SUCCESS) 89 else if (result == DE_FILERESULT_END_OF_FILE || 90 result == DE_FILERESULT_WOULD_BLOCK)
|
/external/deqp/framework/delibs/debase/ |
deInt32.c | 76 * result = exp2(exp) * rcp / (1<<DE_RCP_FRAC_BITS). 154 deUint32 result; local 162 result = s_rcpLUT[lookupNdx]; 165 tmp = deSafeMuluAsr32(result, normalized, 31); 166 result = deSafeMuluAsr32(result, (2u<<DE_RCP_FRAC_BITS) - tmp, DE_RCP_FRAC_BITS); 169 tmp = deSafeMuluAsr32(result, normalized, 31); 170 result = deSafeMuluAsr32(result, (2u<<DE_RCP_FRAC_BITS) - tmp, DE_RCP_FRAC_BITS); 173 *rcp = result; [all...] |
/external/dng_sdk/source/ |
dng_orientation.cpp | 198 dng_orientation result; local 200 result.SetAdobe (((4 - x) & 3) | (x & 4)); 202 return result; 225 dng_orientation result; local 227 result.SetAdobe (((x + y) & 3) | (x & 4)); 229 return result;
|
/external/e2fsprogs/lib/blkid/ |
llseek.c | 65 unsigned long, offset_low, blkid_loff_t *, result, 71 blkid_loff_t result; local 77 &result, origin); 81 &result, origin); 83 return (retval == -1 ? (blkid_loff_t) retval : result); 92 blkid_loff_t result; local 104 result = my_llseek(fd, offset, whence); 105 if (result == -1 && errno == ENOSYS) { 113 return result;
|
/external/e2fsprogs/lib/ext2fs/ |
llseek.c | 66 unsigned long, offset_low,ext2_loff_t *,result, 72 ext2_loff_t result; local 81 &result, origin); 82 return (retval == -1 ? (ext2_loff_t) retval : result); 95 ext2_loff_t result; 101 result = my_llseek (fd, offset, origin); 102 if (result == -1 && errno == ENOSYS) { 114 return result;
|
/external/easymock/src/org/easymock/internal/ |
ExpectedInvocationAndResult.java | 26 Result result;
field in class:ExpectedInvocationAndResult 29 Result result) {
31 this.result = result;
38 public Result getResult() {
39 return result;
|
/external/eigen/bench/btl/generic_bench/timers/ |
mixed_perf_analyzer.hh | 49 double result=0.0; local 51 result=_ppa.eval_mflops(size); 55 result=_x86pa.eval_mflops(size); 58 return result;
|
/external/eigen/test/eigen2/ |
eigen2_product_large.cpp | 41 MatrixXf result = mat1.row(2)*mat2.transpose(); local 42 VERIFY_IS_APPROX(result, (mat1.row(2)*mat2.transpose()).eval());
|