HomeSort by relevance Sort by last modified time
    Searched defs:limit_ (Results 1 - 25 of 30) sorted by null

1 2

  /toolchain/binutils/binutils-2.25/gold/
descriptors.h 94 int limit_; member in class:gold::Descriptors
  /external/libvpx/libvpx/test/
yuv_video_source.h 31 limit_(limit), frame_(0), width_(0), height_(0),
61 virtual vpx_image_t *img() const { return (frame_ < limit_) ? img_ : NULL; }
75 virtual unsigned int limit() const { return limit_; }
104 limit_ = frame_;
114 unsigned int limit_; member in class:libvpx_test::YUVVideoSource
y4m_video_source.h 26 start_(start), limit_(limit), frame_(0), framerate_numerator_(0),
64 return (frame_ < limit_) ? img_.get() : NULL;
79 virtual unsigned int limit() const { return limit_; }
113 unsigned int limit_; member in class:libvpx_test::Y4mVideoSource
video_source.h 136 : img_(NULL), limit_(100), width_(80), height_(64),
153 virtual vpx_image_t *img() const { return (frame_ < limit_) ? img_ : NULL; }
167 virtual unsigned int limit() const { return limit_; }
169 void set_limit(unsigned int limit) { limit_ = limit; }
199 unsigned int limit_; member in class:libvpx_test::DummyVideoSource
  /external/v8/src/regexp/
regexp-stack.h 60 Address* limit_address() { return &(thread_local_.limit_); }
93 Address limit_; member in struct:v8::internal::RegExpStack::ThreadLocal
97 limit_ = reinterpret_cast<Address>(kMemoryTop);
  /external/protobuf/src/google/protobuf/io/
zero_copy_stream_impl.h 346 int64 limit_; // Decreases as we go, becomes negative if we overshoot. member in class:google::protobuf::io::LimitingInputStream
  /external/protobuf/src/google/protobuf/stubs/
bytestream.h 341 size_t limit_; member in class:google::protobuf::strings::LimitByteSource
  /external/vixl/src/
code-generation-scopes-vixl.h 96 limit_ = assembler_->GetSizeOfCodeGenerated() + size;
118 VIXL_ASSERT(assembler_->GetSizeOfCodeGenerated() == limit_);
121 VIXL_ASSERT(assembler_->GetSizeOfCodeGenerated() <= limit_);
133 size_t limit_; member in class:vixl::CodeBufferCheckScope
  /prebuilts/misc/darwin-x86_64/protobuf2.5/include/google/protobuf/io/
zero_copy_stream_impl.h 346 int64 limit_; // Decreases as we go, becomes negative if we overshoot. member in class:google::protobuf::io::LimitingInputStream
  /prebuilts/misc/linux-x86_64/protobuf2.5/include/google/protobuf/io/
zero_copy_stream_impl.h 346 int64 limit_; // Decreases as we go, becomes negative if we overshoot. member in class:google::protobuf::io::LimitingInputStream
  /prebuilts/misc/windows/protobuf2.5/include/google/protobuf/io/
zero_copy_stream_impl.h 346 int64 limit_; // Decreases as we go, becomes negative if we overshoot. member in class:google::protobuf::io::LimitingInputStream
  /prebuilts/tools/darwin-x86_64/protoc/include/google/protobuf/io/
zero_copy_stream_impl.h 346 int64 limit_; // Decreases as we go, becomes negative if we overshoot. member in class:google::protobuf::io::LimitingInputStream
  /prebuilts/tools/darwin-x86_64/protoc/include/google/protobuf/stubs/
bytestream.h 341 size_t limit_; member in class:google::protobuf::strings::LimitByteSource
  /prebuilts/tools/linux-x86_64/protoc/include/google/protobuf/io/
zero_copy_stream_impl.h 346 int64 limit_; // Decreases as we go, becomes negative if we overshoot. member in class:google::protobuf::io::LimitingInputStream
  /external/v8/src/heap/
store-buffer.h 96 if (top_ + sizeof(Address) * 2 > limit_[current_]) {
117 if (top_ + sizeof(Address) > limit_[current_]) {
194 Address* limit_[kStoreBuffers]; member in class:v8::internal::StoreBuffer
heap.h 401 limit_(nullptr),
437 struct Entry* limit_; member in class:v8::internal::GarbageCollectionReason::PromotionQueue
    [all...]
  /external/v8/src/zone/
zone.h 106 Address limit_; member in class:v8::internal::final
  /art/runtime/gc/space/
space.h 280 return limit_;
290 limit_ = limit;
326 Space(name, gc_retention_policy), begin_(begin), end_(end), limit_(limit) {
336 uint8_t* limit_; member in class:art::gc::space::ContinuousSpace
  /art/compiler/utils/
assembler.h 241 CHECK_GE(limit_, contents_);
242 return (limit_ - contents_) + kMinimumGap;
258 uint8_t* limit_; member in class:art::AssemblerBuffer
268 uint8_t* limit() const { return limit_; }
  /external/jsoncpp/include/json/
value.h 502 size_t limit_; member in class:Json::Value
  /external/icu/android_icu4j/src/main/java/android/icu/text/
StringSearch.java 986 int limit_ = -1; field in class:StringSearch.Match
    [all...]
  /external/icu/icu4j/main/classes/collate/src/com/ibm/icu/text/
StringSearch.java 1002 int limit_ = -1; field in class:StringSearch.Match
    [all...]
  /external/protobuf/conformance/third_party/jsoncpp/
json.h 987 size_t limit_; member in class:Json::Value
    [all...]
  /external/v8/src/crankshaft/
lithium.h 554 limit_(env != NULL ? env->values()->length() : 0),
559 bool Done() { return current_ >= limit_; }
582 while (current_ < limit_ && ShouldSkip(env_->values()->at(current_))) {
588 int limit_; member in class:v8::internal::BASE_EMBEDDED
809 int limit_; member in class:v8::internal::BASE_EMBEDDED
825 int limit_; member in class:v8::internal::BASE_EMBEDDED
  /external/v8/src/
frames.cc 34 : limit_(frame->fp()), handler_(handler) {
42 return handler_ == NULL || handler_->address() > limit_;
50 const Address limit_; member in class:v8::internal::BASE_EMBEDDED
    [all...]

Completed in 743 milliseconds

1 2