HomeSort by relevance Sort by last modified time
    Searched defs:UF (Results 1 - 7 of 7) sorted by null

  /external/clang/test/Layout/
ms-x86-member-pointers.cpp 15 struct UF { char a; int (U::*mp)(); };
67 // CHECK-NEXT: 0 | struct UF
80 sizeof(UF)];
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/Vectorize/
VPlan.h 82 /// in [0..UF)
92 /// one for scalarized values. Vectorized values are represented with UF
94 /// UF x VF scalar values in the new loop. UF and VF are the unroll and
110 /// The unroll factor. Each entry in the vector map contains UF vector values.
111 unsigned UF;
113 /// The vectorization factor. Each entry in the scalar map contains UF x VF
126 VectorizerValueMap(unsigned UF, unsigned VF) : UF(UF), VF(VF) {
    [all...]
LoopVectorize.cpp 367 AC(AC), ORE(ORE), VF(VecWidth), UF(UnrollFactor),
386 /// original loop, when vectorized, is represented by UF vector values in the
387 /// new unrolled loop, where UF is the unroll factor.
393 void widenPHIInstruction(Instruction *PN, unsigned UF, unsigned VF);
458 /// original loop, when scalarized, is represented by UF x VF scalar values
459 /// in the new unrolled loop, where UF is the unroll factor and VF is the
647 unsigned UF;
693 /// Trip count of the widened loop (TripCount - TripCount % (VF*UF))
756 B.SetCurrentDebugLocation(DIL->cloneWithDuplicationFactor(UF * VF));
    [all...]
  /device/linaro/bootloader/edk2/EmbeddedPkg/Library/HalRuntimeServicesExampleLib/
Rtc.c 105 UINT8 UF : 1; // Update End Interrupt Flag
108 UINT8 IRQF : 1; // Iterrupt Request Flag = PF & PIE | AF & AIE | UF & UIE
  /external/llvm/lib/Target/Hexagon/
HexagonCommonGEP.cpp 753 NodeToUsesMap::iterator UF = Uses.find(Node);
754 assert(UF != Uses.end() && "Used node with no use information");
755 UseSet &Us = UF->second;
969 NodeToUsesMap::iterator UF = Uses.find(Node);
970 assert(UF != Uses.end());
971 UseSet &Us = UF->second;
984 Uses.erase(UF);
1009 NodeToUsesMap::iterator UF = Uses.find(N);
1010 assert(UF != Uses.end());
1011 UseSet &Us = UF->second
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/Hexagon/
HexagonCommonGEP.cpp 770 NodeToUsesMap::iterator UF = Uses.find(Node);
771 assert(UF != Uses.end() && "Used node with no use information");
772 UseSet &Us = UF->second;
979 NodeToUsesMap::iterator UF = Uses.find(Node);
980 assert(UF != Uses.end());
981 UseSet &Us = UF->second;
994 Uses.erase(UF);
    [all...]
  /external/llvm/lib/Transforms/Vectorize/
LoopVectorize.cpp 295 AC(AC), VF(VecWidth), UF(UnrollFactor),
378 void widenPHIInstruction(Instruction *PN, VectorParts &Entry, unsigned UF,
481 ValueMap(unsigned UnrollFactor) : UF(UnrollFactor) {}
491 Entry.assign(UF, Val);
499 Entry.resize(UF);
500 assert(Entry.size() == UF);
507 unsigned UF;
547 unsigned UF;
577 /// corresponding VF * UF scalarized values in the vectorized loop. The
592 /// Trip count of the widened loop (TripCount - TripCount % (VF*UF))
    [all...]

Completed in 425 milliseconds