Searched refs:_alignment (Results 1 - 4 of 4) sorted by relevance
/third_party/mesa3d/src/util/ |
H A D | u_memory.h | 61 #define align_malloc(_size, _alignment) os_malloc_aligned(_size, _alignment) 63 #define align_realloc(_ptr, _oldsize, _newsize, _alignment) os_realloc_aligned(_ptr, _oldsize, _newsize, _alignment)
|
H A D | os_memory_stdc.h | 54 #define os_realloc_aligned(_ptr, _oldsize, _newsize, _alignment) _aligned_realloc(_ptr, _newsize, _alignment)
|
/third_party/python/Lib/multiprocessing/ |
H A D | shared_memory.py | 276 _alignment = 8 variable in ShareableList 305 self._alignment * (len(item) // self._alignment + 1), 317 offset += self._alignment if fmt[-1] != "s" else int(fmt[:-1])
|
H A D | heap.py | 118 _alignment = 8 variable in Heap 308 size = self._roundup(max(size, 1), self._alignment)
|
Completed in 2 milliseconds