HomeSort by relevance Sort by last modified time
    Searched full:isinf (Results 201 - 225 of 984) sorted by null

1 2 3 4 5 6 7 891011>>

  /external/spirv-llvm/lib/SPIRV/
OCLUtil.h 170 const static char IsInf[] = "isinf";
545 _SPIRV_OP(isinf, IsInf)
  /prebuilts/clang/host/darwin-x86/clang-4053586/include/c++/v1/
cmath 145 bool isinf(arithmetic x);
316 using ::isinf;
583 return isinf(__lcpp_x);
592 return isinf(__lcpp_x);
  /prebuilts/clang/host/linux-x86/clang-4053586/include/c++/v1/
cmath 145 bool isinf(arithmetic x);
316 using ::isinf;
583 return isinf(__lcpp_x);
592 return isinf(__lcpp_x);
  /prebuilts/go/darwin-x86/src/math/
asinh.go 46 if IsNaN(x) || IsInf(x, 0) {
cbrt.go 38 case x == 0 || IsNaN(x) || IsInf(x, 0):
erf.go 197 case IsInf(x, 1):
199 case IsInf(x, -1):
271 case IsInf(x, 1):
273 case IsInf(x, -1):
sin.go 128 case IsNaN(x) || IsInf(x, 0):
187 case IsInf(x, 0):
  /prebuilts/go/linux-x86/src/math/
asinh.go 46 if IsNaN(x) || IsInf(x, 0) {
cbrt.go 38 case x == 0 || IsNaN(x) || IsInf(x, 0):
erf.go 197 case IsInf(x, 1):
199 case IsInf(x, -1):
271 case IsInf(x, 1):
273 case IsInf(x, -1):
sin.go 128 case IsNaN(x) || IsInf(x, 0):
187 case IsInf(x, 0):
  /prebuilts/ndk/r10/sources/cxx-stl/llvm-libc++/libcxx/include/support/win32/
math_win32.h 29 _LIBCPP_ALWAYS_INLINE bool isinf( double num ) function
  /prebuilts/ndk/r11/sources/cxx-stl/llvm-libc++/libcxx/include/support/win32/
math_win32.h 29 _LIBCPP_ALWAYS_INLINE bool isinf( double num ) function
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/include/support/win32/
math_win32.h 31 _LIBCPP_ALWAYS_INLINE bool isinf( double num ) function
  /bionic/tests/
math_test.cpp 28 // stlport implementation does this only for signbit, isfinite, isinf and
47 return isinf(in);
131 TEST(math, isinf) {
235 // The isinf macro deals with all three types; the isinf function is for doubles.
236 ASSERT_FALSE((isinf)(123.0));
237 ASSERT_TRUE((isinf)(HUGE_VAL));
897 ASSERT_TRUE(isinf(logb(HUGE_VAL)));
913 ASSERT_TRUE(isinf(logbl(HUGE_VALL)));
921 ASSERT_TRUE(isinf(log1p(HUGE_VAL)))
    [all...]
  /external/clang/lib/Headers/
__clang_cuda_cmath.h 73 __DEVICE__ bool isinf(float __x) { return ::__isinff(__x); } function
74 __DEVICE__ bool isinf(double __x) { return ::__isinf(__x); } function
  /prebuilts/clang/host/darwin-x86/clang-3289846/lib64/clang/3.8/include/
__clang_cuda_cmath.h 73 __DEVICE__ bool isinf(float __x) { return ::__isinff(__x); } function
74 __DEVICE__ bool isinf(double __x) { return ::__isinf(__x); } function
  /prebuilts/clang/host/darwin-x86/clang-3362437/lib64/clang/3.8/include/
__clang_cuda_cmath.h 73 __DEVICE__ bool isinf(float __x) { return ::__isinff(__x); } function
74 __DEVICE__ bool isinf(double __x) { return ::__isinf(__x); } function
  /prebuilts/clang/host/linux-x86/clang-3289846/lib64/clang/3.8/include/
__clang_cuda_cmath.h 73 __DEVICE__ bool isinf(float __x) { return ::__isinff(__x); } function
74 __DEVICE__ bool isinf(double __x) { return ::__isinf(__x); } function
  /prebuilts/clang/host/linux-x86/clang-3362437/lib64/clang/3.8/include/
__clang_cuda_cmath.h 73 __DEVICE__ bool isinf(float __x) { return ::__isinff(__x); } function
74 __DEVICE__ bool isinf(double __x) { return ::__isinf(__x); } function
  /prebuilts/ndk/r11/sources/cxx-stl/stlport/src/
num_put_float.cpp 137 static inline bool _Stl_is_inf(double x) { return isinf(x); }
138 // inline bool _Stl_is_neg_inf(double x) { return isinf(x) < 0; }
139 static inline bool _Stl_is_neg_inf(double x) { return isinf(x) && x < 0; }
144 static inline bool _Stl_is_inf(double x) { return IsNANorINF(x) && IsINF(x); }
145 static inline bool _Stl_is_neg_inf(double x) { return (IsINF(x)) && (x < 0.0); }
195 static inline bool _Stl_is_nan_or_inf(double x) { return isnan(x) || isinf(x); }
196 static inline bool _Stl_is_inf(double x) { return isinf(x); }
197 static inline bool _Stl_is_neg_inf(double x) { return isinf(x) && signbit(x); }
    [all...]
  /prebuilts/ndk/r13/sources/cxx-stl/stlport/src/
num_put_float.cpp 137 static inline bool _Stl_is_inf(double x) { return isinf(x); }
138 // inline bool _Stl_is_neg_inf(double x) { return isinf(x) < 0; }
139 static inline bool _Stl_is_neg_inf(double x) { return isinf(x) && x < 0; }
144 static inline bool _Stl_is_inf(double x) { return IsNANorINF(x) && IsINF(x); }
145 static inline bool _Stl_is_neg_inf(double x) { return (IsINF(x)) && (x < 0.0); }
195 static inline bool _Stl_is_nan_or_inf(double x) { return isnan(x) || isinf(x); }
196 static inline bool _Stl_is_inf(double x) { return isinf(x); }
197 static inline bool _Stl_is_neg_inf(double x) { return isinf(x) && signbit(x); }
    [all...]
  /prebuilts/sdk/renderscript/clang-include/
__clang_cuda_cmath.h 73 __DEVICE__ bool isinf(float __x) { return ::__isinff(__x); } function
74 __DEVICE__ bool isinf(double __x) { return ::__isinf(__x); } function
  /external/eigen/doc/
CoeffwiseMathFunctionsTable.dox 380 a.\link ArrayBase::isInf isInf\endlink(); \n
381 \link Eigen::isinf isinf\endlink(a);
385 plus \c using <a href="http://en.cppreference.com/w/cpp/numeric/math/isinf">\c std::isinf </a>; \cpp11</td>
  /prebuilts/go/darwin-x86/pkg/darwin_amd64/math/
cmplx.a 16  cmplx 9|SGOROOT/src/math/cmplx/abs.goAbsx·2 0 sin.gofAsin Asinh 6Acos Acosh TAtan 0 Atanh . conj.goConj . exp.gofExp .isinf.go IsInf Inf 2 nan.go IsNaN NaN . log.gorLog
63 go17ld math.a? "".Abs?math.Hypot?0runtime.morestack_noctxt?~r1?type.float64?x?type.complex128?Tgclocals·54241e171da8af6ae173d69da0236748?Tgclocals·33cdeccccebe80329f1fdbee7f5874cb?:$GOROOT/src/math/cmplx/abs.go?"".Asin?*$f64.8000000000000000?*$f64.3ff0000000000000?*$f64.3ff921fb54442d18?math.Asin?"".Sqrt? "".Log?Tgclocals·ff19ed39bdde8a01a800918ac3ef0ec7?<$GOROOT/src/math/cmplx/asin.go?"".Asinh?math.Asinh?"".Acos?"".Acosh?"".Atan?*$f64.4000000000000000?math.Atan2?*$f64.3fe0000000000000?*$f64.400921fb54442d18?*$f64.400921fb54000000?*$f64.3e210b4610000000?*$f64.3c6a62633145c06e?math.Log?*$f64.3fd0000000000000?b·2?type.uint64?.autotmp_61?.autotmp_60?"".Atanh?"".Conj?<$GOROOT/src/math/cmplx/conj.go? "".Exp?math.Exp?math.Sincos?.autotmp_73?:$GOROOT/src/math/cmplx/exp.go?"".IsInf?*$f64.7fefffffffffffff?*$f64.ffefffffffffffff?type.bool?>$GOROOT/src/math/cmplx/isinf.go?>$GOROOT/src/math/cmplx/isnan.go? "".Inf?~r0?Tgclocals·f207267fbf96a0178e8758c6e3e0ce28?:$GOROOT/src/math/cmplx/tan.go?"".IsNaN? "".NaN?"".Phase?.autotmp_96?:$GOROOT/src/math/cmplx/log.go?"".Log10?*$f64.3fdbcb7b1526e50e?>$GOROOT/src/math/cmplx/phase.go?"".Polar?.autotmp_103???r?>$GOROOT/src/math/cmplx/polar.go? "".Pow?.go.string."not reached"?type.string?runtime.convT2E?runtime.gopanic?math.Pow?.autotmp_126?.autotmp_125?.autotmp_124?.autotmp_123?.autotmp_108?~r2?y?Tgclocals·0acea6cc8b9e2fc1c5d67d8ec44c988a?Tgclocals·db9a6544d085c0622e79e6568b99b095?:$GOROOT/src/math/cmplx/pow.go?"".Rect?<$GOROOT/src/math/cmplx/rect.go? "".Sin?"".sinhcosh?.autotmp_132?.autotmp_131?:$GOROOT/src/math/cmplx/sin.go?"".Sinh?.autotmp_137?.autotmp_136? "".Cos?.autotmp_142?.autotmp_141?"".Cosh?.autotmp_147?.autotmp_146?math.Sinh?math.Cosh?.autotmp_154?ch?sh?*$f64.bfe0000000000000?*$f64.4010000000000000?*$f64.4350000000000000?*$f64.3e40000000000000?.autotmp_186?.autotmp_185?.autotmp_184?<$GOROOT/src/math/cmplx/sqrt.go? "".Tan?math.Cos?math.Sin?"".tanSeries?.autotmp_202?.autotmp_201?.autotmp_200?"".Tanh?.autotmp_217?.autotmp_216?.autotmp_215?"".reducePi?*$f64.3ca0000000000000?z? "".Cot?.autotmp_262?.autotmp_261?.autotmp_260?"".init?"".initdone·?"runtime.throwinit?math.init?go.info."".Abs?$go.info.complex128?go.info.float64?go.info."".Asin? go.info."".Asinh?go.info."".Acos? go.info."".Acosh?go.info."".Atan?go.info.uint64? go.info."".Atanh?go.info."".Conj?go.info."".Exp? go.info."".IsInf?go.info.bool?go.info."".Inf? go.info."".IsNaN?go.info."".NaN?go.info."".Log? go.info."".Log10? go.info."".Phase? go.info."".Polar?go.info."".Pow?go.info."".Rect?go.info."".Sin?go.info."".Sinh?go.info."".Cos?go.info."".Cosh?&go.info."".sinhcosh?go.info."".Sqrt?go.info."".Tan?go.info."".Tanh?&go.info."".reducePi?(go.info."".tanSeries?go.info."".Cot?go.info."".init?type.uint8?,type..importpath.math.???0?|FeH? %H;av@H?? H?l$H?l$?D$(?$?D$0?D$??D$?D$8H?l$H?? ???@;?VV4eH? %H;a?TH??(H?l$ H?l$ ?D$8W?f.???z?D$0f.?va?f???f.?v??D$@?L$HH?l$ H??(??$??D$?D$@W??D$HH?l$ H??(?f.?uzW?????L$0??Y???Y??\???\??$?Y??X?? f???\$???L$8f???L$?T$?X??$?D$0?X??L$??D$?L$?D$@?f???L$HH?l$ H??(??????PbOP(OP?O ?h! & 
265 eH? %H;avEH??H?,$H?,$?<v H?,$H???u? ???H?,$H?????$[?[1#"".Absx?~r1?""".Asinx?~r1?""".Asinhx?~r1?""".Acosx?~r1?""".Acoshx?~r1?""".Atanb·2?H"b·2#1?P"b·2#2?X"x?~r1?""".Atanhx?~r1?""".Conjx?~r1?""".Expx?~r1?""".IsInfx?~r1?""".Infb·2?h"~r0?"".IsNaNx?~r1?""".NaNb·2?h"~r0?"".Logx?~r1?""".Log10x?~r1?""".Phasex?~r1?""".Polarx?r?"??"not reached"".Powb·2??"b·2#1??"x?y?"~r2? """.Rectr???"~r2?""".Sinx?~r1?""".Sinhx?~r1?""".Cosx?~r1?""".Coshx?~r1?""".sinhcoshx?sh?"ch?""".Sqrtx?~r1?""".Tanb·2?P"x?~r1?""".Tanhb·2?P"x?~r1?""".reducePix?~r1?""".tanSeriesz?~r1?""".Cotb·2?P"x?~r1?""".initmath???

Completed in 405 milliseconds

1 2 3 4 5 6 7 891011>>