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

  /external/swiftshader/third_party/LLVM/lib/Target/
TargetData.cpp 144 // Default alignments
252 for (unsigned i = 0, e = Alignments.size(); i != e; ++i) {
253 if (Alignments[i].AlignType == align_type &&
254 Alignments[i].TypeBitWidth == bit_width) {
255 // Update the abi, preferred alignments.
256 Alignments[i].ABIAlign = abi_align;
257 Alignments[i].PrefAlign = pref_align;
262 Alignments.push_back(TargetAlignElem::get(align_type, abi_align,
274 for (unsigned i = 0, e = Alignments.size(); i != e; ++i) {
275 if (Alignments[i].AlignType == AlignType &
    [all...]
  /external/llvm/lib/IR/
DataLayout.cpp 186 // Default alignments
392 Alignments == Other.Alignments && Pointers == Other.Pointers;
415 for (LayoutAlignElem &Elem : Alignments) {
418 // Update the abi, preferred alignments.
425 Alignments.push_back(LayoutAlignElem::get(align_type, abi_align,
463 for (unsigned i = 0, e = Alignments.size(); i != e; ++i) {
464 if (Alignments[i].AlignType == (unsigned)AlignType &&
465 Alignments[i].TypeBitWidth == BitWidth)
466 return ABIInfo ? Alignments[i].ABIAlign : Alignments[i].PrefAlign
    [all...]
  /external/swiftshader/third_party/LLVM/include/llvm/Target/
TargetData.h 84 /// Alignments- Where the primitive type alignment data is stored.
87 /// @note Could support multiple size pointer alignments, e.g., 32-bit
90 SmallVector<TargetAlignElem, 16> Alignments;
99 //! Set/initialize target alignments
138 Alignments(TD.Alignments),
144 //! Parse a target data layout string and initialize TargetData alignments.
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/IR/
DataLayout.cpp 191 // Default alignments
438 Alignments == Other.Alignments && Pointers == Other.Pointers;
447 return std::lower_bound(Alignments.begin(), Alignments.end(), Pair,
474 if (I != Alignments.end() &&
476 // Update the abi, preferred alignments.
481 Alignments.insert(I, LayoutAlignElem::get(align_type, abi_align,
522 if (I != Alignments.end() && I->AlignType == (unsigned)AlignType &&
528 if (I != Alignments.begin())
    [all...]
  /external/llvm/include/llvm/IR/
DataLayout.h 121 SmallVector<LayoutAlignElem, 16> Alignments;
200 Alignments = DL.Alignments;
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/IR/
DataLayout.h 135 AlignmentsTy Alignments;
206 Alignments = DL.Alignments;
  /external/libvpx/libvpx/test/
byte_alignment_test.cc 179 INSTANTIATE_TEST_CASE_P(Alignments, ByteAlignmentTest,
  /external/clang/lib/Parse/
ParseOpenMP.cpp 423 SmallVectorImpl<Expr *> &Alignments, SmallVectorImpl<Expr *> &Linears,
472 Alignments.append(Aligneds.size() - Alignments.size(), Data.TailExpr);
507 SmallVector<Expr *, 4> Alignments;
513 Alignments, Linears, LinModifiers, Steps);
525 Ptr, BS, Simdlen.get(), Uniforms, Aligneds, Alignments, Linears,
    [all...]
  /external/tensorflow/tensorflow/contrib/seq2seq/python/ops/
attention_wrapper.py 104 probability_fn: A `callable`. Converts the score and previous alignments
264 probability_fn: A `callable`. Converts the score and previous alignments
727 alignments: Tensor of dtype matching `self.values` and shape
738 alignments = self._probability_fn(score, state)
739 next_state = alignments
740 return alignments, next_state
    [all...]
  /external/clang/lib/Sema/
SemaTemplateInstantiateDecl.cpp 247 SmallVector<Expr *, 4> Uniforms, Aligneds, Alignments, Linears, Steps;
287 Alignments.push_back(Inst.get());
306 Uniforms, Aligneds, Alignments, Linears, LinModifiers, Steps,
    [all...]
SemaOpenMP.cpp     [all...]
  /external/clang/include/clang/Sema/
Sema.h     [all...]

Completed in 733 milliseconds