OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:IsFloatZero
(Results
1 - 2
of
2
) sorted by null
/external/pdfium/core/fxcrt/
fx_system.h
82
#define
IsFloatZero
(f) ((f) < 0.0001 && (f) > -0.0001)
83
#define IsFloatBigger(fa, fb) ((fa) > (fb) && !
IsFloatZero
((fa) - (fb)))
84
#define IsFloatSmaller(fa, fb) ((fa) < (fb) && !
IsFloatZero
((fa) - (fb)))
85
#define IsFloatEqual(fa, fb)
IsFloatZero
((fa) - (fb))
/external/vixl/src/aarch32/
operands-aarch32.h
317
bool
IsFloatZero
() const {
405
bool
IsFloatZero
() const {
407
return imm_.
IsFloatZero
();
Completed in 2942 milliseconds