HomeSort by relevance Sort by last modified time
    Searched refs:V8_ALIGNED (Results 1 - 2 of 2) sorted by null

  /external/chromium_org/v8/src/
circular-queue.h 50 struct V8_ALIGNED(PROCESSOR_CACHE_LINE_SIZE) Entry {
59 V8_ALIGNED(PROCESSOR_CACHE_LINE_SIZE) Entry* enqueue_pos_;
60 V8_ALIGNED(PROCESSOR_CACHE_LINE_SIZE) Entry* dequeue_pos_;
  /external/chromium_org/v8/include/
v8config.h 401 // class V8_ALIGNED(16) MyClass { ... };
402 // V8_ALIGNED(32) int array[42];
404 # define V8_ALIGNED(n) alignas(n)
406 # define V8_ALIGNED(n) __attribute__((aligned(n)))
408 # define V8_ALIGNED(n) __declspec(align(n))
410 # define V8_ALIGNED(n) /* NOT SUPPORTED */
414 // This macro is similar to V8_ALIGNED(), but takes a type instead of size
428 # define V8_ALIGNAS(type, alignment) V8_ALIGNED(alignment)

Completed in 156 milliseconds