HomeSort by relevance Sort by last modified time
    Searched refs:size_ (Results 276 - 300 of 482) sorted by null

<<11121314151617181920

  /external/v8/src/zone/
zone-chunk-list.h 131 size_t size_ = 0; member in class:v8::internal::ZoneChunkList::StartMode
282 return size_;
320 ++size_;
345 ++size_;
379 size_ = limit;
  /system/keymaster/include/keymaster/
android_keymaster_utils.h 147 explicit Eraser(T& t) : buf_(reinterpret_cast<uint8_t*>(&t)), size_(sizeof(t)) {}
149 template <size_t N> explicit Eraser(uint8_t (&arr)[N]) : buf_(arr), size_(N) {} function in class:keymaster::Eraser
151 Eraser(void* buf, size_t size) : buf_(static_cast<uint8_t*>(buf)), size_(size) {}
152 ~Eraser() { memset_s(buf_, 0, size_); }
159 size_t size_; member in class:keymaster::Eraser
  /art/runtime/gc/allocator/
rosalloc.h 145 SlotFreeList() : head_(0U), tail_(0), size_(0), padding_(0) {}
154 return size_;
185 --size_;
217 ++size_;
245 size_ = list->Size();
253 size_ += list->Size();
266 size_ = 0;
272 if (size_ == 0) {
289 CHECK_EQ(size_, count);
306 uint32_t size_; member in class:art::gc::allocator::RosAlloc::SlotFreeList
    [all...]
  /external/webrtc/webrtc/base/
natsocketfactory.cc 74 socket_(NULL), buf_(NULL), size_(0) {
173 int result = socket_->RecvFrom(buf_, size_, &remote_addr);
180 ASSERT((size_t)result < size_);
264 if (size_ < new_size) {
266 size_ = new_size;
267 buf_ = new char[size_];
299 size_t size_; member in class:rtc::NATSocket
  /external/ImageMagick/Magick++/lib/Magick++/
Image.h 64 Image(const Blob &blob_,const Geometry &size_);
67 Image(const Blob &blob_,const Geometry &size_,const size_t depth_);
71 Image(const Blob &blob_,const Geometry &size_,const size_t depth_,
75 Image(const Blob &blob_,const Geometry &size_,const std::string &magick_);
78 Image(const Geometry &size_,const Color &color_);
    [all...]
  /external/webp/src/enc/
backward_references_enc.c 81 int size_; // currently used size member in struct:PixOrCopyBlock
119 c.last_pos_ = c.cur_pos + c.cur_block_->size_;
130 c->last_pos_ = (b == NULL) ? NULL : b->start_ + b->size_;
153 b->size_ = 0;
162 if (b == NULL || b->size_ == refs->block_size_) {
166 b->start_[b->size_++] = v;
173 assert(p->size_ == 0);
179 p->size_ = size;
188 p->size_ = 0;
237 assert(p->size_ != 0)
    [all...]
  /art/runtime/
mem_map.cc 470 size_t source_size = source->size_;
475 size_ = source_size;
612 : name_(name), begin_(begin), size_(size), base_begin_(base_begin), base_size_(base_size),
614 if (size_ == 0) {
635 DCHECK_LE(begin_ + size_, reinterpret_cast<uint8_t*>(base_begin_) + base_size_);
640 uint8_t* old_end = begin_ + size_;
647 size_ = new_end - reinterpret_cast<uint8_t*>(begin_);
649 DCHECK_LE(begin_ + size_, reinterpret_cast<uint8_t*>(base_begin_) + base_size_);
    [all...]
  /external/webrtc/webrtc/modules/rtp_rtcp/source/rtcp_packet/
transport_feedback.cc 250 : symbol_(symbol), size_(size) {
256 uint16_t NumSymbols() const override { return size_; }
260 vec->insert(vec->end(), size_, symbol_);
265 buffer[0] |= (size_ >> 8) & 0x1F; // 5 most significant bits of run length.
266 buffer[1] = size_ & 0xFF; // 8 least significant bits of run length.
280 const size_t size_; member in class:webrtc::rtcp::RunLengthChunk
  /external/mesa3d/include/CL/
cl.hpp 334 ::size_t size_; member in class:cl::string
337 string(void) : size_(0), str_(NULL)
342 size_(size),
345 str_ = new char[size_+1];
347 memcpy(str_, str, size_ * sizeof(char));
348 str_[size_] = '\0';
351 size_ = 0;
358 size_= ::strlen(str);
359 str_ = new char[size_ + 1];
361 memcpy(str_, str, (size_ + 1) * sizeof(char))
437 unsigned int size_; member in class:cl::vector
2255 ::size_t size_; member in struct:cl::LocalSpaceArg
    [all...]
  /art/runtime/base/
arena_allocator.h 213 return memory_ + size_;
217 return size_;
236 size_t size_; member in class:art::Arena
arena_allocator.cc 189 Arena::Arena() : bytes_allocated_(0), memory_(nullptr), size_(0), next_(nullptr) {
225 size_ = size;
234 MEMORY_TOOL_MAKE_UNDEFINED(memory_ + size_, tail);
261 size_ = map_->Size();
  /system/update_engine/payload_generator/
squashfs_filesystem.cc 106 size_ = size;
196 ExtentForRange(0, (size_ + kBlockSize - 1) / kBlockSize)};
314 return size_ / kBlockSize;
  /toolchain/binutils/binutils-2.27/gold/
binary.cc 57 : elf_machine_(machine), size_(size), big_endian_(big_endian),
76 if (this->size_ == 32)
95 else if (this->size_ == 64)
aarch64-reloc-property.h 162 size_t size_; member in class:gold::AArch64_reloc_property
  /art/dexlayout/
dex_ir.h 493 uint32_t GetSize() const WARN_UNUSED { return size_; }
495 void SetSize(uint32_t size) { size_ = size; }
501 Item(uint32_t offset, uint32_t size) : offset_(offset), size_(size) { }
508 uint32_t size_ = 0; member in class:art::dex_ir::Item
607 size_ = UnsignedLeb128Size(CountModifiedUtf8Chars(data)) + strlen(data);
623 size_ = kStringIdItemSize;
642 explicit TypeId(StringId* string_id) : string_id_(string_id) { size_ = kTypeIdItemSize; }
662 size_ = sizeof(uint32_t) + (type_list->size() * sizeof(uint16_t));
678 { size_ = kProtoIdItemSize; }
700 : class_(klass), type_(type), name_(name) { size_ = kFieldIdItemSize;
    [all...]
dex_writer.h 44 : type_(type), size_(size), offset_(offset) { }
52 uint32_t size_ = 0u; member in struct:art::MapItem
  /external/parameter-framework/asio-1.10.6/include/asio/
buffer.hpp 73 size_(0)
80 size_(size)
92 std::size_t size_; member in class:asio::mutable_buffer
105 return b.size_;
172 size_(0)
179 size_(size)
186 size_(asio::detail::buffer_size_helper(b))
198 std::size_t size_; member in class:asio::const_buffer
211 return b.size_;
    [all...]
  /external/perfetto/src/tracing/ipc/
posix_shared_memory.cc 95 : start_(start), size_(size), fd_(std::move(fd)) {}
  /external/v8/src/ast/
prettyprinter.h 107 int size_; // output_ size member in class:v8::internal::final
  /external/v8/src/snapshot/
serializer-common.cc 59 size_ = size;
  /external/webrtc/webrtc/modules/desktop_capture/
desktop_frame.cc 22 : size_(size),
  /external/boringssl/src/ssl/
internal.h 263 other.Release(&data_, &size_);
269 size_t size() const { return size_; }
270 bool empty() const { return size_ == 0; }
277 T *end() { return data_ + size_; }
278 const T *cend() const { return data_ + size_; }
285 for (size_t i = 0; i < size_; i++) {
290 size_ = new_size;
297 *out_size = size_;
299 size_ = 0;
322 size_ = new_size
341 size_t size_ = 0; member in class:bssl::Array
1081 uint16_t size_ = 0; member in class:bssl::SSLBuffer
    [all...]
  /art/compiler/utils/
swap_space.h 43 return size_;
98 size_t size_; member in class:art::SwapSpace
  /art/libdexfile/dex/
dex_file_verifier.h 50 size_(size),
202 const size_t size_; member in class:art::DexFileVerifier
  /external/deqp/framework/common/
tcuFormatUtil.hpp 191 ArrayPointer (const T* arr_, int size_) : arr(arr_), size(size_) {}

Completed in 1357 milliseconds

<<11121314151617181920