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

1 2

  /art/runtime/
imt_conflict_table.h 159 size_t ComputeSize(PointerSize pointer_size) const {
161 return ComputeSize(NumEntries(pointer_size), pointer_size);
167 return table->ComputeSize(pointer_size) + EntrySize(pointer_size);
171 static size_t ComputeSize(size_t num_entries, PointerSize pointer_size) {
method_info.h 48 static size_t ComputeSize(size_t num_method_indices) {
image-inl.h 78 pos += table->ComputeSize(pointer_size);
image.cc 172 pos += array->ComputeSize(array->size());
187 pos += array->ComputeSize(array->size(), method_size, method_alignment);
  /external/skia/include/gpu/
GrSurface.h 68 static size_t ComputeSize(GrPixelConfig config, int width, int height, int colorSamplesPerPixel,
  /external/skia/src/gpu/
GrTextureProxy.cpp 78 return GrSurface::ComputeSize(fConfig, fWidth, fHeight, 1, kHasMipMaps,
GrTextureRenderTargetProxy.cpp 43 return GrSurface::ComputeSize(fConfig, fWidth, fHeight, colorSamplesPerPixel, kHasMipMaps,
GrRenderTargetProxy.cpp 105 return GrSurface::ComputeSize(fConfig, fWidth, fHeight, colorSamplesPerPixel, false,
GrTexture.cpp 38 return GrSurface::ComputeSize(this->config(), this->width(), this->height(), 1,
GrSurface.cpp 50 size_t GrSurface::ComputeSize(GrPixelConfig config,
  /external/skia/src/gpu/gl/
GrGLTextureRenderTarget.cpp 82 return GrSurface::ComputeSize(this->config(), this->width(), this->height(),
GrGLRenderTarget.cpp 86 return GrSurface::ComputeSize(this->config(), this->width(), this->height(),
192 size_t size = GrSurface::ComputeSize(this->config(), this->width(), this->height(),
  /external/skia/src/gpu/mock/
GrMockTexture.h 85 return GrSurface::ComputeSize(this->config(), this->width(), this->height(),
  /art/runtime/verifier/
register_line-inl.h 176 inline size_t RegisterLine::ComputeSize(size_t num_regs) {
181 void* memory = verifier->GetArena().Alloc(ComputeSize(num_regs));
197 ProtectMemory(ptr, RegisterLine::ComputeSize(ptr->NumRegs()));
  /art/runtime/interpreter/
shadow_frame.h 53 static size_t ComputeSize(uint32_t num_vregs) {
61 uint8_t* memory = new uint8_t[ComputeSize(num_vregs)];
75 size_t frame_size = ShadowFrame::ComputeSize(num_vregs); \
  /external/skia/src/gpu/vk/
GrVkRenderTarget.h 104 return GrSurface::ComputeSize(this->config(), this->width(), this->height(),
GrVkTextureRenderTarget.cpp 252 return GrSurface::ComputeSize(this->config(), this->width(), this->height(),
  /art/compiler/driver/
compiled_method_storage.cc 37 void* storage = allocator.allocate(LengthPrefixedArray<T>::ComputeSize(array.size()));
46 size_t size = LengthPrefixedArray<T>::ComputeSize(array->size());
  /art/runtime/base/
length_prefixed_array.h 71 static size_t ComputeSize(size_t num_elements,
  /external/llvm/lib/CodeGen/AsmPrinter/
DIEHash.cpp 340 addULEB128(Value.getDIEBlock().ComputeSize(AP));
343 addULEB128(Value.getDIELoc().ComputeSize(AP));
DIE.cpp 485 /// ComputeSize - calculate the size of the location expression.
487 unsigned DIELoc::ComputeSize(const AsmPrinter *AP) const {
536 /// ComputeSize - calculate the size of the block.
538 unsigned DIEBlock::ComputeSize(const AsmPrinter *AP) const {
  /art/compiler/optimizing/
stack_map_stream.cc 193 size_t StackMapStream::DexRegisterMapEntry::ComputeSize(size_t catalog_size) const {
217 size += entry.ComputeSize(location_catalog_entries_.size());
281 const size_t entry_size = entry.ComputeSize(location_catalog_entries_.size());
685 return MethodInfo::ComputeSize(method_indices_.size());
stack_map_stream.h 108 size_t ComputeSize(size_t catalog_size) const;
  /external/swiftshader/third_party/LLVM/lib/CodeGen/AsmPrinter/
DIE.h 401 /// ComputeSize - calculate the size of the block.
403 unsigned ComputeSize(AsmPrinter *AP);
  /external/llvm/include/llvm/CodeGen/
DIE.h 687 /// ComputeSize - Calculate the size of the location expression.
689 unsigned ComputeSize(const AsmPrinter *AP) const;
721 /// ComputeSize - Calculate the size of the location expression.
723 unsigned ComputeSize(const AsmPrinter *AP) const;

Completed in 338 milliseconds

1 2