HomeSort by relevance Sort by last modified time
    Searched refs:num_bytes_ (Results 1 - 11 of 11) sorted by null

  /external/chromium_org/gin/
array_buffer.h 34 size_t num_bytes() const { return num_bytes_; }
41 size_t num_bytes_; member in class:gin::ArrayBuffer
62 size_t num_bytes() const { return num_bytes_; }
67 size_t num_bytes_; member in class:gin::ArrayBufferView
array_buffer.cc 130 num_bytes_(0) {
137 num_bytes_ = private_->length();
146 num_bytes_ = other.num_bytes_;
165 num_bytes_(0) {
172 num_bytes_(view->ByteLength()) {
181 num_bytes_ = other.num_bytes_;
  /external/chromium_org/mojo/system/
raw_shared_buffer.cc 53 if (offset > num_bytes_ || length == 0)
56 // Note: This is an overflow-safe check of |offset + length > num_bytes_|
58 if (length > num_bytes_ - offset)
79 RawSharedBuffer::RawSharedBuffer(size_t num_bytes) : num_bytes_(num_bytes) {
raw_shared_buffer_posix.cc 41 if (static_cast<uint64_t>(num_bytes_) >
77 if (HANDLE_EINTR(ftruncate(fd.get(), static_cast<off_t>(num_bytes_))) != 0) {
90 if (static_cast<uint64_t>(num_bytes_) >
107 if (sb.st_size != static_cast<off_t>(num_bytes_)) {
raw_shared_buffer.h 68 size_t num_bytes() const { return num_bytes_; }
83 // claimed |num_bytes_|.)
89 const size_t num_bytes_; member in class:mojo::system::RawSharedBuffer
raw_shared_buffer_win.cc 25 if (static_cast<uint64_t>(num_bytes_) >
38 static_cast<DWORD>(num_bytes_), NULL)));
  /external/chromium_org/mojo/public/c/system/tests/
core_perftest.cc 32 num_bytes_(num_bytes),
38 assert(num_bytes_ <= sizeof(buffer));
42 MojoResult result = MojoWriteMessage(handle_, buffer, num_bytes_, NULL, 0,
62 const uint32_t num_bytes_; member in class:__anon12821::MessagePipeWriterThread
118 CorePerftest() : buffer_(NULL), num_bytes_(0) {}
139 self->buffer_, self->num_bytes_,
143 uint32_t read_bytes = self->num_bytes_;
245 uint32_t num_bytes_; member in class:__anon12821::CorePerftest
280 num_bytes_ = 10u;
284 num_bytes_ = 100u
    [all...]
  /art/runtime/mirror/
object.cc 104 : self_(self), orig_(orig), num_bytes_(num_bytes) {
110 Object::CopyObject(self_, obj, orig_->Get(), num_bytes_);
116 const size_t num_bytes_; member in class:art::mirror::CopyObjectVisitor
  /art/runtime/
reflection.cc 40 : shorty_(shorty), shorty_len_(shorty_len), num_bytes_(0) {
67 return num_bytes_;
71 arg_array_[num_bytes_ / 4] = value;
72 num_bytes_ += 4;
82 if (num_bytes_ % 8 == 0) {
83 num_bytes_ += 4;
86 arg_array_[num_bytes_ / 4] = value;
87 arg_array_[(num_bytes_ / 4) + 1] = value >> 32;
88 num_bytes_ += 8;
345 uint32_t num_bytes_; member in class:art::ArgArray
    [all...]
  /external/chromium_org/android_webview/browser/
browser_view_renderer.h 241 size_t num_bytes_; member in class:android_webview::BrowserViewRenderer
browser_view_renderer.cc 125 num_bytes_(0u) {
194 num_bytes_ = new_policy.bytes_limit;
207 memory_policy_.bytes_limit = num_bytes_;

Completed in 2094 milliseconds