Searched defs:storage (Results 1 - 4 of 4) sorted by relevance

/art/runtime/jdwp/
H A Djdwp_expand_buf.cc38 uint8_t* storage; member in struct:art::JDWP::ExpandBuf
46 * Allocate a JdwpBuf and some initial storage.
50 newBuf->storage = reinterpret_cast<uint8_t*>(malloc(kInitialStorage));
57 * Free a JdwpBuf and associated storage.
64 free(pBuf->storage);
72 return pBuf->storage;
95 uint8_t* newPtr = reinterpret_cast<uint8_t*>(realloc(pBuf->storage, pBuf->maxLen));
100 pBuf->storage = newPtr;
110 gapStart = pBuf->storage + pBuf->curLen;
122 *(pBuf->storage
[all...]
/art/runtime/gc/space/
H A Dbump_pointer_space.cc136 // Returns the start of the storage.
142 byte* storage = reinterpret_cast<byte*>( local
144 if (LIKELY(storage != nullptr)) {
145 BlockHeader* header = reinterpret_cast<BlockHeader*>(storage);
147 storage += sizeof(BlockHeader);
150 return storage;
/art/runtime/base/
H A Dbit_vector.cc37 // starts_bits and storage_size/storage are mutually exclusive.
42 uint32_t* storage)
46 storage_(storage) {
92 // Zero out the new storage words.
132 // ie. we are comparing all storage cells that could have difference, if both vectors have cells above our_highest_index,
174 // Is the storage size smaller than src's?
181 // Paranoid: storage size should be big enough to hold this bit now.
209 // Is the storage size smaller than src's?
216 // Paranoid: storage size should be big enough to hold this bit now.
290 // We can set every storage elemen
38 BitVector(uint32_t start_bits, bool expandable, Allocator* allocator, uint32_t storage_size, uint32_t* storage) argument
378 IsBitSet(const uint32_t* storage, uint32_t num) argument
383 NumSetBits(const uint32_t* storage, uint32_t end) argument
[all...]
/art/runtime/mirror/
H A Dclass.cc720 const char* Class::GetDescriptor(std::string* storage) { argument
724 return GetArrayDescriptor(storage);
726 *storage = Runtime::Current()->GetClassLinker()->GetDescriptorForProxy(this);
727 return storage->c_str();
735 const char* Class::GetArrayDescriptor(std::string* storage) { argument
738 *storage = "[";
739 *storage += elem_desc;
740 return storage->c_str();

Completed in 98 milliseconds