HomeSort by relevance Sort by last modified time
    Searched refs:IsNormal (Results 1 - 14 of 14) sorted by null

  /packages/apps/Test/connectivity/sl4n/rapidjson/include/rapidjson/internal/
ieee754.h 43 bool IsNormal() const { return (u_ & kExponentMask) != 0 || Significand() == 0; }
46 uint64_t IntegerSignificand() const { return IsNormal() ? Significand() | kHiddenBit : Significand(); }
47 int IntegerExponent() const { return (IsNormal() ? Exponent() : kDenormalExponent) - kSignificandSize; }
  /external/lzma/CPP/Windows/
FileFind.h 54 bool IsNormal() const { return MatchesMask(FILE_ATTRIBUTE_NORMAL); }
  /external/spirv-llvm/lib/SPIRV/
OCLUtil.h 169 const static char IsNormal[] = "isnormal";
547 _SPIRV_OP(isnormal, IsNormal)
OCL20ToSPIRV.cpp 474 DemangledName == kOCLBuiltinName::IsNormal ||
    [all...]
  /external/spirv-llvm/lib/SPIRV/libSPIRV/
SPIRVOpCodeEnum.h 148 _SPIRV_OP(IsNormal, 159)
SPIRVInstruction.h     [all...]
  /external/swiftshader/third_party/LLVM/lib/Transforms/Utils/
LowerInvoke.cpp 515 Value *IsNormal = new ICmpInst(EntryBB->getTerminator(),
523 BranchInst::Create(ContBlock, CatchBB, IsNormal, EntryBB);
  /external/v8/src/compiler/
node-matchers.h 167 bool IsNormal() const {
168 return this->HasValue() && std::isnormal(this->Value());
machine-operator-reducer.cc 446 if (m.right().IsNormal() && m.right().IsPositiveOrNegativePowerOf2()) {
    [all...]
  /prebuilts/go/darwin-x86/src/vendor/golang_org/x/text/unicode/norm/
normalize.go 70 // IsNormal returns true if b == f(b).
71 func (f Form) IsNormal(b []byte) bool {
  /prebuilts/go/linux-x86/src/vendor/golang_org/x/text/unicode/norm/
normalize.go 70 // IsNormal returns true if b == f(b).
71 func (f Form) IsNormal(b []byte) bool {
  /external/swiftshader/third_party/LLVM/lib/CodeGen/
SjLjEHPrepare.cpp 650 Value *IsNormal = new ICmpInst(EntryBB->getTerminator(),
657 BranchInst::Create(ContBlock, DispatchBlock, IsNormal, EntryBB);
    [all...]
  /packages/apps/Test/connectivity/sl4n/rapidjson/test/unittest/
readertest.cpp 392 } while (e.IsNan() || e.IsInf() || !e.IsNormal());
    [all...]
  /external/clang/lib/CodeGen/
CGBuiltin.cpp     [all...]

Completed in 1808 milliseconds