HomeSort by relevance Sort by last modified time
    Searched defs:limit_ (Results 1 - 25 of 32) 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 35 limit_(limit),
70 virtual vpx_image_t *img() const { return (frame_ < limit_) ? img_ : NULL; }
84 virtual unsigned int limit() const { return limit_; }
130 limit_ = frame_;
140 unsigned int limit_; member in class:libvpx_test::YUVVideoSource
y4m_video_source.h 30 limit_(limit),
72 return (frame_ < limit_) ? img_.get() : NULL;
87 virtual unsigned int limit() const { return limit_; }
121 unsigned int limit_; member in class:libvpx_test::Y4mVideoSource
video_source.h 142 limit_(100),
162 return (frame_ < limit_) ? img_ : NULL;
177 virtual unsigned int limit() const { return limit_; }
180 limit_ = limit;
209 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/v8/test/unittests/base/platform/
condition-variable-unittest.cc 226 limit_(limit),
239 while (count % thread_count_ != rem_ && count < limit_) {
243 if (count >= limit_) break;
258 const int limit_; member in class:v8::base::__anon24464::final
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/test/
i420_video_source.h 32 limit_(limit),
67 virtual vpx_image_t *img() const { return (frame_ < limit_) ? img_ : NULL; }
81 virtual unsigned int limit() const { return limit_; }
98 limit_ = frame_;
108 unsigned int limit_; member in class:libvpx_test::I420VideoSource
y4m_video_source.h 29 limit_(limit),
65 return (frame_ < limit_) ? img_.get() : NULL;
80 virtual unsigned int limit() const { return limit_; }
102 unsigned int limit_; member in class:libvpx_test::Y4mVideoSource
video_source.h 87 DummyVideoSource() : img_(NULL), limit_(100), width_(0), height_(0) {
104 return (frame_ < limit_) ? img_ : NULL;
119 virtual unsigned int limit() const { return limit_; }
136 unsigned int limit_; member in class:libvpx_test::DummyVideoSource
  /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/v8/src/wasm/
decoder.h 34 limit_(end),
116 if (end > limit_) end = limit_;
138 // Check that at least {size} bytes exist between {pc_} and {limit_}.
140 if (pc_ < start_ || (pc_ + size) > limit_) {
180 for (const byte* ptr = pc_; ptr < limit_; ptr++) {
184 pc_ = limit_;
210 limit_ = end;
222 const byte* limit_; member in class:v8::internal::wasm::Decoder
  /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 106 Address* limit_; member in class:v8::internal::StoreBuffer
  /external/v8/src/
zone.h 115 Address limit_; member in class:v8::internal::final
  /art/compiler/utils/
assembler.h 239 CHECK_GE(limit_, contents_);
240 return (limit_ - contents_) + kMinimumGap;
256 uint8_t* limit_; member in class:art::AssemblerBuffer
266 uint8_t* limit() const { return limit_; }
  /art/runtime/gc/space/
space.h 281 return limit_;
291 limit_ = limit;
327 Space(name, gc_retention_policy), begin_(begin), end_(end), limit_(limit) {
337 uint8_t* limit_; member in class:art::gc::space::ContinuousSpace
  /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 984 int limit_ = -1; field in class:StringSearch.Match
    [all...]
  /external/icu/icu4j/main/classes/collate/src/com/ibm/icu/text/
StringSearch.java 1000 int limit_ = -1; field in class:StringSearch.Match
    [all...]
  /external/v8/src/crankshaft/
lithium.h 553 limit_(env != NULL ? env->values()->length() : 0),
558 bool Done() { return current_ >= limit_; }
581 while (current_ < limit_ && ShouldSkip(env_->values()->at(current_))) {
587 int limit_; member in class:v8::internal::BASE_EMBEDDED
802 int limit_; member in class:v8::internal::BASE_EMBEDDED
818 int limit_; member in class:v8::internal::BASE_EMBEDDED

Completed in 669 milliseconds

1 2