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

  /external/chromium_org/base/memory/
aligned_memory_unittest.cc 22 EXPECT_EQ(8u, ALIGNOF(raw8));
23 EXPECT_EQ(16u, ALIGNOF(raw16));
24 EXPECT_EQ(256u, ALIGNOF(raw256));
25 EXPECT_EQ(4096u, ALIGNOF(raw4096));
38 EXPECT_EQ(8u, ALIGNOF(raw8));
39 EXPECT_EQ(16u, ALIGNOF(raw16));
40 EXPECT_EQ(128u, ALIGNOF(raw128));
58 EXPECT_EQ(256u, ALIGNOF(raw256));
64 EXPECT_EQ(4096u, ALIGNOF(raw4096));
singleton.h 134 static base::AlignedMemory<sizeof(Type), ALIGNOF(Type)> buffer_;
139 template <typename Type> base::AlignedMemory<sizeof(Type), ALIGNOF(Type)>
  /external/chromium_org/chromecast/media/cma/ipc/
media_message.cc 32 size_t end_alignment = msg_size % ALIGNOF(SerializedMsg);
34 msg_size += ALIGNOF(SerializedMsg) - end_alignment;
80 reinterpret_cast<uintptr_t>(mem_->data()) % ALIGNOF(SerializedMsg), 0u);
86 CHECK_EQ(mem_->size() % ALIGNOF(SerializedMsg), 0u);
105 reinterpret_cast<uintptr_t>(mem_->data()) % ALIGNOF(SerializedMsg), 0u);
114 CHECK_EQ(cached_header_->size % ALIGNOF(SerializedMsg), 0u);
media_message_fifo.cc 108 CHECK_EQ(reinterpret_cast<uintptr_t>(mem_->data()) % ALIGNOF(Descriptor),
  /external/clang/test/Sema/
gnu-flags.c 4 // RUN: -Wgnu-alignof-expression -Wgnu-case-range -Wgnu-complex-integer -Wgnu-conditional-omitted-operand \
10 // RUN: -Wno-gnu-alignof-expression -Wno-gnu-case-range -Wno-gnu-complex-integer -Wno-gnu-conditional-omitted-operand \
16 // %clang_cc1 -fsyntax-only -verify %s -DALIGNOF -Wno-gnu -Wgnu-alignof-expression
36 #if ALL || ALIGNOF
  /external/chromium_org/base/
compiler_specific.h 129 // ALIGNOF(int32) // this would be 4
131 #define ALIGNOF(type) (sizeof(type) - sizeof(type) + __alignof(type))
133 #define ALIGNOF(type) __alignof__(type)
lazy_instance.h 64 DCHECK_EQ(reinterpret_cast<uintptr_t>(instance) & (ALIGNOF(Type) - 1), 0u)
188 base::AlignedMemory<sizeof(Type), ALIGNOF(Type)> private_buf_;
  /external/chromium_org/base/containers/
stack_container.h 58 base::AlignedMemory<sizeof(T[stack_capacity]), ALIGNOF(T)> stack_buffer_;
60 COMPILE_ASSERT(ALIGNOF(T) <= 16, crbug_115612);
stack_container_unittest.cc 120 EXPECT_ALIGNED(&text[0], ALIGNOF(wchar_t));
124 EXPECT_ALIGNED(&doubles[0], ALIGNOF(double));
  /frameworks/compile/mclinker/include/mcld/Script/
UnaryOp.h 72 IntOperand* UnaryOp<Operator::ALIGNOF>::eval(const Module&,
Operator.h 75 ALIGNOF = 35,
153 Operator& Operator::create<Operator::ALIGNOF>();
  /frameworks/compile/mclinker/lib/Script/
Operator.cpp 57 "ALIGNOF",
160 Operator& Operator::create<Operator::ALIGNOF>()
162 static UnaryOp<Operator::ALIGNOF> op;
UnaryOp.cpp 92 IntOperand* UnaryOp<Operator::ALIGNOF>::eval(const Module& pModule,
ScriptParser.yy 122 %token ALIGNOF
791 | ALIGNOF '(' string ')'
795 &Operator::create<Operator::ALIGNOF>());
ScriptScanner.ll 107 <EXPRESSION>"ALIGNOF" { return token::ALIGNOF; }

Completed in 131 milliseconds