OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:ieee754
(Results
1 - 25
of
106
) sorted by null
1
2
3
4
5
/external/fio/t/
ieee754.c
2
#include "../lib/
ieee754
.h"
/external/opencv3/modules/hal/include/opencv2/hal/
defs.h
388
/* it's ok if round does not comply with
IEEE754
standard;
445
The function returns 1 if the argument is Not A Number (as defined by
IEEE754
standard), 0
449
Cv64suf
ieee754
;
local
450
ieee754
.f = value;
451
return ((unsigned)(
ieee754
.u >> 32) & 0x7fffffff) +
452
((unsigned)
ieee754
.u != 0) > 0x7ff00000;
459
The function returns 1 if the argument is a plus or minus infinity (as defined by
IEEE754
standard)
463
Cv64suf
ieee754
;
local
464
ieee754
.f = value;
465
return ((unsigned)(
ieee754
.u >> 32) & 0x7fffffff) == 0x7ff00000 &
557
Cv32suf
ieee754
;
local
565
Cv32suf
ieee754
;
local
[
all
...]
/external/fio/lib/
ieee754.c
9
#include "
ieee754
.h"
zipf.c
8
#include "
ieee754
.h"
/external/fio/
Makefile
32
lib/num2str.c lib/
ieee754
.c $(wildcard crc/*.c) engines/cpu.c \
180
T_IEEE_OBJS = t/
ieee754
.o
181
T_IEEE_OBJS += lib/
ieee754
.o
182
T_IEEE_PROGS = t/
ieee754
185
T_ZIPF_OBJS += t/log.o lib/
ieee754
.o lib/rand.o lib/zipf.o t/genzipf.o
330
t/
ieee754
: $(T_IEEE_OBJS)
Android.mk
30
lib_src_files := lib/rbtree.c lib/flist_sort.c lib/getrusage.c lib/hweight.c lib/
ieee754
.c lib/lfsr.c \
iolog.h
5
#include "lib/
ieee754
.h"
thread_options.h
9
#include "lib/
ieee754
.h"
/cts/tools/dex-tools/src/dex/structure/
DexEncodedValueType.java
69
*
IEEE754
32-bit floating point value
78
*
IEEE754
64-bit floating point value
/cts/tools/dex-tools/src/dex/reader/
DexEncodedValueImpl.java
217
* zero-extended to the right, and interpreted as an
IEEE754
64-bit floating
226
* zero-extended to the right, and interpreted as an
IEEE754
32-bit floating
/external/valgrind/VEX/pub/
libvex_basictypes.h
95
typedef float Float; /*
IEEE754
single-precision (32-bit) value */
96
typedef double Double; /*
IEEE754
double-precision (64-bit) value */
/external/fdlibm/
readme
135
3.
Ieee754
core functions
148
Wrapper functions will twist the result of the
ieee754
151
if _LIB_VERSION = _IEEE_, return the
ieee754
result;
/external/opencv/cxcore/include/
cxtypes.h
276
Cv64suf
ieee754
;
local
277
ieee754
.f = value;
278
return ((unsigned)(
ieee754
.u >> 32) & 0x7fffffff) +
279
((unsigned)
ieee754
.u != 0) > 0x7ff00000;
291
Cv64suf
ieee754
;
local
292
ieee754
.f = value;
293
return ((unsigned)(
ieee754
.u >> 32) & 0x7fffffff) == 0x7ff00000 &&
294
(unsigned)
ieee754
.u == 0;
[
all
...]
/external/bison/m4/
frexp.m4
139
/* On machines with
IEEE754
arithmetic: x = 1.11254e-308, exp = -1022.
/external/libpng/contrib/tools/
cvtcolor.c
56
/* FE_TONEAREST is the
IEEE754
round to nearest, preferring even, mode; i.e.
/external/valgrind/VEX/priv/
guest_generic_x87.h
50
/* Convert an
IEEE754
double (64-bit) into an x87 extended double
host_x86_defs.h
374
Xin_Fp64to32, /* FP round
IEEE754
double to
IEEE754
single */
565
IEEE754
32-bit (float) type. */
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/
ieee754.h
199
#endif /*
ieee754
.h */
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/
ieee754.h
199
#endif /*
ieee754
.h */
/external/opencv3/modules/core/include/opencv2/core/
private.hpp
139
/*
IEEE754
constants and macros */
/packages/apps/Test/connectivity/sl4n/rapidjson/include/rapidjson/internal/
dtoa.h
24
#include "
ieee754
.h"
strtod.h
19
#include "
ieee754
.h"
/external/valgrind/VEX/useful/
fp_80_64.c
94
/* Convert a
IEEE754
double (64-bit) into an x87 extended double
187
(identity?) of the NaN.
IEEE754
doesn't require preserving
291
(identity?) of the NaN.
IEEE754
doesn't require preserving
/external/icu/icu4c/source/test/intltest/
nmfmtrt.cpp
210
// This is a normal machine that can support
IEEE754
denormalized doubles without throwing an error.
/external/valgrind/
glibc-2.2.supp
247
# __mpn_construct_double (../sysdeps/
ieee754
/dbl-64/mpn2dbl.c:45)
Completed in 1385 milliseconds
1
2
3
4
5