/external/ImageMagick/Magick++/lib/ |
D | ResourceLimits.cpp | 13 void Magick::ResourceLimits::area(const MagickSizeType limit_) in area() argument 15 (void) SetMagickResourceLimit(AreaResource,limit_); in area() 23 void Magick::ResourceLimits::disk(const MagickSizeType limit_) in disk() argument 25 (void) SetMagickResourceLimit(DiskResource,limit_); in disk() 33 void Magick::ResourceLimits::file(const MagickSizeType limit_) in file() argument 35 (void) SetMagickResourceLimit(FileResource,limit_); in file() 43 void Magick::ResourceLimits::height(const MagickSizeType limit_) in height() argument 45 (void) SetMagickResourceLimit(HeightResource,limit_); in height() 53 void Magick::ResourceLimits::map(const MagickSizeType limit_) in map() argument 55 (void) SetMagickResourceLimit(MapResource,limit_); in map() [all …]
|
/external/ImageMagick/Magick++/lib/Magick++/ |
D | ResourceLimits.h | 21 static void area(const MagickSizeType limit_); 26 static void disk(const MagickSizeType limit_); 34 static void file(const MagickSizeType limit_); 38 static void height(const MagickSizeType limit_); 43 static void map(const MagickSizeType limit_); 49 static void memory(const MagickSizeType limit_); 53 static void thread(const MagickSizeType limit_); 58 static void throttle(const MagickSizeType limit_); 62 static void width(const MagickSizeType limit_);
|
/external/protobuf/src/google/protobuf/io/ |
D | zero_copy_stream_impl.cc | 416 : input_(input), limit_(limit) { in LimitingInputStream() 422 if (limit_ < 0) input_->BackUp(-limit_); in ~LimitingInputStream() 426 if (limit_ <= 0) return false; in Next() 429 limit_ -= *size; in Next() 430 if (limit_ < 0) { in Next() 432 *size += limit_; in Next() 438 if (limit_ < 0) { in BackUp() 439 input_->BackUp(count - limit_); in BackUp() 440 limit_ = count; in BackUp() 443 limit_ += count; in BackUp() [all …]
|
D | zero_copy_stream_impl.h | 346 int64 limit_; // Decreases as we go, becomes negative if we overshoot. variable
|
/external/v8/src/heap/ |
D | store-buffer.cc | 22 limit_(nullptr), in StoreBuffer() 33 limit_ = start_ + (kStoreBufferSize / kPointerSize); in SetUp() 36 DCHECK(reinterpret_cast<Address>(limit_) >= virtual_memory_->address()); in SetUp() 41 DCHECK(limit_ <= vm_limit); in SetUp() 43 DCHECK((reinterpret_cast<uintptr_t>(limit_) & kStoreBufferMask) == 0); in SetUp() 56 top_ = start_ = limit_ = nullptr; in TearDown() 67 DCHECK(top_ <= limit_); in MoveEntriesToRememberedSet()
|
D | store-buffer.h | 43 Address* limit_; variable
|
D | spaces.h | 1670 AllocationInfo() : top_(nullptr), limit_(nullptr) {} in AllocationInfo() 1671 AllocationInfo(Address top, Address limit) : top_(top), limit_(limit) {} in AllocationInfo() 1693 limit_ = limit; in INLINE() 1697 return limit_; in INLINE() 1700 Address* limit_address() { return &limit_; } in limit_address() 1705 Page::FromAllocationAreaAddress(limit_)) && in VerifyPagedAllocation() 1706 (top_ <= limit_); in VerifyPagedAllocation() 1714 Address limit_; variable 2621 Address limit_; variable
|
/external/v8/src/crankshaft/ |
D | lithium-inl.h | 36 : instr_(instr), limit_(instr->TempCount()), current_(0) { in TempIterator() 41 bool TempIterator::Done() { return current_ >= limit_; } in Done() 51 while (current_ < limit_ && instr_->TempAt(current_) == NULL) ++current_; in SkipUninteresting() 62 : instr_(instr), limit_(instr->InputCount()), current_(0) { in InputIterator() 67 bool InputIterator::Done() { return current_ >= limit_; } in Done() 84 while (current_ < limit_) { in SkipUninteresting()
|
D | lithium.h | 554 limit_(env != NULL ? env->values()->length() : 0), in ShallowIterator() 559 bool Done() { return current_ >= limit_; } in Done() 582 while (current_ < limit_ && ShouldSkip(env_->values()->at(current_))) { in SkipUninteresting() 588 int limit_; variable 818 int limit_; variable 834 int limit_; variable
|
/external/v8/src/wasm/ |
D | decoder.h | 42 limit_(end), in Decoder() 52 if ((base + offset + length) > limit_) { in check() 216 if (end > limit_) end = limit_; 247 pc_ = limit_; in consume_bytes() 257 } else if (pc_ < start_ || limit_ < (pc_ + size)) { in checkAvailable() 298 for (const byte* ptr = pc_; ptr < limit_; ptr++) { in traceOffEnd() 302 pc_ = limit_; in traceOffEnd() 329 limit_ = end; in Reset() 338 bool more() const { return pc_ < limit_; } in more() 347 const byte* limit_; variable [all …]
|
D | module-decoder.cc | 37 if (limit_ < start_) { in ModuleDecoder() 39 limit_ = start_; in ModuleDecoder() 44 pc_ = limit_; // On error, terminate section decoding loop. in onFirstError() 76 module->module_end = limit_; in DecodeModule() 108 while (pc_ < limit_) { in DecodeModule() 142 limit_ = pc_; in DecodeModule() 197 if (pc_ > limit_) { in DecodeModule() 455 function->code_end_offset = off(limit_); // ---- code end in DecodeSingleFunction() 506 uint32_t module_limit = static_cast<uint32_t>(limit_ - start_); in DecodeDataSegmentInModule() 574 if (offset > static_cast<uint32_t>(limit_ - start_)) { in consume_offset()
|
D | ast-decoder.cc | 113 if ((pc + sizeof(byte)) >= limit_) { in ByteOperand() 121 if ((pc + sizeof(uint32_t)) >= limit_) { in Uint32Operand() 129 if ((pc + sizeof(uint64_t)) >= limit_) { in Uint64Operand() 588 while (entries-- > 0 && pc_ < limit_) { in DecodeLocalDecls() 618 reinterpret_cast<const void*>(limit_), baserel(pc_), in DecodeFunctionBody() 619 static_cast<int>(limit_ - start_), builder_ ? "graph building" : ""); in DecodeFunctionBody() 621 if (pc_ >= limit_) return; // Nothing to do. in DecodeFunctionBody() 1077 if (pc_ >= limit_) { in DecodeFunctionBody() 1079 if (pc_ > limit_ && ok()) error("Beyond end of code"); in DecodeFunctionBody() 1446 limit_ = start_; // Terminate decoding loop. in onFirstError() [all …]
|
/external/v8/src/ |
D | zone.cc | 79 limit_(0), in Zone() 107 const uintptr_t limit = reinterpret_cast<uintptr_t>(limit_); in New() 163 limit_ = keep->end(); in DeleteAll() 171 position_ = limit_ = 0; in DeleteAll() 227 DCHECK(limit_ < position_ || in NewExpand() 228 reinterpret_cast<uintptr_t>(limit_) - in NewExpand() 274 limit_ = segment->end(); in NewExpand() 275 DCHECK(position_ <= limit_); in NewExpand()
|
/external/libvpx/libvpx/test/ |
D | yuv_video_source.h | 35 limit_(limit), in YUVVideoSource() 70 virtual vpx_image_t *img() const { return (frame_ < limit_) ? img_ : NULL; } in img() 84 virtual unsigned int limit() const { return limit_; } in limit() 130 limit_ = frame_; in FillFrame() 140 unsigned int limit_; variable
|
D | y4m_video_source.h | 30 limit_(limit), in Y4mVideoSource() 72 return (frame_ < limit_) ? img_.get() : NULL; in img() 87 virtual unsigned int limit() const { return limit_; } in limit() 121 unsigned int limit_; variable
|
D | video_source.h | 142 limit_(100), in DummyVideoSource() 162 return (frame_ < limit_) ? img_ : NULL; in img() 177 virtual unsigned int limit() const { return limit_; } in limit() 180 limit_ = limit; in set_limit() 209 unsigned int limit_; variable
|
D | y4m_test.cc | 87 limit_ = limit; in Init() 122 for (unsigned int i = start_; i < limit_; i++) { in Md5Check() 170 for (unsigned int i = start_; i < limit_; i++) { in WriteY4mAndReadBack()
|
D | resize_test.cc | 111 limit_ = 60; in ResizingVideoSource() 501 limit_ = 30; in ResizingCspVideoSource()
|
/external/v8/src/regexp/ |
D | regexp-stack.h | 60 Address* limit_address() { return &(thread_local_.limit_); } in limit_address() 93 Address limit_; member 97 limit_ = reinterpret_cast<Address>(kMemoryTop); in Clear()
|
D | regexp-stack.cc | 81 thread_local_.limit_ = new_memory + kStackLimitSlack * kPointerSize; in EnsureCapacity()
|
/external/v8/test/unittests/base/platform/ |
D | condition-variable-unittest.cc | 226 limit_(limit), in LoopIncrementThread() 239 while (count % thread_count_ != rem_ && count < limit_) { in Run() 243 if (count >= limit_) break; in Run() 258 const int limit_; member in v8::base::__anon2c3d16790311::LoopIncrementThread
|
/external/jsoncpp/src/lib_json/ |
D | json_value.cpp | 331 comments_(0), start_(other.start_), limit_(other.limit_) { in Value() 422 std::swap(limit_, other.limit_); in swap() 798 limit_ = 0; in clear() 904 limit_ = 0; in initBasic() 1206 void Value::setOffsetLimit(size_t limit) { limit_ = limit; } in setOffsetLimit() 1210 size_t Value::getOffsetLimit() const { return limit_; } in getOffsetLimit()
|
/external/icu/android_icu4j/src/main/java/android/icu/text/ |
D | StringSearch.java | 984 int limit_ = -1; field in StringSearch.Match 1226 m.limit_ = mLimit; in search() 1485 m.limit_ = mLimit; in searchBackwards() 1510 search_.setMatchedLength(match.limit_ - match.start_); in handleNextCommonImpl() 1560 search_.setMatchedLength(match.limit_ - match.start_); in handlePreviousCommonImpl()
|
/external/icu/icu4j/main/classes/collate/src/com/ibm/icu/text/ |
D | StringSearch.java | 1000 int limit_ = -1; field in StringSearch.Match 1242 m.limit_ = mLimit; in search() 1501 m.limit_ = mLimit; in searchBackwards() 1526 search_.setMatchedLength(match.limit_ - match.start_); in handleNextCommonImpl() 1576 search_.setMatchedLength(match.limit_ - match.start_); in handlePreviousCommonImpl()
|
/external/openfst/src/include/fst/extensions/pdt/ |
D | expand.h | 485 Weight limit_; // Weight limit variable 683 return less_(limit_, w); in PruneArc() 717 if ((final == Weight::Zero()) || less_(limit_, Times(Distance(s), final))) in ProcFinal() 817 if (less_(limit_, w)) in ProcCloseParen() 878 limit_ = Times(DistanceToDest(ifst_->Start(), rfst_.Start() - 1), threshold); in Expand()
|