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

  /external/llvm/lib/IR/
ValueSymbolTable.cpp 37 unsigned BaseSize = UniqueName.size();
40 UniqueName.resize(BaseSize);
  /art/runtime/
mem_map.h 158 size_t BaseSize() const {
163 return reinterpret_cast<uint8_t*>(BaseBegin()) + BaseSize();
mem_map_test.cc 33 static size_t BaseSize(MemMap* mem_map) {
69 EXPECT_EQ(BaseSize(m0), size0);
80 EXPECT_EQ(BaseSize(m0), page_size);
86 EXPECT_EQ(BaseSize(m1), size1);
mem_map.cc 608 result = msync(BaseBegin(), BaseSize(), MS_SYNC) == 0;
678 size_t size = map->BaseSize();
698 CHECK_ALIGNED(it->second->BaseSize(), kPageSize);
700 size += it->second->BaseSize();
731 if (largest_size < map->BaseSize()) {
732 largest_size = map->BaseSize();
    [all...]
  /external/v8/src/interpreter/
bytecode-traits.h 21 #define DECLARE_OPERAND_TYPE_INFO(Name, Scalable, Unsigned, BaseSize) \
26 static const OperandSize kUnscaledSize = BaseSize; \
  /external/llvm/lib/Analysis/
Lint.cpp 424 uint64_t BaseSize = MemoryLocation::UnknownSize;
430 BaseSize = DL->getTypeAllocSize(ATy);
440 BaseSize = DL->getTypeAllocSize(GTy);
450 BaseSize == MemoryLocation::UnknownSize ||
451 (Offset >= 0 && Offset + Size <= BaseSize),
  /art/runtime/gc/space/
large_object_space.cc 156 const size_t allocation_size = mem_map->BaseSize();
199 const size_t map_size = mem_map->BaseSize();
213 size_t alloc_size = it->second.mem_map->BaseSize();
  /external/llvm/lib/Support/
CommandLine.cpp     [all...]

Completed in 570 milliseconds