Home
last modified time | relevance | path

Searched refs:dstParts (Results 1 – 4 of 4) sorted by relevance

/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/lib/Support/
DAPInt.cpp2405 unsigned int firstSrcPart, dstParts, shift, n; in tcExtract() local
2407 dstParts = (srcBits + integerPartWidth - 1) / integerPartWidth; in tcExtract()
2408 assert(dstParts <= dstCount); in tcExtract()
2411 tcAssign (dst, src + firstSrcPart, dstParts); in tcExtract()
2414 tcShiftRight (dst, dstParts, shift); in tcExtract()
2419 n = dstParts * integerPartWidth - shift; in tcExtract()
2422 dst[dstParts - 1] |= ((src[firstSrcPart + dstParts] & mask) in tcExtract()
2426 dst[dstParts - 1] &= lowBitMask (srcBits % integerPartWidth); in tcExtract()
2430 while (dstParts < dstCount) in tcExtract()
2431 dst[dstParts++] = 0; in tcExtract()
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Support/
DAPInt.cpp2422 unsigned dstParts = (srcBits + APINT_BITS_PER_WORD - 1) / APINT_BITS_PER_WORD; in tcExtract() local
2423 assert(dstParts <= dstCount); in tcExtract()
2426 tcAssign (dst, src + firstSrcPart, dstParts); in tcExtract()
2429 tcShiftRight (dst, dstParts, shift); in tcExtract()
2434 unsigned n = dstParts * APINT_BITS_PER_WORD - shift; in tcExtract()
2437 dst[dstParts - 1] |= ((src[firstSrcPart + dstParts] & mask) in tcExtract()
2441 dst[dstParts - 1] &= lowBitMask (srcBits % APINT_BITS_PER_WORD); in tcExtract()
2445 while (dstParts < dstCount) in tcExtract()
2446 dst[dstParts++] = 0; in tcExtract()
2542 unsigned srcParts, unsigned dstParts, in tcMultiplyPart() argument
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/include/llvm/ADT/
DAPInt.h1645 unsigned int srcParts, unsigned int dstParts,
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ADT/
DAPInt.h1947 unsigned srcParts, unsigned dstParts,