Home
last modified time | relevance | path

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

/external/tensorflow/tensorflow/compiler/xla/service/
Dhlo_pass_fix.h41 const int64 kLimit = 25; in Run() local
48 if (iteration_count == kLimit) { in Run()
62 const int64 kLimit = 25; in RunOnModuleGroup() local
70 if (iteration_count == kLimit) { in RunOnModuleGroup()
/external/image_io/src/base/
Ddata_context.cc115 const size_t kLimit = 25; in GetClippedAndLineRange() local
121 line_begin = (clipped_range->GetBegin() + kLimit < location_) in GetClippedAndLineRange()
122 ? location_ - kLimit in GetClippedAndLineRange()
124 line_end = std::min(line_begin + 2 * kLimit, clipped_range->GetEnd()); in GetClippedAndLineRange()
127 line_end = std::min(location_ + 2 * kLimit, range_.GetEnd()); in GetClippedAndLineRange()
/external/skqp/src/codec/
DSkWbmpCodec.cpp49 const uint64_t kLimit = 0xFE00000000000000; in read_mbf() local
50 SkASSERT(kLimit == ~((~static_cast<uint64_t>(0)) >> 7)); in read_mbf()
52 if (n & kLimit) { // Will overflow on shift by 7. in read_mbf()
/external/skia/src/codec/
DSkWbmpCodec.cpp49 const uint64_t kLimit = 0xFE00000000000000; in read_mbf() local
50 SkASSERT(kLimit == ~((~static_cast<uint64_t>(0)) >> 7)); in read_mbf()
52 if (n & kLimit) { // Will overflow on shift by 7. in read_mbf()
/external/libaom/libaom/test/
Dav1_ext_tile_test.cc24 const int kLimit = 8; variable
118 bool IsLastFrame = (pkt->data.frame.pts == (aom_codec_pts_t)(kLimit - 1)); in FramePktHook()
177 "hantro_collage_w352h288.yuv", kImgWidth, kImgHeight, 30, 1, 0, kLimit); in TestRoundTrip()
/external/skqp/fuzz/
DFuzzCommon.cpp15 constexpr float kLimit = 1.0e35f; // FLT_MAX? in fuzz_nice_float() local
16 *f = (v == v && v <= kLimit && v >= -kLimit) ? v : 0.0f; in fuzz_nice_float()
/external/skia/fuzz/
DFuzzCommon.cpp15 constexpr float kLimit = 1.0e35f; // FLT_MAX? in fuzz_nice_float() local
16 *f = (v == v && v <= kLimit && v >= -kLimit) ? v : 0.0f; in fuzz_nice_float()
/external/pdfium/core/fpdfapi/render/
Dcpdf_imagerenderer.cpp49 constexpr int kLimit = 256 * 1024 * 1024; in IsImageValueTooBig() local
52 return safe_val.ValueOrDefault(kLimit) >= kLimit; in IsImageValueTooBig()