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

  /external/swiftshader/third_party/LLVM/lib/CodeGen/SelectionDAG/
SelectionDAGBuilder.cpp 115 unsigned RoundParts = NumParts & (NumParts - 1) ?
117 unsigned RoundBits = PartBits * RoundParts;
124 if (RoundParts > 2) {
125 Lo = getCopyFromParts(DAG, DL, Parts, RoundParts / 2,
127 Hi = getCopyFromParts(DAG, DL, Parts + RoundParts / 2,
128 RoundParts / 2, PartVT, HalfVT);
139 if (RoundParts < NumParts) {
141 unsigned OddParts = NumParts - RoundParts;
144 Parts + RoundParts, OddParts, PartVT, OddVT);
389 unsigned RoundParts = 1 << Log2_32(NumParts)
    [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
SelectionDAGBuilder.cpp 147 unsigned RoundParts = NumParts & (NumParts - 1) ?
149 unsigned RoundBits = PartBits * RoundParts;
156 if (RoundParts > 2) {
157 Lo = getCopyFromParts(DAG, DL, Parts, RoundParts / 2,
159 Hi = getCopyFromParts(DAG, DL, Parts + RoundParts / 2,
160 RoundParts / 2, PartVT, HalfVT, V);
171 if (RoundParts < NumParts) {
173 unsigned OddParts = NumParts - RoundParts;
176 Parts + RoundParts, OddParts, PartVT, OddVT, V);
464 unsigned RoundParts = 1 << Log2_32(NumParts)
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/CodeGen/SelectionDAG/
SelectionDAGBuilder.cpp 216 unsigned RoundParts = NumParts & (NumParts - 1) ?
218 unsigned RoundBits = PartBits * RoundParts;
225 if (RoundParts > 2) {
226 Lo = getCopyFromParts(DAG, DL, Parts, RoundParts / 2,
228 Hi = getCopyFromParts(DAG, DL, Parts + RoundParts / 2,
229 RoundParts / 2, PartVT, HalfVT, V);
240 if (RoundParts < NumParts) {
242 unsigned OddParts = NumParts - RoundParts;
244 Hi = getCopyFromParts(DAG, DL, Parts + RoundParts, OddParts, PartVT,
570 unsigned RoundParts = 1 << Log2_32(NumParts)
    [all...]

Completed in 196 milliseconds