Home
last modified time | relevance | path

Searched refs:kLimit (Results 1 – 6 of 6) sorted by relevance

/external/skqp/fuzz/
DFuzzCommon.h16 constexpr float kLimit = 1.0e35f; // FLT_MAX? in fuzz_nice_float() local
17 *f = (v == v && v <= kLimit && v >= -kLimit) ? v : 0.0f; in fuzz_nice_float()
/external/skia/fuzz/
DFuzzCommon.h16 constexpr float kLimit = 1.0e35f; // FLT_MAX? in fuzz_nice_float() local
17 *f = (v == v && v <= kLimit && v >= -kLimit) ? v : 0.0f; in fuzz_nice_float()
/external/skia/src/codec/
DSkWbmpCodec.cpp47 const uint64_t kLimit = 0xFE00000000000000; in read_mbf() local
48 SkASSERT(kLimit == ~((~static_cast<uint64_t>(0)) >> 7)); in read_mbf()
50 if (n & kLimit) { // Will overflow on shift by 7. in read_mbf()
/external/skqp/src/codec/
DSkWbmpCodec.cpp47 const uint64_t kLimit = 0xFE00000000000000; in read_mbf() local
48 SkASSERT(kLimit == ~((~static_cast<uint64_t>(0)) >> 7)); in read_mbf()
50 if (n & kLimit) { // Will overflow on shift by 7. in read_mbf()
/external/v8/src/
Dinterface-descriptors.h664 DEFINE_PARAMETERS(kReceiver, kString, kLimit)
/external/v8/src/builtins/
Dbuiltins-regexp.cc2125 Node* const maybe_limit = Parameter(Descriptor::kLimit); in TF_BUILTIN()