Searched refs:nBits (Results 1 - 22 of 22) sorted by relevance

/external/chromium_org/v8/test/mjsunit/regress/
H A Dregress-2499.js30 function foo(word, nBits) {
31 return (word[1] >>> nBits) | (word[0] << (32 - nBits));
/external/aac/libSBRdec/src/
H A Dsbr_crc.cpp101 calcCRC (HANDLE_CRC hCrcBuf, ULONG bValue, int nBits) argument
104 ULONG bMask = (1UL << (nBits - 1));
106 for (i = 0; i < nBits; i++, bMask >>= 1) {
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/nv50/codegen/
H A Dnv50_ir_util.cpp242 bool BitSet::resize(unsigned int nBits) argument
244 if (!data || !nBits)
245 return allocate(nBits, true);
247 const unsigned int n = (nBits + 31) / 32;
259 size = nBits;
263 bool BitSet::allocate(unsigned int nBits, bool zero) argument
265 if (data && size < nBits) {
269 size = nBits;
277 if (nBits)
H A Dnv50_ir_util.h477 BitSet(unsigned int nBits, bool zero) : marker(false), data(0), size(0)
479 allocate(nBits, zero);
487 bool allocate(unsigned int nBits, bool zero);
488 bool resize(unsigned int nBits); // keep old data, zero additional bits
/external/mesa3d/src/gallium/drivers/nv50/codegen/
H A Dnv50_ir_util.cpp242 bool BitSet::resize(unsigned int nBits) argument
244 if (!data || !nBits)
245 return allocate(nBits, true);
247 const unsigned int n = (nBits + 31) / 32;
259 size = nBits;
263 bool BitSet::allocate(unsigned int nBits, bool zero) argument
265 if (data && size < nBits) {
269 size = nBits;
277 if (nBits)
H A Dnv50_ir_util.h477 BitSet(unsigned int nBits, bool zero) : marker(false), data(0), size(0)
479 allocate(nBits, zero);
487 bool allocate(unsigned int nBits, bool zero);
488 bool resize(unsigned int nBits); // keep old data, zero additional bits
/external/chromium_org/third_party/opus/src/silk/fixed/
H A Dencode_frame_FIX.c91 opus_int32 seed_copy, nBits, nBits_lower, nBits_upper, gainMult_lower, gainMult_upper; local
180 nBits = nBits_lower;
182 nBits = nBits_upper;
217 nBits = ec_tell( psRangeEnc );
219 if( useCBR == 0 && iter == 0 && nBits <= maxBits ) {
225 if( found_lower && ( gainsID == gainsID_lower || nBits > maxBits ) ) {
236 if( nBits > maxBits ) {
244 nBits_upper = nBits;
248 } else if( nBits < maxBits - 5 ) {
250 nBits_lower = nBits;
[all...]
/external/chromium_org/third_party/opus/src/silk/float/
H A Dencode_frame_FLP.c92 opus_int32 seed_copy, nBits, nBits_lower, nBits_upper, gainMult_lower, gainMult_upper; local
175 nBits = nBits_lower;
177 nBits = nBits_upper;
204 nBits = ec_tell( psRangeEnc );
206 if( useCBR == 0 && iter == 0 && nBits <= maxBits ) {
212 if( found_lower && ( gainsID == gainsID_lower || nBits > maxBits ) ) {
223 if( nBits > maxBits ) {
231 nBits_upper = nBits;
235 } else if( nBits < maxBits - 5 ) {
237 nBits_lower = nBits;
[all...]
/external/aac/libSYS/src/
H A Dwav_file.cpp253 * \nBits sample size in bits to be used for the buffer
259 INT WAV_InputRead (HANDLE_WAV wav, void *buffer, UINT numSamples, int nBits) argument
270 if (nBits == wav->header.bitsPerSample) {
285 if (wav->header.bitsPerSample > nBits)
286 tmp >>= (wav->header.bitsPerSample-nBits);
288 tmp <<= (nBits-wav->header.bitsPerSample);
290 if (nBits == 8)
292 if (nBits == 16)
294 if (nBits == 32)
/external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/sunspider-0.9/
H A Dcrypto-aes.js158 * Use AES to encrypt 'plaintext' with 'password' using 'nBits' key, in 'Counter' mode of operation
164 function AESEncryptCtr(plaintext, password, nBits) {
165 if (!(nBits==128 || nBits==192 || nBits==256)) return ''; // standard allows 128/192/256 bit keys
169 var nBytes = nBits/8; // no bytes in key
224 * Use AES to decrypt 'ciphertext' with 'password' using 'nBits' key, in Counter mode of operation
230 function AESDecryptCtr(ciphertext, password, nBits) {
231 if (!(nBits==128 || nBits
[all...]
/external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/sunspider-0.9.1/
H A Dcrypto-aes.js158 * Use AES to encrypt 'plaintext' with 'password' using 'nBits' key, in 'Counter' mode of operation
164 function AESEncryptCtr(plaintext, password, nBits) {
165 if (!(nBits==128 || nBits==192 || nBits==256)) return ''; // standard allows 128/192/256 bit keys
169 var nBytes = nBits/8; // no bytes in key
224 * Use AES to decrypt 'ciphertext' with 'password' using 'nBits' key, in Counter mode of operation
230 function AESDecryptCtr(ciphertext, password, nBits) {
231 if (!(nBits==128 || nBits
[all...]
/external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/sunspider-1.0/
H A Dcrypto-aes.js158 * Use AES to encrypt 'plaintext' with 'password' using 'nBits' key, in 'Counter' mode of operation
164 function AESEncryptCtr(plaintext, password, nBits) {
165 if (!(nBits==128 || nBits==192 || nBits==256)) return ''; // standard allows 128/192/256 bit keys
169 var nBytes = nBits/8; // no bytes in key
224 * Use AES to decrypt 'ciphertext' with 'password' using 'nBits' key, in Counter mode of operation
230 function AESDecryptCtr(ciphertext, password, nBits) {
231 if (!(nBits==128 || nBits
[all...]
/external/aac/libAACdec/src/
H A Daacdecoder_lib.cpp665 static void aacDecoder_UpdateBitStreamCounters(CStreamInfo *pSi, HANDLE_FDK_BITSTREAM hBs, int nBits, AAC_DECODER_ERROR ErrorStatus) argument
668 nBits = nBits - FDKgetValidBits(hBs);
679 pSi->bitRate = (nBits * pSi->sampleRate)/pSi->frameSize;
686 nBytes = nBits>>3;
715 INT nBits; local
733 nBits = FDKgetValidBits(hBs);
909 aacDecoder_UpdateBitStreamCounters(&self->streamInfo, hBs, nBits, ErrorStatus);
/external/aac/libFDK/src/
H A DFDK_bitbuffer.cpp206 int nBits = (INT)hBitBuf->bufBits-(INT)hBitBuf->BitNdx; local
208 UINT cache = FDK_get (hBitBuf,nBits)<< (32-nBits);
209 cache |= (FDK_get (hBitBuf,32-nBits));
H A DFDK_crc.cpp183 INT nBits
310 * Calculate crc starting at current bitstream postion over nBits.
316 * \param nBits Number of processing bits.
325 INT nBits
332 for (i = 0; (i < nBits); i++) {
341 for (i = 0; (i < nBits); i++) {
351 return nBits;
362 * \param nBits Number of processing bytes.
/external/chromium_org/third_party/opus/src/silk/
H A Denc_API.c149 opus_int n, i, nBits, flags, tmp_payloadSize_ms = 0, tmp_complexity = 0, ret = 0; local
379 nBits = silk_DIV32_16( silk_MUL( encControl->bitRate, encControl->payloadSize_ms ), 1000 );
382 nBits -= ec_tell( psRangeEnc ) >> 1;
385 nBits = silk_DIV32_16( nBits, psEnc->state_Fxx[ 0 ].sCmn.nFramesPerPacket - psEnc->state_Fxx[ 0 ].sCmn.nFramesEncoded );
388 TargetRate_bps = silk_SMULBB( nBits, 100 );
390 TargetRate_bps = silk_SMULBB( nBits, 50 );
/external/jmonkeyengine/engine/src/desktop/jme3tools/converters/
H A DImageToAwt.java410 int[] nBits = {5, 5, 5, 1};
412 ColorModel colorModel = new ComponentColorModel(cs, nBits, true, false,
/external/valgrind/main/memcheck/
H A Dmc_main.c1133 ULong mc_LOADVn_slow ( Addr a, SizeT nBits, Bool bigendian ) argument
1146 && nBits == 64 && VG_IS_8_ALIGNED(a))) {
1157 && nBits == 32 && VG_IS_4_ALIGNED(a))) {
1171 SSizeT szB = nBits / 8;
1178 tl_assert(nBits == 64 || nBits == 32 || nBits == 16 || nBits == 8);
1262 void mc_STOREVn_slow ( Addr a, SizeT nBits, ULong vbytes, Bool bigendian ) argument
1264 SizeT szB = nBits /
[all...]
/external/aac/libMpegTPDec/src/
H A Dtpdec_asc.cpp643 static INT getSampleRate(HANDLE_FDK_BITSTREAM bs, UCHAR *index, int nBits) argument
648 idx = FDKreadBits(bs, nBits);
649 if( idx == (1<<nBits)-1 ) {
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.swt.gtk.linux.x86_3.6.1.v3657a.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.swt.win32.win32.x86_3.6.1.v3657a.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/chromium_org/third_party/WebKit/Source/devtools/scripts/closure/
H A Dcompiler.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/debugging/ com/google/debugging/sourcemap/ ...

Completed in 1193 milliseconds