HomeSort by relevance Sort by last modified time
    Searched refs:Alignment (Results 326 - 350 of 645) sorted by null

<<11121314151617181920>>

  /external/llvm/lib/Transforms/Instrumentation/
AddressSanitizer.cpp 479 /// and set IsWrite/Alignment. Otherwise return nullptr.
481 uint64_t *TypeSize, unsigned *Alignment);
    [all...]
  /art/runtime/mirror/
class-inl.h 133 ArtMethod::Alignment(pointer_size));
147 ArtMethod::Alignment(pointer_size));
161 ArtMethod::Alignment(pointer_size));
176 ArtMethod::Alignment(pointer_size));
191 ArtMethod::Alignment(pointer_size));
207 ArtMethod::Alignment(pointer_size));
    [all...]
  /external/eigen/unsupported/Eigen/CXX11/src/Tensor/
TensorContractionThreadPool.h 117 bool rhs_inner_dim_reordered, int Alignment>
217 rhs_inner_dim_reordered, Alignment>(buffer);
221 rhs_inner_dim_reordered, Alignment>(buffer);
732 template <bool lhs_inner_dim_contiguous, bool rhs_inner_dim_contiguous, bool rhs_inner_dim_reordered, int Alignment>
735 this->template evalGemv<lhs_inner_dim_contiguous, rhs_inner_dim_contiguous, rhs_inner_dim_reordered, Alignment>(buffer);
739 evalGemm<lhs_inner_dim_contiguous, rhs_inner_dim_contiguous, rhs_inner_dim_reordered, Alignment>(buffer);
742 template <bool lhs_inner_dim_contiguous, bool rhs_inner_dim_contiguous, bool rhs_inner_dim_reordered, int Alignment>
    [all...]
TensorContraction.h 382 template <bool lhs_inner_dim_contiguous, bool rhs_inner_dim_contiguous, bool rhs_inner_dim_reordered, int Alignment>
423 template <bool lhs_inner_dim_contiguous, bool rhs_inner_dim_contiguous, bool rhs_inner_dim_reordered, int Alignment>
615 template <bool lhs_inner_dim_contiguous, bool rhs_inner_dim_contiguous, bool rhs_inner_dim_reordered, int Alignment>
618 this->template evalGemv<lhs_inner_dim_contiguous, rhs_inner_dim_contiguous, rhs_inner_dim_reordered, Alignment>(buffer);
622 this->template evalGemm<lhs_inner_dim_contiguous, rhs_inner_dim_contiguous, rhs_inner_dim_reordered, Alignment>(buffer);
  /external/swiftshader/third_party/LLVM/lib/Transforms/InstCombine/
InstCombineCalls.cpp 106 // If the memcpy/memmove provides better alignment info than we can
124 unsigned Alignment = getKnownAlignment(MI->getDest(), TD);
125 if (MI->getAlignment() < Alignment) {
127 Alignment, false));
131 // Extract the length and alignment and fill if they are constant.
137 Alignment = MI->getAlignment();
151 // Alignment 0 is identity for alignment 1 for memset, but not store.
152 if (Alignment == 0) Alignment = 1
    [all...]
  /external/llvm/lib/Target/X86/
X86TargetTransformInfo.cpp     [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Bus/Pci/PciBusDxe/
PciEnumerator.c     [all...]
PciLib.c 189 BridgeResource->Length, BridgeResource->Alignment
200 Bar[Resource->Bar].BaseAddress, Resource->Length, Resource->Alignment,
223 DEBUG ((EFI_D_INFO, " Base = Padding;\tLength = 0x%lx;\tAlignment = 0x%lx", Resource->Length, Resource->Alignment));
432 // If non-stardard PCI Bridge I/O window alignment is supported,
433 // set I/O aligment to minimum possible alignment for root bridge.
516 // Alignment should be adjusted as well
518 if (Mem32Bridge->Alignment < MaxOptionRomSize - 1) {
519 Mem32Bridge->Alignment = MaxOptionRomSize - 1;
    [all...]
  /external/clang/lib/CodeGen/
CGRecordLayoutBuilder.cpp 126 /// \brief Gets an llvm type of size NumBytes and alignment 1.
253 // and updates the alignment of the capstone to be equal of the alignment
256 // have been computed and needs to know the alignment of the record in
373 // cross an alignment boundary break a run and start a new one.
570 CharUnits Alignment = CharUnits::One();
579 // If any member falls at an offset that it not a multiple of its alignment,
585 Alignment = std::max(Alignment, getAlignment(Member->Data));
588 // record's alignment, it must be packed
    [all...]
CodeGenModule.cpp 918 unsigned alignment = D->getMaxAlignment() \/ Context.getCharWidth(); local
    [all...]
CGObjCRuntime.cpp 112 // alignment of the bit-field, because (a) it is not clear what guarantees the
114 // at an alignment plus offset.
125 CharUnits Alignment = CGF.CGM.getContext().toCharUnitsFromBits(AlignmentBits);
138 Address Addr(V, Alignment);
  /external/mesa3d/src/mesa/main/
image.c 105 GLint alignment; /* 1, 2 or 4 */ local
115 alignment = packing->Alignment;
145 bytes_per_row = alignment
146 * CEILING( comp_per_pixel*pixels_per_row, 8*alignment );
165 remainder = bytes_per_row % alignment;
167 bytes_per_row += (alignment - remainder);
169 ASSERT(bytes_per_row % alignment == 0);
306 remainder = bytesPerRow % packing->Alignment;
308 bytesPerRow += (packing->Alignment - remainder)
    [all...]
  /external/swiftshader/third_party/LLVM/lib/Target/ARM/AsmParser/
ARMAsmParser.cpp 335 unsigned Alignment; // 0 = no alignment specified
336 // n = alignment in bytes (8, 16, or 32)
682 (alignOK || Memory.Alignment == 0);
688 if (!isMemory() || Memory.Alignment != 0) return false;
706 if (!isMemory() || Memory.Alignment != 0) return false;
729 if (!isMemory() || Memory.Alignment != 0) return false;
740 Memory.ShiftType != ARM_AM::no_shift || Memory.Alignment != 0)
747 Memory.Alignment != 0 )
752 if (!isMemory() || !Memory.OffsetRegNum || Memory.Alignment != 0
    [all...]
  /device/linaro/bootloader/edk2/BaseTools/Source/C/GenFv/
GenFvInternalLib.c 273 // Read Fv Alignment
279 DebugMsg (NULL, 0, 9, "FV file alignment", "Align = %s", mFvbAlignmentName [Index]);
286 // Read weak alignment flag
293 Error (NULL, 0, 2000, "Invalid parameter", "Weak alignment value expected one of TRUE, FALSE, 1 or 0.");
429 IN OUT UINT32 *Alignment
435 This function determines the alignment of the FFS input file from the file
441 Alignment The minimum required alignment offset of the FFS file
454 if (FfsFile == NULL || Alignment == NULL) {
462 // 1 byte alignment
    [all...]
  /external/compiler-rt/lib/ubsan/
ubsan_handlers.cc 51 else if (Data->Alignment && (Pointer & (Data->Alignment - 1)))
76 "which requires %2 byte alignment")
78 << Data->Alignment << Data->Type;
  /external/llvm/include/llvm/CodeGen/
MachineBasicBlock.h 108 /// Alignment of the basic block. Zero if the basic block does not need to be
109 /// aligned. The alignment is specified as log2(bytes).
110 unsigned Alignment = 0;
329 /// Return alignment of the basic block. The alignment is specified as
331 unsigned getAlignment() const { return Alignment; }
333 /// Set alignment of the basic block. The alignment is specified as
335 void setAlignment(unsigned Align) { Alignment = Align; }
    [all...]
FastISel.h 46 uint16_t Alignment;
52 IsSwiftError(false), Alignment(0) {}
SelectionDAG.h 200 AlignOf<MostAlignedSDNode>::Alignment>
    [all...]
  /external/llvm/lib/AsmParser/
LLParser.h 238 bool ParseOptionalAlignment(unsigned &Alignment);
243 bool ParseOptionalStackAlignment(unsigned &Alignment);
244 bool ParseOptionalCommaAlign(unsigned &Alignment, bool &AteExtraComma);
  /external/pdfium/xfa/fxfa/app/
cxfa_textparser.cpp 35 Alignment,
578 eStatus = TabStopStatus::Alignment;
582 case TabStopStatus::Alignment:
  /external/llvm/lib/Target/Mips/MCTargetDesc/
MipsTargetStreamer.cpp 34 cl::desc("Round section sizes up to the section alignment"), cl::Hidden);
760 // Make sections sizes a multiple of the alignment. This is useful for
768 unsigned Alignment = Section.getAlignment();
769 if (Alignment) {
772 OS.EmitCodeAlignment(Alignment, Alignment);
774 OS.EmitValueToAlignment(Alignment, 0, 1, Alignment);
    [all...]
  /device/linaro/bootloader/edk2/SourceLevelDebugPkg/Library/DebugAgent/DebugAgentCommon/
DebugAgent.c     [all...]
  /external/clang/lib/Sema/
MultiplexExternalSemaSource.cpp 162 uint64_t &Alignment,
167 if (Sources[i]->layoutRecordType(Record, Size, Alignment, FieldOffsets,
  /external/llvm/include/llvm/ADT/
StringMap.h 160 unsigned Alignment = alignOf<StringMapEntry>();
163 static_cast<StringMapEntry*>(Allocator.Allocate(AllocSize,Alignment));
  /external/llvm/include/llvm/Support/
YAMLParser.h 147 size_t Alignment = 16) LLVM_NOEXCEPT {
148 return Alloc.Allocate(Size, Alignment);

Completed in 2874 milliseconds

<<11121314151617181920>>