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

  /src/external/apache2/llvm/dist/llvm/lib/IR/
ConstantFold.cpp 219 unsigned CSize = cast<IntegerType>(C->getType())->getBitWidth()/8;
221 assert(ByteStart+ByteSize <= CSize && "Extracting invalid piece from input");
222 assert(ByteSize != CSize && "Should not extract everything");
280 if (ShAmt.uge(CSize - ByteStart))
284 if (ShAmt.ule(CSize - (ByteStart + ByteSize)))
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/SelectionDAG/
SelectionDAGBuilder.cpp 7576 const ConstantInt *CSize = dyn_cast<ConstantInt>(Size);
7577 if (CSize && CSize->getZExtValue() == 0) {
7596 if (!CSize || !isOnlyUsedInZeroEqualityComparison(&I))
7625 unsigned NumBitsToCompare = CSize->getZExtValue() * 8;

Completed in 72 milliseconds