HomeSort by relevance Sort by last modified time
    Searched refs:size_ (Results 26 - 50 of 503) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/chromium_org/mojo/public/cpp/bindings/lib/
fixed_buffer.h 48 size_t size() const { return size_; }
59 size_t size_; member in class:mojo::internal::FixedBuffer
fixed_buffer.cc 21 size_(internal::Align(size)) {
23 ptr_ = static_cast<char*>(calloc(size_, 1));
33 if (delta == 0 || delta > size_ - cursor_) {
48 size_ = 0;
  /external/chromium_org/third_party/icu/source/common/
bytestream.cpp 29 size_(0), appended_(0), overflowed_(FALSE) {
33 size_ = appended_ = 0;
43 int32_t available = capacity_ - size_;
48 if (n > 0 && bytes != (outbuf_ + size_)) {
49 uprv_memcpy(outbuf_ + size_, bytes, n);
51 size_ += n;
63 int32_t available = capacity_ - size_;
66 return outbuf_ + size_;
  /external/chromium_org/third_party/webrtc/modules/audio_device/android/
single_rw_fifo.h 34 int size() { return size_.Value(); }
41 Atomic32 size_; member in class:webrtc::SingleRwFifo
  /external/chromium_org/ui/display/types/chromeos/
display_mode.h 23 const gfx::Size& size() const { return size_; }
30 gfx::Size size_; member in class:ui::DisplayMode
  /external/chromium_org/ui/gfx/image/
canvas_image_source.cc 16 : size_(size),
21 gfx::Canvas canvas(size_, scale, is_opaque_);
  /external/chromium_org/ui/gl/
gl_surface_stub.h 15 void SetSize(const gfx::Size& size) { size_ = size; }
28 gfx::Size size_; member in class:gfx::GLSurfaceStub
gl_surface_osmesa.cc 16 size_(size) {
19 if (size_.GetArea() == 0)
20 size_.SetSize(1, 1);
24 return Resize(size_);
51 int copy_width = std::min(size_.width(), new_size.width());
52 int copy_height = std::min(size_.height(), new_size.height());
55 buffer_[y * new_size.width() + x] = old_buffer[y * size_.width() + x];
60 size_ = new_size;
75 return size_;
  /external/chromium_org/ui/views/test/
test_views.cc 9 StaticSizedView::StaticSizedView(const gfx::Size& size) : size_(size) {}
14 return size_;
  /external/icu/icu4c/source/common/
bytestream.cpp 31 size_(0), appended_(0), overflowed_(FALSE) {
37 size_ = appended_ = 0;
47 int32_t available = capacity_ - size_;
52 if (n > 0 && bytes != (outbuf_ + size_)) {
53 uprv_memcpy(outbuf_ + size_, bytes, n);
55 size_ += n;
67 int32_t available = capacity_ - size_;
70 return outbuf_ + size_;
  /bionic/libc/bionic/
scandir.cpp 28 ScandirResult() : names_(NULL), size_(0), capacity_(0) {
32 while (size_ > 0) {
33 free(names_[--size_]);
39 return size_;
45 size_ = capacity_ = 0;
50 if (size_ >= capacity_) {
64 names_[size_++] = copy;
70 if (size_ > 0 && comparator != NULL) {
71 qsort(names_, size_, sizeof(dirent*), (int (*)(const void*, const void*)) comparator);
77 size_t size_; member in class:ScandirResult
    [all...]
  /external/chromium_org/third_party/android_crazy_linker/src/src/
crazy_linker_memory_mapping.h 24 MemoryMapping() : map_(NULL), size_(0) {}
29 size_t GetSize() const { return size_; }
42 size_ = size;
43 map_ = ::mmap(address, size_, static_cast<int>(prot), flags, fd, 0);
55 if (!map_ || ::mprotect(map_, size_, static_cast<int>(prot)) < 0)
63 ::munmap(map_, size_);
70 size_t size_; member in class:crazy::MemoryMapping
crazy_linker_elf_relro.h 24 SharedRelro() : start_(0), size_(0), ashmem_() {}
29 size_t end() const { return start_ + size_; }
30 size_t size() const { return size_; }
77 size_t size_; member in class:crazy::SharedRelro
  /ndk/sources/android/crazy_linker/src/
crazy_linker_memory_mapping.h 24 MemoryMapping() : map_(NULL), size_(0) {}
29 size_t GetSize() const { return size_; }
42 size_ = size;
43 map_ = ::mmap(address, size_, static_cast<int>(prot), flags, fd, 0);
55 if (!map_ || ::mprotect(map_, size_, static_cast<int>(prot)) < 0)
63 ::munmap(map_, size_);
70 size_t size_; member in class:crazy::MemoryMapping
  /external/chromium_org/content/renderer/compositor_bindings/
web_external_bitmap_impl.cc 29 if (size != size_) {
34 size_ = size;
39 return size_;
  /ndk/sources/host-tools/ndk-stack/elff/
elf_mapped_section.cc 24 size_(0) {
29 mapfile_unmap(mapped_at_, diff_ptr(mapped_at_, data_) + size_);
45 size_ = (Elf_Word)mapped_bytes;
  /external/chromium_org/third_party/protobuf/src/google/protobuf/stubs/
substitute.h 90 : text_(value), size_(strlen(text_)) {}
92 : text_(value.data()), size_(value.size()) {}
96 : text_(NULL), size_(-1) {}
105 : text_(scratch_), size_(1) { scratch_[0] = value; }
107 : text_(FastInt32ToBuffer(value, scratch_)), size_(strlen(text_)) {}
109 : text_(FastUInt32ToBuffer(value, scratch_)), size_(strlen(text_)) {}
111 : text_(FastInt32ToBuffer(value, scratch_)), size_(strlen(text_)) {}
113 : text_(FastUInt32ToBuffer(value, scratch_)), size_(strlen(text_)) {}
115 : text_(FastLongToBuffer(value, scratch_)), size_(strlen(text_)) {}
117 : text_(FastULongToBuffer(value, scratch_)), size_(strlen(text_)) {
134 int size_; member in class:google::protobuf::strings::internal::SubstituteArg
    [all...]
  /external/protobuf/src/google/protobuf/stubs/
substitute.h 90 : text_(value), size_(strlen(text_)) {}
92 : text_(value.data()), size_(value.size()) {}
96 : text_(NULL), size_(-1) {}
105 : text_(scratch_), size_(1) { scratch_[0] = value; }
107 : text_(FastInt32ToBuffer(value, scratch_)), size_(strlen(text_)) {}
109 : text_(FastUInt32ToBuffer(value, scratch_)), size_(strlen(text_)) {}
111 : text_(FastInt32ToBuffer(value, scratch_)), size_(strlen(text_)) {}
113 : text_(FastUInt32ToBuffer(value, scratch_)), size_(strlen(text_)) {}
115 : text_(FastLongToBuffer(value, scratch_)), size_(strlen(text_)) {}
117 : text_(FastULongToBuffer(value, scratch_)), size_(strlen(text_)) {
134 int size_; member in class:google::protobuf::strings::internal::SubstituteArg
    [all...]
  /external/chromium_org/base/containers/
small_map.h 199 SmallMap() : size_(0), functor_(MapInit()) {}
201 explicit SmallMap(const MapInit& functor) : size_(0), functor_(functor) {}
205 // size_ and functor_ are initted in InitFrom()
388 if (size_ >= 0) {
389 for (int i = 0; i < size_; i++) {
394 return iterator(array_ + size_);
402 if (size_ >= 0) {
403 for (int i = 0; i < size_; i++) {
408 return const_iterator(array_ + size_);
418 if (size_ >= 0)
570 int size_; \/\/ negative = using hash_map member in class:base::SmallMap
    [all...]
  /art/runtime/gc/collector/
immune_region.h 49 return reinterpret_cast<uintptr_t>(obj) - reinterpret_cast<uintptr_t>(begin_) < size_;
62 return size_ == 0;
65 size_ = reinterpret_cast<uintptr_t>(end_) - reinterpret_cast<uintptr_t>(begin_);
70 uintptr_t size_; member in class:art::gc::collector::ImmuneRegion
  /external/ceres-solver/examples/
fields_of_experts.h 101 return size_;
106 return size_ * size_;
131 int size_; member in class:ceres::examples::FieldsOfExperts
  /external/chromium_org/cc/resources/
resource.h 20 size_(size),
24 gfx::Size size() const { return size_; }
37 size_ = size;
43 gfx::Size size_; member in class:cc::Resource
  /external/chromium_org/gpu/command_buffer/common/
buffer.cc 15 : shared_memory_(shared_memory.Pass()), size_(size) {}
23 size_t SharedMemoryBufferBacking::GetSize() const { return size_; }
28 size_(backing_->GetSize()) {
37 if (!end.IsValid() || end.ValueOrDie() > static_cast<uint32>(size_))
  /external/chromium_org/media/filters/
in_memory_url_protocol.cc 14 size_(size >= 0 ? size : 0),
25 int64 available_bytes = size_ - position_;
46 if (position < 0 || position > size_)
56 *size_out = size_;
  /external/chromium_org/ppapi/cpp/dev/
buffer_dev.cc 22 Buffer_Dev::Buffer_Dev() : data_(NULL), size_(0) {
37 size_(0) {
62 if (!get_interface<PPB_Buffer_Dev>()->Describe(pp_resource(), &size_) ||
65 size_ = 0;

Completed in 1529 milliseconds

12 3 4 5 6 7 8 91011>>