Searched defs:abs (Results 1 - 25 of 76) sorted by last modified time

1234

/external/vixl/examples/
H A Dabs.cc33 // int64_t abs(int64_t x)
54 Label abs; local
55 masm.Bind(&abs);
62 simulator.RunFrom(abs.target());
63 printf("abs(%ld) = %ld\n", input_value, simulator.xreg(0));
/external/tcpdump/
H A Dprint-icmp6.c61 #ifndef abs
62 #define abs(a) ((0 < (a)) ? (a) : -(a)) macro
/external/stlport/src/
H A Dcomplex.cpp40 _STLP_DECLSPEC float _STLP_CALL abs(const complex<float>& __z) function
43 _STLP_DECLSPEC double _STLP_CALL abs(const complex<double>& __z) function
48 _STLP_DECLSPEC long double _STLP_CALL abs(const complex<long double>& __z) function
/external/stlport/stlport/stl/
H A D_cmath.h20 * declaration. cmath have abs overloads and cstdlib a using directive
340 //We have to tell the compilers that abs, acos ... math functions are not intrinsic
345 # pragma function (abs, acos, asin, atan, atan2, cos, cosh, exp, fabs, fmod, log, log10, sin, sinh, sqrt, tan, tanh)
424 inline double abs(double __x) function
427 _STLP_DEF_MATH_INLINE(abs, fabs)
428 # else // __MVS__ has native long double abs?
429 inline float abs(float __x) { return ::fabsf(__x); }
515 # pragma intrinsic (abs, acos, asin, atan, atan2, cos, cosh, exp, fabs, fmod, log, log10, sin, sinh, sqrt, tan, tanh)
525 * problem we provide all abs overload before the 'using' call.
526 * Beware: This header inclusion has to be after all abs overloa
[all...]
H A D_complex.h735 _Tp _STLP_CALL abs(const complex<_Tp>& __z);
756 _STLP_DECLSPEC float _STLP_CALL abs(const complex<float>&);
758 _STLP_DECLSPEC double _STLP_CALL abs(const complex<double>&);
769 _Tp _STLP_CALL abs(const complex<_Tp>& __z) function
770 { return _Tp(abs(complex<double>(double(__z.real()), double(__z.imag())))); }
786 _STLP_DECLSPEC long double _STLP_CALL abs(const complex<long double>&);
H A D_cstdlib.h113 inline int abs(int __x) { return _STLP_VENDOR_CSTD::abs(__x); } function
121 # pragma function (abs)
124 //HP-UX native lib has abs() and div() functions in global namespace
131 inline long abs(long __x) { return _STLP_VENDOR_CSTD::labs(__x); } function
143 # pragma intrinsic (abs)
151 inline _STLP_LONG_LONG abs(_STLP_LONG_LONG __x) { return _STLP_VENDOR_CSTD::llabs(__x); } function
154 inline _STLP_LONG_LONG abs(_STLP_LONG_LONG __x) { return ::llabs(__x); } function
158 inline _STLP_LONG_LONG abs(_STLP_LONG_LONG __x) { return __x < 0 ? -__x : __x; } function
164 * problem we provide all abs overloa
[all...]
/external/skia/src/core/
H A DSkFloat.h28 void abs() { fPacked = Abs(fPacked); } function in class:SkFloat
/external/robolectric/lib/main/
H A Dandroid.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/android/ com/android/internal/ com/android/internal/util/ ...
/external/robolectric/lib/test/
H A Dmockito-core-1.8.5.jar ... BDDMyOngoingStubbing willAnswer (org.mockito.stubbing.Answer) public abs
/external/qemu/target-arm/
H A Dhelper.c615 uint32_t HELPER(abs)(uint32_t x) function
2798 float32 VFP_HELPER(abs, s)(float32 a)
2803 float64 VFP_HELPER(abs, d)(float64 a)
H A Diwmmxt_helper.c84 #define abs(x) (((x) >= 0) ? x : -x) macro
85 #define SADB(SHR) abs((int) ((a >> SHR) & 0xff) - (int) ((b >> SHR) & 0xff))
95 abs((int) ((a >> SHR) & 0xffff) - (int) ((b >> SHR) & 0xffff))
/external/owasp/sanitizer/tools/findbugs/lib/
H A Dant.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/tools/ org/apache/tools/ant/ ...
H A Dcommons-lang-2.6.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/commons/ org/apache/commons/lang/ ...
/external/pdfium/core/src/fxcodec/lcms2/lcms2-2.6/src/
H A Dcmscam02.c42 cmsFloat64Number abs[2]; member in struct:__anon28667
/external/opencv/cxcore/src/
H A D_cxcore.h161 inline double abs(CvComplex32f a) function
229 inline double abs(CvComplex64f a) function
/external/mesa3d/src/mesa/program/
H A Dprog_print.c598 const char *abs = srcReg->Abs ? "|" : ""; local
601 abs,
607 abs);
/external/mesa3d/src/gallium/drivers/nv30/
H A Dnvfx_shader.h415 #define abs(s) nvfx_src_abs((s)) macro
429 uint8_t abs : 1; member in struct:nvfx_src
486 .abs = 0,
516 src.abs = 1;
/external/mesa3d/src/gallium/drivers/nv50/codegen/
H A Dnv50_ir.h58 OP_SAD, // abs(src0 - src1) + src2
377 inline int abs() const { return (bits & NV50_IR_MOD_ABS) ? 1 : 0; } function in class:nv50_ir::Modifier
H A Dnv50_ir_peephole.cpp727 int32_t l = util_logbase2(static_cast<unsigned>(abs(d)));
728 if ((1 << l) < abs(d))
732 m = ((uint64_t)1 << (32 + l - 1)) / abs(d) + 1 - ((uint64_t)1 << 32);
872 if ((i->op == OP_ABS) || i->src(s).mod.abs()) {
873 // abs neg [abs] = abs
879 // neg neg abs = abs, neg neg = identity
932 AlgebraicOpt::handleABS(Instruction *abs) argument
[all...]
/external/mesa3d/src/gallium/drivers/nvc0/codegen/
H A Dnv50_ir_emit_nvc0.cpp184 if (i->src(1).mod.abs()) code[0] |= 1 << 6;
185 if (i->src(0).mod.abs()) code[0] |= 1 << 7;
528 code[0] |= i->src(0).mod.abs() << 7;
531 if (i->src(1).mod.abs())
549 !i->src(0).mod.abs() &&
550 !i->src(1).mod.neg() && !i->src(1).mod.abs());
564 assert(!i->src(0).mod.abs() && !i->src(1).mod.abs());
710 if (i->src(0).mod.abs()) code[0] |= 1 << 6;
733 if (i->src(0).mod.abs()) cod
809 const bool abs = (i->op == OP_ABS) || i->src(0).mod.abs(); local
[all...]
/external/mesa3d/src/gallium/drivers/r300/compiler/
H A Dradeon_program_print.c405 const char* abs = inst->RGB.Arg[arg].Abs ? "|" : ""; local
407 fprintf(f, ", %s%ssrc", neg, abs);
416 abs);
440 const char* abs = inst->Alpha.Arg[arg].Abs ? "|" : ""; local
442 fprintf(f, ", %s%ssrc", neg, abs);
448 rc_swizzle_char(GET_SWZ(inst->Alpha.Arg[arg].Swizzle, 0)), abs);
/external/mesa3d/src/gallium/drivers/r600/
H A Dr600_asm.h35 unsigned abs; member in struct:r600_bytecode_alu_src
H A Dr600_shader.c171 unsigned abs; member in struct:r600_shader_src
282 alu->src[src_idx].abs = bytes[bytes_read++];
947 r600_src->abs = tgsi_src->Register.Absolute;
1733 bc_src->abs = shader_src->abs;
1740 bc_src->abs = 1;
2563 * 5. tmp0.z = (tmp0.y == 0 ? tmp0.w : tmp0.z) = abs(lo(rcp*src2))
2597 * Same as unsigned, using abs values of the operands,
2892 /* 5. tmp0.z = (tmp0.y == 0 ? tmp0.w : tmp0.z) = abs(lo(rcp*src)) */
3744 ctx->src[index].neg || ctx->src[index].abs;
[all...]
/external/mesa3d/src/gallium/state_trackers/d3d1x/d3d1xshader/include/
H A Dsm4.h220 unsigned abs : 1; member in struct:sm4_token_operand_extended
252 bool abs; member in struct:sm4_op
/external/mesa3d/src/mesa/drivers/dri/i965/
H A Dbrw_eu.h80 GLuint abs:1; /* source only */ member in struct:brw_reg
209 reg.abs = 0;
713 reg.abs = 1;

Completed in 4682 milliseconds

1234