HomeSort by relevance Sort by last modified time
    Searched refs:start_ (Results 1 - 25 of 105) sorted by null

1 2 3 4 5

  /system/core/libmemunreachable/
LineBuffer.cpp 32 char* newline = reinterpret_cast<char*>(memchr(buffer_ + start_, '\n', bytes_));
35 *line = buffer_ + start_;
36 start_ = newline - buffer_ + 1;
42 if (start_ > 0) {
44 memmove(buffer_, buffer_ + start_, bytes_);
45 start_ = 0;
52 *line = buffer_ + start_;
55 start_ = 0;
LineBuffer.h 32 size_t start_ = 0; member in class:LineBuffer
  /system/extras/memory_replay/
LineBuffer.cpp 29 char* newline = reinterpret_cast<char*>(memchr(buffer_ + start_, '\n', bytes_));
32 *line = buffer_ + start_;
33 start_ = newline - buffer_ + 1;
39 if (start_ > 0) {
41 memmove(buffer_, buffer_ + start_, bytes_);
42 start_ = 0;
49 *line = buffer_ + start_;
52 start_ = 0;
LineBuffer.h 32 size_t start_ = 0; member in class:LineBuffer
  /build/kati/
timeutil.h 27 double start_; member in struct:ScopedTimeReporter
timeutil.cc 38 : name_(name), start_(GetTime()) {
42 double elapsed = GetTime() - start_;
  /external/v8/src/
utils-inl.h 20 : start_(TimestampMs()), result_(result) {}
22 ~TimedScope() { *result_ = TimestampMs() - start_; }
30 double start_; member in class:v8::internal::TimedScope
vector.h 22 Vector() : start_(NULL), length_(0) {}
23 Vector(T* data, int length) : start_(data), length_(length) {
28 explicit Vector(T (&arr)[N]) : start_(arr), length_(N) {}
50 T* start() const { return start_; }
55 return start_[index];
60 T& first() { return start_[0]; }
62 T& last() { return start_[length_ - 1]; }
65 inline iterator begin() const { return &start_[0]; }
66 inline iterator end() const { return &start_[length_]; }
71 for (int i = 0; i < length_; i++) result[i] = start_[i]
    [all...]
  /external/v8/src/heap/
store-buffer.cc 21 start_(nullptr),
32 start_ = reinterpret_cast<Address*>(RoundUp(start_as_int, kStoreBufferSize));
33 limit_ = start_ + (kStoreBufferSize / kPointerSize);
35 DCHECK(reinterpret_cast<Address>(start_) >= virtual_memory_->address());
40 DCHECK(start_ <= vm_limit);
45 if (!virtual_memory_->Commit(reinterpret_cast<Address>(start_),
50 top_ = start_;
56 top_ = start_ = limit_ = nullptr;
66 if (top_ == start_) return;
68 for (Address* current = start_; current < top_; current++)
    [all...]
store-buffer.h 42 Address* start_; member in class:v8::internal::StoreBuffer
gc-tracer.h 23 elements_[start_++] = value;
24 if (start_ == kSize) start_ = 0;
26 DCHECK_EQ(start_, 0);
35 int j = start_ + count_ - 1;
45 void Reset() { start_ = count_ = 0; }
49 int start_; member in class:v8::internal::RingBuffer
  /external/webrtc/webrtc/base/
bytebuffer.h 43 const char* Data() const { return bytes_ + start_; }
44 size_t Length() const { return end_ - start_; }
45 size_t Capacity() const { return size_ - start_; }
93 : start_(start), version_(version) { }
94 size_t start_; member in class:rtc::ByteBuffer::ReadPosition
110 size_t start_; member in class:rtc::ByteBuffer
bytebuffer.cc 52 start_ = 0;
134 val->append(bytes_ + start_, len);
135 start_ += len;
144 memcpy(val, bytes_ + start_, len);
145 start_ += len;
196 size_t len = std::min(end_ - start_, size);
199 memmove(bytes_, bytes_ + start_, len);
204 memcpy(new_bytes, bytes_ + start_, len);
208 start_ = 0;
216 start_ += size
    [all...]
  /external/sfntly/cpp/src/sample/subtly/
character_predicate.cc 25 : start_(start),
32 return start_ <= character && character <= end_;
character_predicate.h 40 int32_t start_; member in class:subtly::AcceptRange
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/test/
i420_video_source.h 31 start_(start),
54 if (start_) {
55 fseek(input_file_, static_cast<unsigned>(raw_sz_) * start_, SEEK_SET);
58 frame_ = start_;
107 unsigned int start_; member in class:libvpx_test::I420VideoSource
y4m_video_source.h 28 start_(start),
52 for (unsigned int i = 0; i < start_; i++) {
101 unsigned int start_; member in class:libvpx_test::Y4mVideoSource
  /external/parameter-framework/asio-1.10.6/include/asio/impl/
write.hpp 96 start_(0),
106 start_(other.start_),
116 start_(other.start_),
125 switch (start_ = start)
150 int start_; member in class:asio::detail::write_op
170 start_(0),
180 start_(other.start_),
224 int start_; member in class:asio::detail::write_op
298 int start_; member in class:asio::detail::write_op
379 int start_; member in class:asio::detail::write_op
461 int start_; member in class:asio::detail::write_op
    [all...]
read.hpp 98 start_(0),
108 start_(other.start_),
118 start_(other.start_),
127 switch (start_ = start)
152 int start_; member in class:asio::detail::read_op
171 start_(0),
181 start_(other.start_),
225 int start_; member in class:asio::detail::read_op
306 int start_; member in class:asio::detail::read_op
388 int start_; member in class:asio::detail::read_op
    [all...]
  /external/libvpx/libvpx/test/
yuv_video_source.h 34 start_(start),
58 if (start_)
59 fseek(input_file_, static_cast<unsigned>(raw_size_) * start_, SEEK_SET);
61 frame_ = start_;
139 unsigned int start_; member in class:libvpx_test::YUVVideoSource
y4m_video_source.h 29 start_(start),
55 for (unsigned int i = 0; i < start_; i++) {
120 unsigned int start_; member in class:libvpx_test::Y4mVideoSource
  /external/vulkan-validation-layers/demos/smoke/
ShellAndroid.cpp 44 clock_gettime(CLOCK_MONOTONIC, &start_);
55 time_t s = now.tv_sec - start_.tv_sec;
57 if (now.tv_nsec > start_.tv_nsec) {
58 ns = now.tv_nsec - start_.tv_nsec;
62 ns = one_s_in_ns - (start_.tv_nsec - now.tv_nsec);
69 struct timespec start_; member in class:__anon26013::PosixTimer
  /external/v8/src/wasm/
decoder.h 40 : start_(start),
51 DCHECK_GE(base, start_);
127 DCHECK(ptr >= start_ && (ptr + 2) <= end_);
139 DCHECK(ptr >= start_ && (ptr + 4) <= end_);
153 DCHECK(ptr >= start_ && (ptr + 8) <= end_);
173 TRACE(" +%d %-20s: ", static_cast<int>(pc_ - start_),
185 TRACE(" +%d %-20s: ", static_cast<int>(pc_ - start_),
198 TRACE(" +%d %-20s: ", static_cast<int>(pc_ - start_),
211 TRACE(" +%d %-20s: ", static_cast<int>(pc_ - start_),
257 } else if (pc_ < start_ || limit_ < (pc_ + size))
345 const byte* start_; member in class:v8::internal::wasm::Decoder
    [all...]
  /external/webrtc/webrtc/modules/video_coding/codecs/h264/
h264_video_toolbox_nalu.h 69 const uint8_t* const start_; member in class:webrtc::final
91 uint8_t* const start_; member in class:webrtc::final
  /external/v8/src/parsing/
preparse-data.h 75 : has_error_(false), start_(-1), end_(-1), error_type_(kSyntaxError) {}
84 start_ = start;
100 start_ = start;
109 int start() const { return start_; }
146 int start_; member in class:v8::internal::SingletonLogger

Completed in 438 milliseconds

1 2 3 4 5