/prebuilts/go/darwin-x86/test/ |
named.go | 41 func isFloat(x interface{}) { _ = x.(Float) } 86 isFloat(f) 88 isFloat(-f) 90 isFloat(+f) 92 isFloat(f + 1) 94 isFloat(1 + f) 96 isFloat(f + f) 100 isFloat(f - 1) 102 isFloat(1 - f) 104 isFloat(f - f [all...] |
/prebuilts/go/linux-x86/test/ |
named.go | 41 func isFloat(x interface{}) { _ = x.(Float) } 86 isFloat(f) 88 isFloat(-f) 90 isFloat(+f) 92 isFloat(f + 1) 94 isFloat(1 + f) 96 isFloat(f + f) 100 isFloat(f - 1) 102 isFloat(1 - f) 104 isFloat(f - f [all...] |
/external/opencv3/modules/core/include/opencv2/core/cuda/ |
type_traits.hpp | 58 enum {value = type_traits_detail::IsIntegral<T>::value || type_traits_detail::IsFloat<T>::value || 79 enum { isFloat = type_traits_detail::IsFloat<UnqualifiedType>::value }; 80 enum { isArith = isIntegral || isFloat };
|
/external/chromium-trace/catapult/tracing/tracing/ui/extras/system_stats/ |
system_stats_snapshot_view.html | 43 isFloat: function(n) { 64 if (this.isFloat(stats[statName]))
|
/external/llvm/lib/Target/Hexagon/MCTargetDesc/ |
HexagonMCChecker.h | 94 /// IsFloat = true if definition produces a floating point value 100 bool IsFloat, IsNVJ, Cond; 103 NewSense NS = { /*PredReg=*/ 0, /*IsFloat=*/ false, /*IsNVJ=*/ isNVJ, 108 NewSense NS = { /*PredReg=*/ PR, /*IsFloat=*/ false, /*IsNVJ=*/ false, 113 NewSense NS = { /*PredReg=*/ PR, /*IsFloat=*/ Float, /*IsNVJ=*/ false,
|
/external/opencv3/modules/cudev/include/opencv2/cudev/util/detail/ |
type_traits.hpp | 69 template <typename T> struct IsFloat { enum {value = 0}; }; 70 template <> struct IsFloat<float> { enum {value = 1}; }; 71 template <> struct IsFloat<double> { enum {value = 1}; }; 183 || IsFloat<T>::value
|
/art/runtime/verifier/ |
reg_type_test.cc | 104 EXPECT_FALSE(bool_reg_type.IsFloat()); 137 EXPECT_FALSE(byte_reg_type.IsFloat()); 170 EXPECT_FALSE(char_reg_type.IsFloat()); 203 EXPECT_FALSE(short_reg_type.IsFloat()); 236 EXPECT_FALSE(int_reg_type.IsFloat()); 269 EXPECT_FALSE(long_reg_type.IsFloat()); 302 EXPECT_TRUE(float_reg_type.IsFloat()); 335 EXPECT_FALSE(double_reg_type.IsFloat()); 522 EXPECT_TRUE(merged.IsFloat()); 527 EXPECT_TRUE(merged.IsFloat()); [all...] |
/prebuilts/go/darwin-x86/src/go/types/ |
universe.go | 38 Float32: {Float32, IsFloat, "float32"}, 39 Float64: {Float64, IsFloat, "float64"}, 48 UntypedFloat: {UntypedFloat, IsFloat | IsUntyped, "untyped float"},
|
conversions.go | 90 if (isInteger(V) || isFloat(V)) && (isInteger(T) || isFloat(T)) {
|
type.go | 69 IsFloat 74 IsOrdered = IsInteger | IsFloat | IsString 75 IsNumeric = IsInteger | IsFloat | IsComplex
|
/prebuilts/go/linux-x86/src/go/types/ |
universe.go | 38 Float32: {Float32, IsFloat, "float32"}, 39 Float64: {Float64, IsFloat, "float64"}, 48 UntypedFloat: {UntypedFloat, IsFloat | IsUntyped, "untyped float"},
|
conversions.go | 90 if (isInteger(V) || isFloat(V)) && (isInteger(T) || isFloat(T)) {
|
/external/opencv3/modules/core/include/opencv2/core/cuda/detail/ |
type_traits_detail.hpp | 78 template <typename T> struct IsFloat { enum {value = 0}; }; 79 template <> struct IsFloat<float> { enum {value = 1}; }; 80 template <> struct IsFloat<double> { enum {value = 1}; };
|
/external/llvm/tools/llvm-stress/ |
llvm-stress.cpp | 343 bool isFloat = Val0->getType()->getScalarType()->isFloatingPointTy(); 345 unsigned R = Ran->Rand() % (isFloat ? 7 : 13); 350 case 0:{Op = (isFloat?Instruction::FAdd : Instruction::Add); break; } 351 case 1:{Op = (isFloat?Instruction::FSub : Instruction::Sub); break; } 352 case 2:{Op = (isFloat?Instruction::FMul : Instruction::Mul); break; } 353 case 3:{Op = (isFloat?Instruction::FDiv : Instruction::SDiv); break; } 354 case 4:{Op = (isFloat?Instruction::FDiv : Instruction::UDiv); break; } 355 case 5:{Op = (isFloat?Instruction::FRem : Instruction::SRem); break; } 356 case 6:{Op = (isFloat?Instruction::FRem : Instruction::URem); break; }
|
/prebuilts/go/darwin-x86/src/text/template/parse/ |
node.go | 524 IsFloat bool // Number has a floating-point value. 549 n.IsFloat = true 587 n.IsFloat = true 590 n.IsFloat = true 600 n.IsFloat = true 613 if !n.IsInt && !n.IsUint && !n.IsFloat { 622 n.IsFloat = imag(n.Complex128) == 0 623 if n.IsFloat {
|
parse_test.go | 20 isFloat bool 93 ok := test.isInt || test.isUint || test.isFloat || test.isComplex 131 if test.isFloat { 132 if !n.IsFloat { 138 } else if n.IsFloat {
|
/prebuilts/go/linux-x86/src/text/template/parse/ |
node.go | 524 IsFloat bool // Number has a floating-point value. 549 n.IsFloat = true 587 n.IsFloat = true 590 n.IsFloat = true 600 n.IsFloat = true 613 if !n.IsInt && !n.IsUint && !n.IsFloat { 622 n.IsFloat = imag(n.Complex128) == 0 623 if n.IsFloat {
|
parse_test.go | 20 isFloat bool 93 ok := test.isInt || test.isUint || test.isFloat || test.isComplex 131 if test.isFloat { 132 if !n.IsFloat { 138 } else if n.IsFloat {
|
/external/deqp/framework/randomshaders/ |
rsgUtils.cpp | 132 bool isFloat = valueRange.getType().getBaseType() == VariableType::TYPE_FLOAT; 133 Scalar infMin = isFloat ? Scalar::min<float>() : Scalar::min<int>(); 134 Scalar infMax = isFloat ? Scalar::max<float>() : Scalar::max<int>();
|
/external/chromium-trace/catapult/tracing/tracing/extras/chrome/ |
layout_object.html | 115 get isFloat() {
|
/external/chromium-trace/catapult/tracing/tracing/ui/analysis/ |
layout_tree_sub_view.html | 109 return layoutObject.isFloat ? 'float' : '';
|
/external/pdfium/third_party/lcms2-2.6/src/ |
cmsintrp.c | [all...] |
/external/mesa3d/src/mesa/drivers/dri/radeon/ |
radeon_sanity.c | 321 #define ISFLOAT 2 357 scalars[i].flags = ISFLOAT; 364 vectors[i].flags = ISFLOAT|ISVEC; 492 if (reg->flags & ISFLOAT) 501 if (reg->flags & ISFLOAT) { [all...] |
/external/clang/include/clang/AST/ |
APValue.h | 183 bool isFloat() const { return Kind == Float; } 209 assert(isFloat() && "Invalid accessor"); 352 assert(isFloat() && "Invalid accessor");
|
/external/deqp/modules/gles3/functional/ |
es3fFragmentOutputTests.cpp | 185 bool isFloat = glu::isDataTypeFloatOrVec(output.type); 186 const char* interp = isFloat ? "smooth" : "flat"; 187 const char* interpPrec = isFloat ? "highp" : outputPrec; 628 bool isFloat = glu::isDataTypeFloatOrVec(output.type); 643 if (isFloat) 779 bool isFloat = glu::isDataTypeFloatOrVec(output.type); 783 deUint32 glScalarType = isFloat ? GL_FLOAT : 796 if (isFloat) 842 const bool isFloat = glu::isDataTypeFloatOrVec(output.type); 862 else if (isFloat) [all...] |