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

  /external/libchrome/base/memory/
aligned_memory_unittest.cc 23 EXPECT_EQ(8u, ALIGNOF(raw8));
24 EXPECT_EQ(16u, ALIGNOF(raw16));
25 EXPECT_EQ(256u, ALIGNOF(raw256));
26 EXPECT_EQ(4096u, ALIGNOF(raw4096));
39 EXPECT_EQ(8u, ALIGNOF(raw8));
40 EXPECT_EQ(16u, ALIGNOF(raw16));
41 EXPECT_EQ(128u, ALIGNOF(raw128));
59 EXPECT_EQ(256u, ALIGNOF(raw256));
65 EXPECT_EQ(4096u, ALIGNOF(raw4096));
manual_constructor.h 37 return AlignedAlloc(size, ALIGNOF(Type));
66 AlignedMemory<sizeof(Type), ALIGNOF(Type)> space_;
singleton.h 132 static AlignedMemory<sizeof(Type), ALIGNOF(Type)> buffer_;
138 AlignedMemory<sizeof(Type), ALIGNOF(Type)>
  /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/libchrome/base/
compiler_specific.h 115 // ALIGNOF(int32_t) // this would be 4
117 #define ALIGNOF(type) __alignof(type)
119 #define ALIGNOF(type) __alignof__(type)
lazy_instance.h 66 DCHECK_EQ(reinterpret_cast<uintptr_t>(instance) & (ALIGNOF(Type) - 1), 0u)
189 base::AlignedMemory<sizeof(Type), ALIGNOF(Type)> private_buf_;
  /external/libweave/third_party/chromium/base/
compiler_specific.h 115 // ALIGNOF(int32_t) // this would be 4
117 #define ALIGNOF(type) __alignof(type)
119 #define ALIGNOF(type) __alignof__(type)
  /system/extras/perfprofd/quipper/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)
  /external/libchrome/base/containers/
stack_container.h 60 base::AlignedMemory<sizeof(T[stack_capacity]), ALIGNOF(T)> stack_buffer_;
62 static_assert(ALIGNOF(T) <= 16, "http://crbug.com/115612");
  /frameworks/compile/mclinker/include/mcld/Script/
UnaryOp.h 65 IntOperand* UnaryOp<Operator::ALIGNOF>::eval(const Module&,
Operator.h 68 ALIGNOF = 35,
145 Operator& Operator::create<Operator::ALIGNOF>();
  /frameworks/compile/mclinker/lib/Script/
Operator.cpp 35 "ADDR", "ALIGN", "ALIGNOF",
112 Operator& Operator::create<Operator::ALIGNOF>() {
113 static UnaryOp<Operator::ALIGNOF> op;
UnaryOp.cpp 92 IntOperand* UnaryOp<Operator::ALIGNOF>::eval(const Module& pModule,
ScriptParser.yy 125 %token ALIGNOF
802 | ALIGNOF '(' string ')'
806 &Operator::create<Operator::ALIGNOF>());
ScriptScanner.ll 114 <EXPRESSION>"ALIGNOF" { return token::ALIGNOF; }
  /toolchain/binutils/binutils-2.25/ld/
ldgram.y 143 %token SIZEOF ALIGNOF ADDR LOADADDR MAX_K MIN_K
973 | ALIGNOF '(' NAME ')'
974 { $$ = exp_nameop (ALIGNOF,$3); }
ldexp.c 99 { ALIGNOF, "ALIGNOF" },
713 case ALIGNOF:
    [all...]
ldlex.l 259 <EXPRESSION,BOTH,SCRIPT>"ALIGNOF" { RTOKEN(ALIGNOF); }
  /toolchain/binutils/binutils-2.25/gold/
yyscript.y 116 %token ALIGNOF
939 | ALIGNOF '(' string ')'
script.cc     [all...]

Completed in 1214 milliseconds