Home
last modified time | relevance | path

Searched refs:leftShift (Results 1 – 5 of 5) sorted by relevance

/frameworks/av/media/libstagefright/flac/dec/
DFLACDecoder.cpp131 const int leftShift = 16 - (int)bitsPerSample; // cast to int to prevent unsigned overflow. in copyTo16Signed() local
132 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() local
157 *dst++ = float_from_i32(src[c][i] << leftShift); in copyToFloat()
/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/js/binary/
Darith_test.js86 a = a.leftShift();
91 a = a.leftShift();
95 a = a.leftShift();
99 a = a.leftShift();
102 a = a.leftShift();
Darith.js99 jspb.arith.UInt64.prototype.leftShift = function() { method in jspb.arith.UInt64
242 divisor = divisor.leftShift();
243 unit = unit.leftShift();
/frameworks/av/media/extractors/flac/
DFLACExtractor.cpp411 const int leftShift = 16 - (int)bitsPerSample; // cast to int to prevent unsigned overflow. in copyTo16Signed() local
412 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() local
437 *dst++ = float_from_i32(src[c][i] << leftShift); in copyToFloat()
/frameworks/base/config/
Dboot-image-profile.txt31171 HSPLsun/misc/FDBigInteger;->leftShift(I)Lsun/misc/FDBigInteger;