HomeSort by relevance Sort by last modified time
    Searched defs:Abs (Results 1 - 25 of 52) sorted by null

1 2 3

  /prebuilts/go/darwin-x86/src/math/
abs.go 7 // Abs returns the absolute value of x.
10 // Abs(ħInf) = +Inf
11 // Abs(NaN) = NaN
12 func Abs(x float64) float64 {
20 return 0 // return correctly abs(-0)
  /prebuilts/go/darwin-x86/src/math/cmplx/
abs.go 11 // Abs returns the absolute value (also called the modulus) of x.
12 func Abs(x complex128) float64 { return math.Hypot(real(x), imag(x)) }
  /prebuilts/go/linux-x86/src/math/
abs.go 7 // Abs returns the absolute value of x.
10 // Abs(ħInf) = +Inf
11 // Abs(NaN) = NaN
12 func Abs(x float64) float64 {
20 return 0 // return correctly abs(-0)
  /prebuilts/go/linux-x86/src/math/cmplx/
abs.go 11 // Abs returns the absolute value (also called the modulus) of x.
12 func Abs(x complex128) float64 { return math.Hypot(real(x), imag(x)) }
  /external/protobuf/src/google/protobuf/stubs/
mathutil.h 108 // Note: 0.0 and -0.0 are not differentiated by Abs (Abs(0.0) is -0.0),
111 static T Abs(const T x) {
154 T relative_margin = static_cast<T>(fraction * Max(Abs(x), Abs(y)));
  /external/v8/src/base/
safe_math.h 134 CheckedNumeric Abs() const {
  /external/libchrome/base/numerics/
safe_math.h 145 CheckedNumeric Abs() const {
  /prebuilts/go/darwin-x86/misc/cgo/gmp/
gmp.go 322 // Abs sets z to the absolute value of x and returns z.
323 func (z *Int) Abs(x *Int) *Int {
  /prebuilts/go/darwin-x86/src/math/big/
rat.go 265 b := x.b.abs
269 f, exact = quotToFloat32(x.a.abs, b)
281 b := x.b.abs
285 f, exact = quotToFloat64(x.a.abs, b)
295 babs := b.abs
299 if &z.a == b || alias(z.a.abs, babs) {
302 z.a.abs = z.a.abs.set(a.abs)
303 z.b.abs = z.b.abs.set(babs
    [all...]
  /prebuilts/go/darwin-x86/src/path/filepath/
path.go 230 // Abs returns an absolute representation of path.
234 // Abs calls Clean on the result.
235 func Abs(path string) (string, error) {
236 return abs(path)
  /prebuilts/go/linux-x86/misc/cgo/gmp/
gmp.go 322 // Abs sets z to the absolute value of x and returns z.
323 func (z *Int) Abs(x *Int) *Int {
  /prebuilts/go/linux-x86/src/math/big/
rat.go 265 b := x.b.abs
269 f, exact = quotToFloat32(x.a.abs, b)
281 b := x.b.abs
285 f, exact = quotToFloat64(x.a.abs, b)
295 babs := b.abs
299 if &z.a == b || alias(z.a.abs, babs) {
302 z.a.abs = z.a.abs.set(a.abs)
303 z.b.abs = z.b.abs.set(babs
    [all...]
  /prebuilts/go/linux-x86/src/path/filepath/
path.go 230 // Abs returns an absolute representation of path.
234 // Abs calls Clean on the result.
235 func Abs(path string) (string, error) {
236 return abs(path)
  /external/eigen/unsupported/Eigen/src/EulerAngles/
EulerSystem.h 23 struct Abs
29 struct Abs<Num, false>
37 enum { value = Axis != 0 && Abs<Axis>::value <= 3 };
137 AlphaAxisAbs = internal::Abs<AlphaAxis>::value, /*!< the first rotation axis unsigned */
138 BetaAxisAbs = internal::Abs<BetaAxis>::value, /*!< the second rotation axis unsigned */
139 GammaAxisAbs = internal::Abs<GammaAxis>::value, /*!< the third rotation axis unsigned */
  /external/libvpx/libvpx/third_party/libyuv/source/
convert.cc 26 static __inline int Abs(int v) {
39 const int dst_y_width = Abs(src_y_width);
40 const int dst_y_height = Abs(src_y_height);
    [all...]
scale_argb.cc 26 static __inline int Abs(int v) {
705 src_width = Abs(src_width);
convert_from.cc 28 static __inline int Abs(int v) {
41 const int dst_y_width = Abs(src_y_width);
42 const int dst_y_height = Abs(src_y_height);
73 const int dst_uv_width = (Abs(width) + 1) >> 1;
74 const int dst_uv_height = Abs(height);
95 const int dst_uv_width = Abs(width);
96 const int dst_uv_height = Abs(height);
117 const int dst_uv_width = (Abs(width) + 3) >> 2;
118 const int dst_uv_height = Abs(height);
    [all...]
  /external/libyuv/files/source/
convert.cc 26 static __inline int Abs(int v) {
47 const int dst_y_width = Abs(src_y_width);
48 const int dst_y_height = Abs(src_y_height);
    [all...]
scale_argb.cc 26 static __inline int Abs(int v) {
833 src_width = Abs(src_width);
    [all...]
convert_from.cc 28 static __inline int Abs(int v) {
49 const int dst_y_width = Abs(src_y_width);
50 const int dst_y_height = Abs(src_y_height);
85 const int dst_uv_width = (Abs(width) + 1) >> 1;
86 const int dst_uv_height = Abs(height);
110 const int dst_uv_width = Abs(width);
111 const int dst_uv_height = Abs(height);
    [all...]
  /external/libyuv/files/unit_test/
unit_test.h 35 static __inline int Abs(int v) {
  /external/mesa3d/src/gallium/drivers/r300/compiler/
radeon_program_pair.h 67 unsigned int Abs:1;
radeon_program.h 51 unsigned int Abs:1;
53 /** Post-Abs negation. */
  /external/pdfium/third_party/base/numerics/
safe_math.h 47 // Abs() - Absolute value.
222 constexpr CheckedNumeric Abs() const {
  /external/libyuv/files/util/
yuvconvert.cc 40 static __inline uint32 Abs(int32 v) {
152 dst_width = Abs(image_width);
153 dst_height = Abs(image_height);
224 int org_size = Abs(image_width) * Abs(image_height) * 4; // ARGB
227 const int y_size = Abs(image_width) * Abs(image_height);
229 ((Abs(image_width) + 1) / 2) * ((Abs(image_height) + 1) / 2);
290 int src_width = Abs(image_width)
    [all...]

Completed in 1214 milliseconds

1 2 3