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

  /external/llvm/lib/Transforms/Scalar/
MemCpyOptimizer.cpp 181 unsigned MaxIntSize = DL.getLargestLegalIntTypeSizeInBits() / 8;
182 if (MaxIntSize == 0)
183 MaxIntSize = 1;
184 unsigned NumPointerStores = Bytes / MaxIntSize;
187 unsigned NumByteStores = Bytes % MaxIntSize;
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/Scalar/
MemCpyOptimizer.cpp 217 unsigned MaxIntSize = DL.getLargestLegalIntTypeSizeInBits() / 8;
218 if (MaxIntSize == 0)
219 MaxIntSize = 1;
220 unsigned NumPointerStores = Bytes / MaxIntSize;
223 unsigned NumByteStores = Bytes % MaxIntSize;
    [all...]

Completed in 1204 milliseconds