Home
last modified time | relevance | path

Searched refs:V8_ALIGNOF (Results 1 – 4 of 4) sorted by relevance

/external/v8/include/
Dv8config.h404 # define V8_ALIGNOF(type) alignof(type) macro
406 # define V8_ALIGNOF(type) __alignof(type) macro
408 # define V8_ALIGNOF(type) __alignof__(type) macro
414 # define V8_ALIGNOF(type) (sizeof(::v8::AlignOfHelper<type>) - sizeof(type)) macro
/external/v8/src/base/
Dlazy-instance.h100 STATIC_ASSERT(V8_ALIGNOF(StorageType) >= V8_ALIGNOF(T));
/external/v8/src/
Dallocation.cc55 DCHECK_LE(V8_ALIGNOF(void*), alignment); in AlignedAlloc()
/external/v8/src/profiler/
Dcpu-profiler.cc189 return AlignedAlloc(size, V8_ALIGNOF(ProfilerEventsProcessor)); in operator new()