Home
last modified time | relevance | path

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

/external/llvm/lib/ExecutionEngine/Interpreter/
DExecution.cpp1149 uint64_t shiftAmount = Src2.AggregateVal[i].IntVal.getZExtValue(); in visitShl() local
1151 Result.IntVal = valueToShift.shl(getShiftAmount(shiftAmount, valueToShift)); in visitShl()
1156 uint64_t shiftAmount = Src2.IntVal.getZExtValue(); in visitShl() local
1158 Dest.IntVal = valueToShift.shl(getShiftAmount(shiftAmount, valueToShift)); in visitShl()
1176 uint64_t shiftAmount = Src2.AggregateVal[i].IntVal.getZExtValue(); in visitLShr() local
1178 Result.IntVal = valueToShift.lshr(getShiftAmount(shiftAmount, valueToShift)); in visitLShr()
1183 uint64_t shiftAmount = Src2.IntVal.getZExtValue(); in visitLShr() local
1185 Dest.IntVal = valueToShift.lshr(getShiftAmount(shiftAmount, valueToShift)); in visitLShr()
1203 uint64_t shiftAmount = Src2.AggregateVal[i].IntVal.getZExtValue(); in visitAShr() local
1205 Result.IntVal = valueToShift.ashr(getShiftAmount(shiftAmount, valueToShift)); in visitAShr()
[all …]
/external/deqp/framework/common/
DtcuCompressedTexture.cpp1879 const int shiftAmount = (mode >> 1) ^ 3; in decodeHDREndpointMode11() local
1880 a <<= shiftAmount; in decodeHDREndpointMode11()
1881 c <<= shiftAmount; in decodeHDREndpointMode11()
1882 b0 <<= shiftAmount; in decodeHDREndpointMode11()
1883 b1 <<= shiftAmount; in decodeHDREndpointMode11()
1884 d0 <<= shiftAmount; in decodeHDREndpointMode11()
1885 d1 <<= shiftAmount; in decodeHDREndpointMode11()