Searched refs:leftShift (Results 1 – 5 of 5) sorted by relevance
131 const int leftShift = 16 - (int)bitsPerSample; // cast to int to prevent unsigned overflow. in copyTo16Signed() local132 if (leftShift >= 0) { in copyTo16Signed()135 *dst++ = src[c][i] << leftShift; in copyTo16Signed()139 const int rightShift = -leftShift; in copyTo16Signed()154 const unsigned leftShift = 32 - bitsPerSample; in copyToFloat() local157 *dst++ = float_from_i32(src[c][i] << leftShift); in copyToFloat()
86 a = a.leftShift();91 a = a.leftShift();95 a = a.leftShift();99 a = a.leftShift();102 a = a.leftShift();
99 jspb.arith.UInt64.prototype.leftShift = function() { method in jspb.arith.UInt64242 divisor = divisor.leftShift();243 unit = unit.leftShift();
411 const int leftShift = 16 - (int)bitsPerSample; // cast to int to prevent unsigned overflow. in copyTo16Signed() local412 if (leftShift >= 0) { in copyTo16Signed()415 *dst++ = src[c][i] << leftShift; in copyTo16Signed()419 const int rightShift = -leftShift; in copyTo16Signed()434 const unsigned leftShift = 32 - bitsPerSample; in copyToFloat() local437 *dst++ = float_from_i32(src[c][i] << leftShift); in copyToFloat()
31171 HSPLsun/misc/FDBigInteger;->leftShift(I)Lsun/misc/FDBigInteger;