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()
413 const int leftShift = 16 - (int)bitsPerSample; // cast to int to prevent unsigned overflow. in copyTo16Signed() local414 if (leftShift >= 0) { in copyTo16Signed()417 *dst++ = src[c][i] << leftShift; in copyTo16Signed()421 const int rightShift = -leftShift; in copyTo16Signed()436 const unsigned leftShift = 32 - bitsPerSample; in copyToFloat() local439 *dst++ = float_from_i32(src[c][i] << leftShift); in copyToFloat()
719 float leftShift = 0; in draw() local723 leftShift = -drawingRect.left; in draw()724 c.translate(leftShift, 0); in draw()730 if (leftShift != 0) { in draw()733 c.translate(-leftShift, 0); in draw()
496 float leftShift = 0; in draw() local500 leftShift = -drawingRect.left; in draw()501 canvas.translate(leftShift, 0); in draw()526 if (leftShift != 0) { in draw()529 canvas.translate(-leftShift, 0); in draw()
30674 HSPLjdk/internal/math/FDBigInteger;->leftShift(I)Ljdk/internal/math/FDBigInteger;30675 HSPLjdk/internal/math/FDBigInteger;->leftShift([II[IIII)V