Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/llvm/lib/Support/
H A DAPInt.cpp2494 unsigned srcParts, unsigned dstParts, in tcMultiplyPart() argument
2497 assert(dst <= src || dst >= src + srcParts); in tcMultiplyPart()
2498 assert(dstParts <= srcParts + 1); in tcMultiplyPart()
2501 unsigned n = std::min(dstParts, srcParts); in tcMultiplyPart()
2548 if (srcParts < dstParts) { in tcMultiplyPart()
2550 assert(srcParts + 1 == dstParts); in tcMultiplyPart()
2551 dst[srcParts] = carry; in tcMultiplyPart()
2563 for (unsigned i = dstParts; i < srcParts; i++) in tcMultiplyPart()
/openbsd-src/gnu/llvm/llvm/include/llvm/ADT/
H A DAPInt.h1810 unsigned srcParts, unsigned dstParts, bool add);