/external/eigen/Eigen/src/Core/ |
GenericPacketMath.h | 458 * The pointer \a from must be aligned on a \a Alignment bytes boundary. */ 459 template<typename Packet, int Alignment> 462 if(Alignment >= unpacket_traits<Packet>::alignment) 469 * The pointer \a from must be aligned on a \a Alignment bytes boundary. */ 470 template<typename Scalar, typename Packet, int Alignment> 473 if(Alignment >= unpacket_traits<Packet>::alignment)
|
Redux.h | 163 alignment = Derived::Alignment enumerator in enum:Eigen::internal::redux_vec_unroller::__anon17852 171 return mat.template packetByOuterInner<alignment,PacketScalar>(outer, inner); 220 const int packetAlignment = unpacket_traits<PacketScalar>::alignment; 223 alignment = EIGEN_PLAIN_ENUM_MAX(alignment0, Derived::Alignment) enumerator in enum:Eigen::internal::redux_impl::__anon17853 233 PacketScalar packet_res0 = mat.template packet<alignment,PacketScalar>(alignedStart); 236 PacketScalar packet_res1 = mat.template packet<alignment,PacketScalar>(alignedStart+packetSize); 239 packet_res0 = func.packetOp(packet_res0, mat.template packet<alignment,PacketScalar>(index)); 240 packet_res1 = func.packetOp(packet_res1, mat.template packet<alignment,PacketScalar>(index+packetSize)) [all...] |
/external/eigen/Eigen/src/LU/arch/ |
Inverse_SSE.h | 38 MatrixAlignment = traits<MatrixType>::Alignment, 39 ResultAlignment = traits<ResultType>::Alignment, 170 MatrixAlignment = traits<MatrixType>::Alignment, 171 ResultAlignment = traits<ResultType>::Alignment,
|
/external/libchrome/base/memory/ |
singleton_unittest.cc | 271 TEST_F(SingletonTest, Alignment) { 274 // Create some static singletons with increasing sizes and alignment 276 // ensure proper alignment of the static data.
|
/external/llvm/lib/DebugInfo/PDB/Raw/ |
PDBFileBuilder.cpp | 31 llvm::AlignOf<PDBFile::SuperBlock>::Alignment));
|
/frameworks/base/apct-tests/perftests/core/src/android/text/ |
DynamicLayoutPerfTest.java | 35 import static android.text.Layout.Alignment.ALIGN_NORMAL;
|
/frameworks/base/core/java/com/android/internal/widget/ |
ImageFloatingTextView.java | 69 Layout.Alignment alignment, boolean shouldEllipsize, 74 .setAlignment(alignment)
|
/frameworks/base/core/tests/coretests/src/android/text/ |
DynamicLayoutTest.java | 19 import static android.text.Layout.Alignment.ALIGN_NORMAL;
|
/frameworks/compile/mclinker/lib/Fragment/ |
FragmentRef.cpp | 143 case Fragment::Alignment:
|
/frameworks/support/v7/appcompat/src/android/support/v7/widget/ |
AppCompatTextViewAutoSizeHelper.java | 666 Layout.Alignment alignment = invokeAndReturnWithDefault( local 667 mTextView, "getLayoutAlignment", Layout.Alignment.ALIGN_NORMAL); 669 ? createStaticLayoutForMeasuring(text, alignment, availableWidth, maxLines) 670 : createStaticLayoutForMeasuringPre23(text, alignment, availableWidth); 687 Layout.Alignment alignment, int availableWidth, int maxLines) { 697 return layoutBuilder.setAlignment(alignment) 711 Layout.Alignment alignment, int availableWidth) [all...] |
/device/linaro/bootloader/edk2/MdeModulePkg/Core/Dxe/Gcd/ |
Gcd.c | 309 @param Alignment Log base 2 of the boundary to align Value to
314 @return A 64 bit value is the aligned to the value nearest Value with an alignment by Alignment.
320 IN UINTN Alignment,
326 AlignmentMask = LShiftU64 (1, Alignment) - 1;
339 @return A 64 bit value is the aligned to the value nearest Value with an alignment by Alignment.
356 @return A 64 bit value is the aligned to the value nearest Value with an alignment by Alignment.
1009 @param Alignment Align with 2^Alignment [all...] |
/external/llvm/include/llvm/IR/ |
DerivedTypes.h | 140 static_assert(AlignOf<FunctionType>::Alignment >= AlignOf<Type *>::Alignment, 141 "Alignment sufficient for objects appended to FunctionType");
|
/external/llvm/include/llvm/MC/ |
MCRegisterInfo.h | 41 const uint16_t RegSize, Alignment; // Size & Alignment of register in bytes 84 /// getAlignment - Return the minimum required alignment for a register of 86 unsigned getAlignment() const { return Alignment; }
|
/external/llvm/tools/obj2yaml/ |
coff2yaml.cpp | 111 NewYAMLSection.Alignment = ObjSection.getAlignment(); 112 assert(NewYAMLSection.Alignment <= 8192);
|
/external/swiftshader/third_party/LLVM/include/llvm/ADT/ |
StringMap.h | 159 unsigned Alignment = alignOf<StringMapEntry>(); 162 static_cast<StringMapEntry*>(Allocator.Allocate(AllocSize,Alignment));
|
/prebuilts/go/darwin-x86/src/cmd/compile/internal/ssa/ |
writebarrier.go | 253 siz := MakeSizeAndAlign(t.Size(), t.Alignment()).Int64() 263 off = round(off, taddr.Type.Alignment()) 269 off = round(off, ptr.Type.Alignment()) 275 off = round(off, val.Type.Alignment())
|
type.go | 13 Alignment() int64 58 func (t *CompilerType) Alignment() int64 { return 0 } 91 func (t *TupleType) Alignment() int64 { panic("not implemented") }
|
/prebuilts/go/linux-x86/src/cmd/compile/internal/ssa/ |
writebarrier.go | 253 siz := MakeSizeAndAlign(t.Size(), t.Alignment()).Int64() 263 off = round(off, taddr.Type.Alignment()) 269 off = round(off, ptr.Type.Alignment()) 275 off = round(off, val.Type.Alignment())
|
type.go | 13 Alignment() int64 58 func (t *CompilerType) Alignment() int64 { return 0 } 91 func (t *TupleType) Alignment() int64 { panic("not implemented") }
|
/cts/tests/tests/text/src/android/text/cts/ |
HtmlTest.java | 251 s.setSpan(new AlignmentSpan.Standard(Layout.Alignment.ALIGN_CENTER), 258 // Set another AlignmentSpan of a different alignment. Only the last one should be encoded. 259 s.setSpan(new AlignmentSpan.Standard(Layout.Alignment.ALIGN_OPPOSITE), 267 // This will be ignored and the previous alignment should be encoded. 268 s.setSpan(new AlignmentSpan.Standard(Layout.Alignment.ALIGN_NORMAL), 422 assertEquals(Layout.Alignment.ALIGN_NORMAL, spans[0].getAlignment()); 426 assertEquals(Layout.Alignment.ALIGN_CENTER, spans[1].getAlignment()); 430 assertEquals(Layout.Alignment.ALIGN_OPPOSITE, spans[2].getAlignment()); 445 + "<%s style=\"text-alignment:center\">TEXT</%s>"
|
/external/eigen/Eigen/src/Geometry/ |
Quaternion.h | 194 * \tparam _Options controls the memory alignment of the coefficients. Can be \# AutoAlign or \# DontAlign. Default is AutoAlign. 220 Alignment = internal::traits<Coefficients>::Alignment, 231 enum { NeedsAlignment = internal::traits<Quaternion>::Alignment>0 }; 450 EIGEN_PLAIN_ENUM_MIN(internal::traits<Derived>::Alignment, internal::traits<OtherDerived>::Alignment)>::run(*this, other); 695 internal::traits<Derived>::Alignment>::run(*this);
|
/external/swiftshader/third_party/LLVM/unittests/ExecutionEngine/JIT/ |
JITTest.cpp | 95 unsigned Alignment) { 97 return Base->allocateStub(F, StubSize, Alignment); 116 virtual uint8_t *allocateSpace(intptr_t Size, unsigned Alignment) { 117 return Base->allocateSpace(Size, Alignment); 119 virtual uint8_t *allocateGlobal(uintptr_t Size, unsigned Alignment) { 120 return Base->allocateGlobal(Size, Alignment);
|
/external/swiftshader/third_party/LLVM/lib/CodeGen/SelectionDAG/ |
LegalizeDAG.cpp | 371 unsigned Alignment = cast<ConstantPoolSDNode>(CPIdx)->getAlignment(); 376 VT, false, false, Alignment); 379 Alignment); 390 int Alignment = ST->getAlignment(); 401 ST->isVolatile(), ST->isNonTemporal(), Alignment); 482 ST->isVolatile(), ST->isNonTemporal(), Alignment); 485 Alignment = MinAlign(Alignment, IncrementSize); 489 Alignment); 588 unsigned Alignment = LD->getAlignment() [all...] |
/external/llvm/lib/CodeGen/SelectionDAG/ |
LegalizeVectorTypes.cpp | [all...] |
/external/clang/lib/Parse/ |
ParsePragma.cpp | 342 Token Alignment; 351 ExprResult Alignment; 352 if (Info->Alignment.is(tok::numeric_constant)) { 353 Alignment = Actions.ActOnNumericConstant(Info->Alignment); 354 if (Alignment.isInvalid()) 358 Alignment.get()); [all...] |