• Home
  • Raw
  • Download

Lines Matching refs:uint8_t

39   SwapAllocator<uint8_t> allocator(swap_space);  in CopyArray()
48 SwapAllocator<uint8_t> allocator(swap_space); in ReleaseArray()
51 allocator.deallocate(const_cast<uint8_t*>(reinterpret_cast<const uint8_t*>(array)), size); in ReleaseArray()
130 ThunkMapValue(std::vector<uint8_t, SwapAllocator<uint8_t>>&& code, in ThunkMapValue() argument
134 ArrayRef<const uint8_t> GetCode() const { in GetCode()
135 return ArrayRef<const uint8_t>(code_); in GetCode()
143 std::vector<uint8_t, SwapAllocator<uint8_t>> code_;
150 dedupe_code_("dedupe code", LengthPrefixedArrayAlloc<uint8_t>(swap_space_.get())), in CompiledMethodStorage()
152 LengthPrefixedArrayAlloc<uint8_t>(swap_space_.get())), in CompiledMethodStorage()
153 dedupe_cfi_info_("dedupe cfi info", LengthPrefixedArrayAlloc<uint8_t>(swap_space_.get())), in CompiledMethodStorage()
177 const LengthPrefixedArray<uint8_t>* CompiledMethodStorage::DeduplicateCode( in DeduplicateCode()
178 const ArrayRef<const uint8_t>& code) { in DeduplicateCode()
182 void CompiledMethodStorage::ReleaseCode(const LengthPrefixedArray<uint8_t>* code) { in ReleaseCode()
186 const LengthPrefixedArray<uint8_t>* CompiledMethodStorage::DeduplicateVMapTable( in DeduplicateVMapTable()
187 const ArrayRef<const uint8_t>& table) { in DeduplicateVMapTable()
191 void CompiledMethodStorage::ReleaseVMapTable(const LengthPrefixedArray<uint8_t>* table) { in ReleaseVMapTable()
195 const LengthPrefixedArray<uint8_t>* CompiledMethodStorage::DeduplicateCFIInfo( in DeduplicateCFIInfo()
196 const ArrayRef<const uint8_t>& cfi_info) { in DeduplicateCFIInfo()
200 void CompiledMethodStorage::ReleaseCFIInfo(const LengthPrefixedArray<uint8_t>* cfi_info) { in ReleaseCFIInfo()
233 ArrayRef<const uint8_t> CompiledMethodStorage::GetThunkCode(const linker::LinkerPatch& linker_patch, in GetThunkCode()
248 return ArrayRef<const uint8_t>(); in GetThunkCode()
253 ArrayRef<const uint8_t> code, in SetThunkCode()
257 std::vector<uint8_t, SwapAllocator<uint8_t>> code_copy( in SetThunkCode()
258 code.begin(), code.end(), SwapAllocator<uint8_t>(swap_space_.get())); in SetThunkCode()