Searched refs:firstSrcPart (Results 1 – 4 of 4) sorted by relevance
/external/llvm/lib/Support/ |
D | APInt.cpp | 2446 unsigned int firstSrcPart, dstParts, shift, n; in tcExtract() local 2451 firstSrcPart = srcLSB / integerPartWidth; in tcExtract() 2452 tcAssign (dst, src + firstSrcPart, dstParts); in tcExtract() 2463 dst[dstParts - 1] |= ((src[firstSrcPart + dstParts] & mask) in tcExtract()
|
/external/swiftshader/third_party/LLVM/lib/Support/ |
D | APInt.cpp | 2514 unsigned int firstSrcPart, dstParts, shift, n; in tcExtract() local 2519 firstSrcPart = srcLSB / integerPartWidth; in tcExtract() 2520 tcAssign (dst, src + firstSrcPart, dstParts); in tcExtract() 2531 dst[dstParts - 1] |= ((src[firstSrcPart + dstParts] & mask) in tcExtract()
|
/external/swiftshader/third_party/llvm-subzero/lib/Support/ |
D | APInt.cpp | 2420 unsigned int firstSrcPart, dstParts, shift, n; in tcExtract() local 2425 firstSrcPart = srcLSB / integerPartWidth; in tcExtract() 2426 tcAssign (dst, src + firstSrcPart, dstParts); in tcExtract() 2437 dst[dstParts - 1] |= ((src[firstSrcPart + dstParts] & mask) in tcExtract()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Support/ |
D | APInt.cpp | 2271 unsigned firstSrcPart = srcLSB / APINT_BITS_PER_WORD; in tcExtract() local 2272 tcAssign (dst, src + firstSrcPart, dstParts); in tcExtract() 2283 dst[dstParts - 1] |= ((src[firstSrcPart + dstParts] & mask) in tcExtract()
|