Searched refs:AllocateBytes (Results 1 – 4 of 4) sorted by relevance
45 void* Allocator::AllocateBytes(std::ptrdiff_t num_bytes) { in AllocateBytes() function in ruy::Allocator78 void* p = AllocateBytes(num_bytes + kMinPeriod); in AllocateBytesAvoidingAliasingWith()96 return AllocateBytes(num_bytes); in AllocateBytesAvoidingAliasingWith()
64 void* AllocateBytes(std::ptrdiff_t num_bytes);72 return static_cast<T*>(AllocateBytes(count * sizeof(T))); in Allocate()
76 allocator.AllocateBytes(1); in TEST()94 allocator.AllocateBytes(1); in TEST()
89 packed_matrix.sums = allocator->AllocateBytes(SumsBytes(packed_matrix)); in PreparePackedMatrices()
Completed in 5 milliseconds