/external/compiler-rt/lib/sanitizer_common/ |
sanitizer_allocator.cc | 128 void *res = allocated_current_; local 130 return res;
|
sanitizer_symbolizer.cc | 45 SymbolizedStack *res = new(mem) SymbolizedStack(); local 46 res->info.address = addr; 47 return res;
|
/external/compiler-rt/test/asan/TestCases/Linux/ |
nohugepage_test.cc | 36 ssize_t res = 0; local 44 res += got; 49 } while (size > 0 && res < sizeof(FileContents)); 50 if (res >= 0) 51 FileContents[res] = 0;
|
ptrace.cc | 78 int res; local 93 res = ptrace((enum __ptrace_request)__PTRACE_REQUEST, pid, __PTRACE_ARGS); 96 assert(!res); 105 res = ptrace((enum __ptrace_request)PTRACE_GETREGSET, pid, (void*)NT_FPREGSET, 110 res = ptrace((enum __ptrace_request)__PTRACE_FPREQUEST, pid, __PTRACE_FPARGS); 111 assert(!res); 116 res = ptrace(PTRACE_GETFPXREGS, pid, NULL, &fpxregs); 117 assert(!res);
|
/external/compiler-rt/test/dfsan/ |
write_callback.c | 40 int res = write(fileno(stdout), cur, bytes_left); local 41 assert (res >= 0); 42 cur += res; 43 bytes_left -= res;
|
/external/compiler-rt/test/msan/Linux/ |
xattr.cc | 63 ssize_t res = fun(*buf, buf_size); variable 64 if (res >= 0) { 65 assert(__msan_test_shadow(*buf, buf_size) == res); 66 return res; 87 ssize_t res = fun(attr_name, buf, buf_size); variable 88 if (res >= 0) { 89 assert(__msan_test_shadow(buf, buf_size) == res); variable
|
/external/curl/docs/examples/ |
xmlstream.c | 109 CURLcode res; local 133 res = curl_easy_perform(curl_handle); 134 if(res != CURLE_OK) { 136 curl_easy_strerror(res));
|
/external/curl/lib/ |
if2ip.c | 121 if2ip_result_t res = IF2IP_NOT_FOUND; local 151 if(res == IF2IP_NOT_FOUND) res = IF2IP_AF_NOT_SUPPORTED; 163 if(res == IF2IP_NOT_FOUND) 164 res = IF2IP_AF_NOT_SUPPORTED; 175 res = IF2IP_FOUND; 181 else if((res == IF2IP_NOT_FOUND) && 183 res = IF2IP_AF_NOT_SUPPORTED; 191 return res;
|
/external/curl/tests/libtest/ |
lib1501.c | 55 int res = 0; local 112 res = 100; 125 return res;
|
lib1506.c | 34 int res = 0; local 134 return res;
|
lib571.c | 101 int res; local 128 res = TEST_ERR_MAJOR_BAD; 143 res = curl_easy_perform(curl); 144 if(res) 149 res = TEST_ERR_MAJOR_BAD; 157 res = curl_easy_perform(curl); 158 if(res) 163 res = TEST_ERR_MAJOR_BAD; 171 res = curl_easy_perform(curl); 172 if(res) [all...] |
lib586.c | 131 int res; local 182 res = 0; 241 return res;
|
lib591.c | 42 int res = 0; local 61 if(res) { 63 return res; 135 res = msg->data.result; 148 return res;
|
lib597.c | 55 int res = 0; local 64 if(res) { 65 return res; 136 res = msg->data.result; 149 return res;
|
/external/deqp/framework/common/ |
tcuBilinearImageCompare.cpp | 64 deUint32 res = 0; local 66 res |= getChannel<0>(raw) << RGBA::RED_SHIFT; 67 res |= getChannel<1>(raw) << RGBA::GREEN_SHIFT; 68 res |= getChannel<2>(raw) << RGBA::BLUE_SHIFT; 69 res |= getChannel<3>(raw) << RGBA::ALPHA_SHIFT; 71 return RGBA(res); 104 deUint32 res = 0; 106 res |= interpolateChannel(fx1, fy1, getChannel<0>(p00), getChannel<0>(p01), getChannel<0>(p10), getChannel<0>(p11)) << RGBA::RED_SHIFT; 107 res |= interpolateChannel(fx1, fy1, getChannel<1>(p00), getChannel<1>(p01), getChannel<1>(p10), getChannel<1>(p11)) << RGBA::GREEN_SHIFT; 108 res |= interpolateChannel(fx1, fy1, getChannel<2>(p00), getChannel<2>(p01), getChannel<2>(p10), getCha (…) [all...] |
tcuStringTemplate.cpp | 56 ostringstream res; local 65 res << m_template.substr(curNdx, paramNdx - curNdx); 107 res << tmp; 110 res << val; 121 res << &m_template[curNdx]; 127 return res.str();
|
/external/deqp/framework/delibs/debase/ |
deString.c | 116 int res; local 122 res = _vsnprintf(string, size, format, list); 124 res = vsnprintf_s(string, size, _TRUNCATE, format, list); 127 res = vsnprintf(string, size, format, list); 130 return res; 141 int res; local 147 res = deVsprintf(string, size, format, list); 151 return res;
|
/external/deqp/framework/egl/wrapper/ |
eglwLibrary.cpp | 87 GenericFuncType res = (GenericFuncType)DE_NULL; local 89 res = (GenericFuncType)m_staticLib->getFunction(name); 91 if (!res && m_dynLib) 92 res = (GenericFuncType)m_dynLib->getFunction(name); 94 if (!res && m_getProcAddress) 95 res = (GenericFuncType)m_getProcAddress(name); 97 return res;
|
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/scripts_cvs/searchcvs/ |
parsecvs.php | 144 $res = mysql_query($sql) or die("$sql\n" . mysql_error() . "\n"); variable 145 return $res;
|
/external/eigen/Eigen/src/Eigen2Support/Geometry/ |
Scaling.h | 150 TransformType res; local 151 res.matrix().setZero(); 152 res.linear().diagonal() = coeffs(); 153 res.translation() = m_coeffs.cwise() * t.vector(); 154 res(Dim,Dim) = Scalar(1); 155 return res; 162 TransformType res = t; local 163 res.prescale(m_coeffs); 164 return res;
|
Translation.h | 93 TransformType res; local 94 res.matrix().setZero(); 95 res.linear() = linear; 96 res.translation() = linear * t.m_coeffs; 97 res.matrix().row(Dim).setZero(); 98 res(Dim,Dim) = Scalar(1); 99 return res; 154 TransformType res; local 155 res.matrix().setZero(); 156 res.linear().diagonal() = other.coeffs() 166 TransformType res; local 179 TransformType res = t; local [all...] |
/external/eigen/blas/ |
level1_cplx_impl.h | 27 // res = |Rex1| + |Imx1| + |Rex2| + |Imx2| + ... + |Rexn| + |Imxn|, where x is a vector of order n 48 Scalar* res = reinterpret_cast<Scalar*>(pres); local 50 if(*incx==1 && *incy==1) *res = (vector(x,*n).dot(vector(y,*n))); 51 else if(*incx>0 && *incy>0) *res = (vector(x,*n,*incx).dot(vector(y,*n,*incy))); 52 else if(*incx<0 && *incy>0) *res = (vector(x,*n,-*incx).reverse().dot(vector(y,*n,*incy))); 53 else if(*incx>0 && *incy<0) *res = (vector(x,*n,*incx).dot(vector(y,*n,-*incy).reverse())); 54 else if(*incx<0 && *incy<0) *res = (vector(x,*n,-*incx).reverse().dot(vector(y,*n,-*incy).reverse())); 67 Scalar* res = reinterpret_cast<Scalar*>(pres); local 69 if(*incx==1 && *incy==1) *res = (vector(x,*n).cwiseProduct(vector(y,*n))).sum(); 70 else if(*incx>0 && *incy>0) *res = (vector(x,*n,*incx).cwiseProduct(vector(y,*n,*incy))).sum() [all...] |
/external/eigen/test/ |
sparse_permutations.cpp | 27 OtherSparseMatrixType res; local 47 res = mat*p; 49 VERIFY(res.isApprox(res_d) && "mat*p"); 51 res = p*mat; 53 VERIFY(res.isApprox(res_d) && "p*mat"); 55 res = mat*p.inverse(); 57 VERIFY(res.isApprox(res_d) && "mat*inv(p)"); 59 res = p.inverse()*mat; 61 VERIFY(res.isApprox(res_d) && "inv(p)*mat"); 63 res = mat.twistedBy(p) [all...] |
/external/eigen/unsupported/test/ |
matrix_exponential.cpp | 14 double res = 1; local 16 res = res * (n-k+i+1) / (i+1); 17 return res;
|
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/ |
ResourceModule.java | 73 UResourceBundle res; field in class:ResourceModule 80 res = (UResourceBundle) UResourceBundle.getBundleInstance(baseName, localeName, 82 info = getFromTable(res, INFO, UResourceBundle.TABLE); 83 testData = getFromTable(res, TEST_DATA, UResourceBundle.TABLE); 94 return res.getKey(); 120 private UResourceBundle res; 133 res = theRes; 134 itr = ((ICUResourceBundle)res).getIterator(); 135 isStrRes = res.getType() == UResourceBundle.STRING; 150 preparedNextElement = prepareNext(res); [all...] |