Home
last modified time | relevance | path

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

/external/swiftshader/third_party/llvm-7.0/llvm/lib/Support/
DAPInt.cpp2388 unsigned srcParts, unsigned dstParts, in tcMultiplyPart() argument
2391 assert(dst <= src || dst >= src + srcParts); in tcMultiplyPart()
2392 assert(dstParts <= srcParts + 1); in tcMultiplyPart()
2395 unsigned n = std::min(dstParts, srcParts); in tcMultiplyPart()
2448 if (srcParts < dstParts) { in tcMultiplyPart()
2450 assert(srcParts + 1 == dstParts); in tcMultiplyPart()
2451 dst[srcParts] = carry; in tcMultiplyPart()
2463 for (unsigned i = dstParts; i < srcParts; i++) in tcMultiplyPart()
/external/llvm/lib/Support/
DAPInt.cpp2547 unsigned int srcParts, unsigned int dstParts, in tcMultiplyPart() argument
2553 assert(dst <= src || dst >= src + srcParts); in tcMultiplyPart()
2554 assert(dstParts <= srcParts + 1); in tcMultiplyPart()
2557 n = dstParts < srcParts ? dstParts: srcParts; in tcMultiplyPart()
2624 for (; i < srcParts; i++) in tcMultiplyPart()
/external/swiftshader/third_party/LLVM/lib/Support/
DAPInt.cpp2615 unsigned int srcParts, unsigned int dstParts, in tcMultiplyPart() argument
2621 assert(dst <= src || dst >= src + srcParts); in tcMultiplyPart()
2622 assert(dstParts <= srcParts + 1); in tcMultiplyPart()
2625 n = dstParts < srcParts ? dstParts: srcParts; in tcMultiplyPart()
2692 for (; i < srcParts; i++) in tcMultiplyPart()
/external/swiftshader/third_party/llvm-subzero/lib/Support/
DAPInt.cpp2521 unsigned int srcParts, unsigned int dstParts, in tcMultiplyPart() argument
2527 assert(dst <= src || dst >= src + srcParts); in tcMultiplyPart()
2528 assert(dstParts <= srcParts + 1); in tcMultiplyPart()
2531 n = dstParts < srcParts ? dstParts: srcParts; in tcMultiplyPart()
2598 for (; i < srcParts; i++) in tcMultiplyPart()
/external/swiftshader/third_party/LLVM/include/llvm/ADT/
DAPInt.h1461 unsigned int srcParts, unsigned int dstParts,
/external/llvm/include/llvm/ADT/
DAPInt.h1667 unsigned int srcParts, unsigned int dstParts,
/external/swiftshader/third_party/llvm-subzero/include/llvm/ADT/
DAPInt.h1645 unsigned int srcParts, unsigned int dstParts,
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/ADT/
DAPInt.h1883 unsigned srcParts, unsigned dstParts,