Home
last modified time | relevance | path

Searched refs:as_float (Results 1 – 12 of 12) sorted by relevance

/openbsd-src/gnu/llvm/libcxx/src/
H A Dstring.cpp189 inline V as_float(const string& func, const S& s, size_t* idx = nullptr);
192 inline float as_float(const string& func, const string& s, size_t* idx) { in as_float() function
197 inline double as_float(const string& func, const string& s, size_t* idx) { in as_float() function
202 inline long double as_float(const string& func, const string& s, size_t* idx) { in as_float() function
208 inline float as_float(const string& func, const wstring& s, size_t* idx) { in as_float() function
213 inline double as_float(const string& func, const wstring& s, size_t* idx) { in as_float() function
218 inline long double as_float(const string& func, const wstring& s, size_t* idx) { in as_float() function
246 return as_float<float>("stof", str, idx); in stof()
250 return as_float<double>("stod", str, idx); in stod()
254 return as_float<long double>("stold", str, idx); in stold()
[all …]
/openbsd-src/gnu/usr.bin/perl/cpan/Math-BigInt/t/
H A Drt-16221.t6 # - Math::BigInt::objectify() calls as_float() if the target object class is
69 sub as_float {
/openbsd-src/gnu/usr.bin/perl/cpan/Math-BigRat/t/
H A Dbigrat.t
/openbsd-src/lib/libcbor/src/cbor/
H A Dencoding.c130 uint32_t val = ((union _cbor_float_helper){.as_float = value}).as_uint; in cbor_encode_half()
182 ((union _cbor_float_helper){.as_float = value}).as_uint, buffer, in cbor_encode_single()
H A Ddata.h148 float as_float; member
/openbsd-src/lib/libcbor/src/cbor/internal/
H A Dloaders.c74 return helper.as_float; in _cbor_load_float()
/openbsd-src/gnu/llvm/clang/lib/Headers/
H A Dopencl-c-base.h264 #define NAN as_float(INT_MAX)
610 #define as_float(x) __builtin_astype((x), float) macro
/openbsd-src/gnu/llvm/clang/lib/Headers/ppc_wrappers/
H A Dmmintrin.h53 float as_float[2]; member
/openbsd-src/gnu/usr.bin/perl/cpan/Math-BigInt/lib/Math/
H A DBigInt.pm1477 sub as_float {
5471 if ($a[$i] -> can('as_float')) {
5472 $a[$i] = $a[$i] -> as_float();
6554 $y = $x->as_float(); # return as a Math::BigFloat
7200 =item as_float()
1285 sub as_float { global() subroutine
H A DBigFloat.pm1359 sub as_float {
6278 $y = $x->as_float(); # return as a Math::BigFloat
6737 =item as_float()
6749 method C<as_float()>. The method C<as_float()> is expected to return either an
6753 In Math::BigFloat, C<as_float()> has the same effect as C<copy()>.
1318 sub as_float { global() subroutine
/openbsd-src/gnu/usr.bin/perl/cpan/Math-BigRat/lib/Math/
H A DBigRat.pm
/openbsd-src/gnu/usr.bin/perl/pod/
H A Dperl589delta.pod723 implements new C<as_float> method.