Searched defs:float (Results 1 - 18 of 18) sorted by relevance

/external/v8/test/intl/overrides/
H A Dnumber.js31 var float = 1234567890.123434; variable
37 assertEquals(nf.format(float), float.toLocaleString());
44 assertEquals(nf.format(float), float.toLocaleString(locale));
53 assertEquals(nf.format(float), float.toLocaleString(locale, options));
/external/clang/test/Analysis/
H A Dbug_hash_test.cpp45 explicit operator float() {
1062 // CHECK-NEXT: <string>debug.DumpBugHash$AA::X::operator float()$14$return0;$debug</string>
1064 // CHECK-NEXT: <string>debug.DumpBugHash$AA::X::operator float()$14$return0;$debug</string>
1067 // CHECK-NEXT: <key>description</key><string>debug.DumpBugHash$AA::X::operator float()$14$return0;$debug</string>
/external/clang/test/SemaTemplate/
H A Dinstantiation-default-1.cpp86 template<> struct Def6<int, float> {
90 template<> struct Def6<bool, int[5], float(double, double)> {
94 bool test_Def6(Def6<int, float, float> *d6a, argument
95 Def6<int, float, float, int (*)(float, float)> *d6b,
96 Def6<bool, int[5], float(double, double),
97 bool(*)(int*, float(*)(doubl
[all...]
/external/clang/test/CodeGenCXX/
H A Dconversion-function.cpp21 public: operator float() { printf("operator float()\n"); return fX; }
24 float fX;
32 float fZ;
62 float f = X(Z(y));
65 printf("i = %d float = %f\n", i, float(x));
67 f = float(X(Z(y)));
68 printf("i = %d float = %f\n", i,f);
69 f = (float)
[all...]
H A Dthunks.cpp161 float real;
205 virtual void baz(X, X&, _Complex float, Small, Small&, Large) = 0;
213 void baz(X, X&, _Complex float, Small, Small&, Large);
216 void D::baz(X, X&, _Complex float, Small, Small&, Large) { } argument
/external/opencv3/modules/core/include/opencv2/core/cuda/
H A Dvec_distance.hpp82 template <> struct L1Dist<float>
84 typedef float value_type;
85 typedef float result_type;
89 __device__ __forceinline__ void reduceIter(float val1, float val2)
94 template <int THREAD_DIM> __device__ __forceinline__ void reduceAll(float* smem, int tid)
96 reduce<THREAD_DIM>(smem, mySum, tid, plus<float>());
99 __device__ __forceinline__ operator float() const
104 float mySum;
109 typedef float value_typ
[all...]
/external/opencv3/3rdparty/openexr/Half/
H A Dhalf.h50 // types. In arithmetic expressions, half, float and double can be
54 // float b (a + sqrt (a));
59 // Conversions from half to float are lossless; all half numbers
62 // Conversions from float to half may not preserve a float's value
63 // exactly. If a float is not representable as a half, then the
64 // float value is rounded to the nearest representable half. If a
65 // float value is exactly in the middle between the two closest
66 // representable half values, then the float value is rounded to
69 // Overflows during float
[all...]
/external/opencv3/modules/core/include/opencv2/core/
H A Doperations.hpp342 inline RNG::operator float() { return next()*2.3283064365386962890625e-10f; }
349 inline float RNG::uniform(float a, float b) { return ((float)*this)*(b - a) + a; }
H A Dpersistence.hpp536 //! returns the node content as float
537 operator float() const;
657 CV_EXPORTS void write( FileStorage& fs, const String& name, float value );
666 CV_EXPORTS void writeScalar( FileStorage& fs, float value );
676 CV_EXPORTS void read(const FileNode& node, float& value, float default_value);
838 void write( FileStorage& fs, const float& value )
1181 inline FileNode::operator float() const { float value; read(*this, value, 0.f); return value; }
/external/clang/test/Preprocessor/
H A Dcxx_oper_keyword_ms_compat.cpp54 #define float macro
139 float
/external/libcxx/test/std/numerics/c.math/
H A Dcmath.pass.cpp21 // convertible to int/float/double/etc
32 operator float () { return 0.f; }
105 static_assert((std::is_same<decltype(std::abs((float)0)), float>::value), "");
114 static_assert((std::is_same<decltype(std::acos((float)0)), float>::value), "");
125 static_assert((std::is_same<decltype(std::acosf(0)), float>::value), "");
133 static_assert((std::is_same<decltype(std::asin((float)0)), float>::value), "");
144 static_assert((std::is_same<decltype(std::asinf(0)), float>
[all...]
/external/opencv3/modules/core/src/
H A Drand.cpp214 static void randf_32f( float* arr, int len, uint64* state, const Vec2f* p, bool )
221 float f[4];
222 f[0] = (float)(int)(temp = RNG_NEXT(temp));
223 f[1] = (float)(int)(temp = RNG_NEXT(temp));
224 f[2] = (float)(int)(temp = RNG_NEXT(temp));
225 f[3] = (float)(int)(temp = RNG_NEXT(temp));
232 __m128 q0 = _mm_loadu_ps((const float*)(p + i));
233 __m128 q1 = _mm_loadu_ps((const float*)(p + i + 2));
255 _mm_mul_ss(_mm_set_ss((float)(int)temp), _mm_set_ss(p[i][0])),
326 randn_0_1_32f( float* ar
[all...]
/external/skia/src/core/
H A DSkLinearBitmapPipeline.cpp79 operator float () const {return fVal;}
81 float fVal;
89 operator float () const {return fVal;}
91 float fVal;
99 float dx = length / (count - 1);
485 Sk4i XIs = SkNx_cast<int, float>(xs);
486 Sk4i YIs = SkNx_cast<int, float>(ys);
501 Sk4i XIs = SkNx_cast<int, float>(xs);
502 Sk4i YIs = SkNx_cast<int, float>(ys);
515 Sk4f pixel = SkNx_cast<float, uint8_
[all...]
/external/eigen/unsupported/test/mpreal/
H A Dmpreal.h331 float toFloat (mp_rnd_t mode = GMP_RNDN) const;
343 explicit operator float () const { return toFloat(); }
565 // Inexact conversion from float
1705 inline float mpreal::toFloat (mp_rnd_t mode) const { return mpfr_get_flt(mpfr_srcptr(), mode); }
/external/clang/test/SemaCXX/
H A Dtype-traits.cpp9 struct POD { Enum e; int i; float f; NonPOD* p; };
18 union Union { int i; float f; };
27 float f;
333 { int arr[T(__is_final(PotentiallySealed<float*>))]; }
336 { int arr[T(__is_final(PotentiallyFinal<float*>))]; }
349 { int arr[F(__is_final(PotentiallyFinal<float>))]; }
350 { int arr[F(__is_final(PotentiallySealed<float>))]; }
356 { int arr[T(__is_sealed(PotentiallySealed<float*>))]; }
359 { int arr[T(__is_sealed(PotentiallyFinal<float*>))]; }
372 { int arr[F(__is_sealed(PotentiallyFinal<float>))]; }
[all...]
/external/v8/tools/profviz/
H A Dgnuplot-4.6.3-emscripten.js224 FLOAT_TYPES: {"float":0,"double":0},
248 "%float": 4,
250 }['%'+type]; // add '%' since float and double confuse Closure compiler as keys, and also spidermonkey as a compiler will remove 's from '_i8' etc
577 case 'float': HEAPF32[((ptr)>>2)]=value; break;
593 case 'float': return HEAPF32[((ptr)>>2)];
1925 // TODO: Support a/A (hex float) and m (last error) specifiers.
3049 // Read characters according to the format. floats are trickier, they may be in an unfloat state in the middle, then be a valid float later
4489 Module.print('float ' + x + ',' + y);// + ' ' + new Error().stack);
[all...]
/external/sqlite/dist/orig/
H A Dsqlite3.c4209 ** <tr><td> INTEGER <td> FLOAT <td> Convert from integer to float
4213 ** <tr><td> FLOAT <td> TEXT <td> ASCII rendering of the float
9469 # define float sqlite_int64 macro
22232 ** 16 (the number of significant digits in a 64-bit float) '0' is
[all...]
/external/sqlite/dist/
H A Dsqlite3.c4209 ** <tr><td> INTEGER <td> FLOAT <td> Convert from integer to float
4213 ** <tr><td> FLOAT <td> TEXT <td> ASCII rendering of the float
9469 # define float sqlite_int64 macro
22232 ** 16 (the number of significant digits in a 64-bit float) '0' is
[all...]

Completed in 1493 milliseconds