Home
last modified time | relevance | path

Searched refs:srcParts (Results 1 – 2 of 2) sorted by relevance

/netbsd-src/external/apache2/llvm/dist/llvm/lib/Support/
H A DAPInt.cpp2541 unsigned srcParts, unsigned dstParts, in tcMultiplyPart() argument
2544 assert(dst <= src || dst >= src + srcParts); in tcMultiplyPart()
2545 assert(dstParts <= srcParts + 1); in tcMultiplyPart()
2548 unsigned n = std::min(dstParts, srcParts); in tcMultiplyPart()
2601 if (srcParts < dstParts) { in tcMultiplyPart()
2603 assert(srcParts + 1 == dstParts); in tcMultiplyPart()
2604 dst[srcParts] = carry; in tcMultiplyPart()
2616 for (unsigned i = dstParts; i < srcParts; i++) in tcMultiplyPart()
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/ADT/
H A DAPInt.h1960 unsigned srcParts, unsigned dstParts,