HomeSort by: relevance | last modified time | path
    Searched defs:Multiple (Results 1 - 2 of 2) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/lib/Analysis/
MemoryBuiltins.cpp 362 // If malloc call's arg can be determined to be a multiple of ElementSize,
363 // return the multiple. Otherwise, return NULL.
365 Value *Multiple = nullptr;
366 if (ComputeMultiple(MallocArg, ElementSize, Multiple, LookThroughSExt))
367 return Multiple;
415 /// argument passed to malloc is a multiple of the size of the malloced type,
416 /// then return that multiple. For non-array mallocs, the multiple is
  /src/external/apache2/llvm/dist/llvm/lib/Target/PowerPC/
PPCISelLowering.cpp 2408 // multiple elements of the buildvector are folded together into a single
2412 unsigned Multiple = ByteSize/EltSize; // Number of BV entries per spltval.
2414 assert(Multiple > 1 && Multiple <= 4 && "How can this happen?");
2422 if (!UniquedVals[i&(Multiple-1)].getNode())
2423 UniquedVals[i&(Multiple-1)] = N->getOperand(i);
2424 else if (UniquedVals[i&(Multiple-1)] != N->getOperand(i))
2428 // Okay, if we reached this point, UniquedVals[0..Multiple-1] contains
2436 for (unsigned i = 0; i != Multiple-1; ++i) {
2444 if (!UniquedVals[Multiple-1].getNode()
    [all...]

Completed in 30 milliseconds