Searched refs:abs (Results 226 - 250 of 1261) sorted by relevance

1234567891011>>

/external/clang/lib/Headers/
H A D__clang_cuda_cmath.h47 __DEVICE__ long long abs(long long __n) { return ::llabs(__n); } function
48 __DEVICE__ long abs(long __n) { return ::labs(__n); } function
49 __DEVICE__ float abs(float __x) { return ::fabsf(__x); } function
50 __DEVICE__ double abs(double __x) { return ::fabs(__x); } function
/external/clang/tools/clang-format/
H A Dclang-format-sublime.py39 region_length = abs(region.b - region.a)
/external/crcalc/src/com/hp/creals/
H A DCR.java239 int abs_n = Math.abs(n);
292 long bits = Double.doubleToLongBits(Math.abs(n));
360 // 2**(n-1) < abs(x) < 2**(n+1)
383 if (max_appr.abs().compareTo(big1) <= 0) {
453 * the maximum of (abs(this)+abs(x))*(2**r) and 2**a
579 String scaled_string = scaled_int.abs().toString(radix);
658 String scaled_string = scaled_int.abs().toString(radix);
665 scaled_string = scaled_int.abs().toString(radix);
845 public CR abs() { method in class:CR
[all...]
/external/eigen/Eigen/src/Core/
H A DStableNorm.h60 using std::abs;
103 RealScalar ax = abs(it.value());
160 using std::abs;
181 return abs(this->coeff(0));
/external/eigen/bench/btl/actions/
H A Daction_cholesky.hh47 X_stl[i][i] = std::abs(X_stl[i][i]) * 1e2 + 100;
/external/eigen/blas/
H A Dlevel1_cplx_impl.h36 else return make_vector(x,*n,std::abs(*incx)).unaryExpr<scalar_norm1_op>().sum();
106 StridedVectorType vx(make_vector(x,*n,std::abs(*incx)));
107 StridedVectorType vy(make_vector(y,*n,std::abs(*incy)));
130 else make_vector(x,*n,std::abs(*incx)) *= alpha;
/external/eigen/demos/opengl/
H A Dtrackball.cpp26 if ( std::abs(cos_angle) < 1.0 )
/external/eigen/test/
H A Drvalue_types.cpp38 Scalar abs_diff = (m-n).array().abs().sum();
/external/hamcrest/hamcrest-library/src/main/java/org/hamcrest/number/
H A DBigDecimalCloseTo.java43 return item.subtract(value, MathContext.DECIMAL128).abs().subtract(delta, MathContext.DECIMAL128).stripTrailingZeros();
/external/kernel-headers/original/uapi/linux/
H A Dinput.h154 #define EVIOCGABS(abs) _IOR('E', 0x40 + (abs), struct input_absinfo) /* get abs value/limits */
155 #define EVIOCSABS(abs) _IOW('E', 0xc0 + (abs), struct input_absinfo) /* set abs value/limits */
/external/libcxx/test/std/numerics/complex.number/complex.transcendentals/
H A Dpow_scalar_complex.pass.cpp27 assert(std::abs(imag(c)) < 1.e-6);
/external/libcxx/test/std/thread/thread.threads/thread.thread.this/
H A Dsleep_for.pass.cpp56 assert(std::abs(ns.count()) < err.count());
/external/libvpx/libvpx/vp8/encoder/
H A Dmr_dissim.c175 mmvx = VPXMAX(abs(min_mvx - here->mbmi.mv.as_mv.row),
176 abs(max_mvx - here->mbmi.mv.as_mv.row));
177 mmvy = VPXMAX(abs(min_mvy - here->mbmi.mv.as_mv.col),
178 abs(max_mvy - here->mbmi.mv.as_mv.col));
/external/llvm/lib/Support/
H A DFileUtilities.cpp139 if (AbsTolerance < std::abs(V1-V2)) {
143 Diff = std::abs(V1/V2 - 1.0);
145 Diff = std::abs(V2/V1 - 1.0);
152 << "abs. diff = " << std::abs(V1-V2) << " rel.diff = " << Diff << '\n'
153 << "Out of tolerance: rel/abs: " << RelTolerance << '/'
/external/ltp/testcases/misc/math/abs/
H A Dabs01.c25 * abs -- absolute integer value
28 * abs(3)
78 fprintf(temp, "abs of minimum integer failed.");
88 fprintf(temp, "abs(0) failed, returned %lld\n", i);
99 l = abs(k);
/external/ltp/testcases/open_posix_testsuite/conformance/interfaces/timer_create/
H A D1-1.c88 if (abs(tsleft.tv_sec - SLEEPDELTA) <= ACCEPTABLEDELTA) {
H A D10-1.c97 if (abs(ts_end.tv_sec - ts_start.tv_sec - TIMERSEC) <= ACCEPTABLEDELTA) {
H A D11-1.c97 if (abs(ts_end.tv_sec - ts_start.tv_sec - TIMERSEC) <= ACCEPTABLEDELTA) {
H A D7-1.c83 if (abs(tsleft.tv_sec - SLEEPDELTA) <= ACCEPTABLEDELTA) {
/external/ltp/testcases/open_posix_testsuite/conformance/interfaces/timer_create/speculative/
H A D5-1.c94 if (abs(tsleft.tv_sec - SLEEPDELTA) > ACCEPTABLEDELTA) {
/external/ltp/testcases/open_posix_testsuite/conformance/interfaces/timer_settime/
H A D1-1.c90 if (abs(tsleft.tv_sec - SLEEPDELTA) <= ACCEPTABLEDELTA) {
H A D1-2.c91 if (abs(tsleft.tv_sec - SLEEPDELTA) > ACCEPTABLEDELTA) {
H A D5-1.c92 if (abs(tsleft.tv_sec - SLEEPDELTA) <= ACCEPTABLEDELTA) {
/external/mesa3d/src/gallium/drivers/etnaviv/
H A Detnaviv_asm.h76 unsigned abs:1; /* absolute (remove sign) if set */ member in struct:etna_inst_src
114 * src[0-2]_reg, use, swiz, neg, abs, amode, rgroup,
/external/python/cpython2/Demo/turtle/
H A Dtdemo_wikipedia.py28 c = abs(ne/2.0-i)/(ne*.7)

Completed in 681 milliseconds

1234567891011>>