Searched refs:bits (Results 751 - 775 of 1594) sorted by relevance

<<31323334353637383940>>

/external/libvpx/libvpx/vp8/encoder/ppc/
H A Dfdct_altivec.asm115 vspltisw v7, 14 ;# == 14, fits in 5 signed bits
126 vspltisw v7, -16 ;# == 16 == -16, only low 5 bits matter
144 vspltisw v7, 14 ;# == 14, fits in 5 signed bits
155 vspltisw v7, -16 ;# == 16 == -16, only low 5 bits matter
167 vspltisw v7, 14 ;# == 14, fits in 5 signed bits
177 vspltisw v7, -16 ;# == 16 == -16, only low 5 bits matter
/external/mesa3d/src/gallium/drivers/i915/
H A Di915_debug.c285 unsigned bits = (ptr[0] >> 4) & 0xff; local
288 PRINTF(stream, "%s (%d dwords, flags: %x):\n", name, len, bits);
291 if (bits & (1<<0)) {
297 if (bits & (1<<1)) {
304 if (bits & (1<<2)) {
314 if (bits & (1<<3)) {
318 if (bits & (1<<4)) {
340 if (bits & (1<<5)) {
358 if (bits & (1<<6)) {
392 unsigned bits local
[all...]
/external/mesa3d/src/mesa/drivers/dri/i915/
H A Di915_debug.c209 GLuint bits = (ptr[0] >> 4) & 0xff; local
212 printf("%s (%d dwords, flags: %x):\n", name, len, bits);
215 if (bits & (1<<0)) {
221 if (bits & (1<<1)) {
228 if (bits & (1<<2)) {
238 if (bits & (1<<3)) {
242 if (bits & (1<<4)) {
264 if (bits & (1<<5)) {
282 if (bits & (1<<6)) {
315 GLuint bits local
[all...]
/external/openssl/crypto/bn/
H A Dbn_exp2.c122 int i,j,bits,b,bits1,bits2,ret=0,wpos1,wpos2,window1,window2,wvalue1,wvalue2; local
149 bits=(bits1 > bits2)?bits1:bits2;
244 for (b=bits-1; b>=0; b--)
255 /* consider bits b-window1+1 .. b for this window */
272 /* consider bits b-window2+1 .. b for this window */
/external/openssl/crypto/dsa/
H A Ddsa.h153 int (*dsa_paramgen)(DSA *dsa, int bits,
235 DSA * DSA_generate_parameters(int bits,
242 int DSA_generate_parameters_ex(DSA *dsa, int bits,
/external/openssl/include/openssl/
H A Ddsa.h153 int (*dsa_paramgen)(DSA *dsa, int bits,
235 DSA * DSA_generate_parameters(int bits,
242 int DSA_generate_parameters_ex(DSA *dsa, int bits,
H A Drsa.h126 int (*rsa_keygen)(RSA *rsa, int bits, BIGNUM *e, BN_GENCB *cb);
241 #define EVP_PKEY_CTX_set_rsa_keygen_bits(ctx, bits) \
243 EVP_PKEY_CTRL_RSA_KEYGEN_BITS, bits, NULL)
287 RSA * RSA_generate_key(int bits, unsigned long e,void
292 int RSA_generate_key_ex(RSA *rsa, int bits, BIGNUM *e, BN_GENCB *cb);
/external/speex/libspeex/
H A Dltp.c248 /* Normalize to 180 so we can square it and it still fits in 16 bits */
359 SpeexBits *bits,
541 SpeexBits *bits,
581 speex_bits_pack(bits, 0, params->pitch_bits);
582 speex_bits_pack(bits, 0, params->gain_bits);
622 bits, stack, exc2, r, new_target, &cdbk_index, plc_tuning, *cumul_gain, scaledown);
633 speex_bits_pack(bits, best_pitch-start, params->pitch_bits);
634 speex_bits_pack(bits, best_gain_index, params->gain_bits);
665 SpeexBits *bits,
685 pitch = speex_bits_unpack_unsigned(bits, param
348 pitch_gain_search_3tap( const spx_word16_t target[], const spx_coef_t ak[], const spx_coef_t awk1[], const spx_coef_t awk2[], spx_sig_t exc[], const signed char *gain_cdbk, int gain_cdbk_size, int pitch, int p, int nsf, SpeexBits *bits, char *stack, const spx_word16_t *exc2, const spx_word16_t *r, spx_word16_t *new_target, int *cdbk_index, int plc_tuning, spx_word32_t cumul_gain, int scaledown ) argument
528 pitch_search_3tap( spx_word16_t target[], spx_word16_t *sw, spx_coef_t ak[], spx_coef_t awk1[], spx_coef_t awk2[], spx_sig_t exc[], const void *par, int start, int end, spx_word16_t pitch_coef, int p, int nsf, SpeexBits *bits, char *stack, spx_word16_t *exc2, spx_word16_t *r, int complexity, int cdbk_offset, int plc_tuning, spx_word32_t *cumul_gain ) argument
655 pitch_unquant_3tap( spx_word16_t exc[], spx_word32_t exc_out[], int start, int end, spx_word16_t pitch_coef, const void *par, int nsf, int *pitch_val, spx_word16_t *gain_val, SpeexBits *bits, char *stack, int count_lost, int subframe_offset, spx_word16_t last_pitch_gain, int cdbk_offset ) argument
755 forced_pitch_quant( spx_word16_t target[], spx_word16_t *sw, spx_coef_t ak[], spx_coef_t awk1[], spx_coef_t awk2[], spx_sig_t exc[], const void *par, int start, int end, spx_word16_t pitch_coef, int p, int nsf, SpeexBits *bits, char *stack, spx_word16_t *exc2, spx_word16_t *r, int complexity, int cdbk_offset, int plc_tuning, spx_word32_t *cumul_gain ) argument
805 forced_pitch_unquant( spx_word16_t exc[], spx_word32_t exc_out[], int start, int end, spx_word16_t pitch_coef, const void *par, int nsf, int *pitch_val, spx_word16_t *gain_val, SpeexBits *bits, char *stack, int count_lost, int subframe_offset, spx_word16_t last_pitch_gain, int cdbk_offset ) argument
[all...]
/external/wpa_supplicant_8/hostapd/src/crypto/
H A Daes_i.h70 static inline u32 rotr(u32 val, int bits) argument
72 return (val >> bits) | (val << (32 - bits));
/external/wpa_supplicant_8/src/crypto/
H A Daes_i.h70 static inline u32 rotr(u32 val, int bits) argument
72 return (val >> bits) | (val << (32 - bits));
/external/wpa_supplicant_8/wpa_supplicant/src/crypto/
H A Daes_i.h70 static inline u32 rotr(u32 val, int bits) argument
72 return (val >> bits) | (val << (32 - bits));
/external/aac/libMpegTPEnc/src/
H A Dtpenc_lib.cpp363 frameUsedBits += transportEnc_GetPCEBits(hTp->config.channelMode, hTp->config.matrixMixdownA, 3); /* Consider 3 bits ID signalling in alignment */
418 /* Write PCE element ID bits */
442 TRANSPORTENC_ERROR transportEnc_EndAccessUnit(HANDLE_TRANSPORTENC hTp, int *bits) argument
448 transportEnc_LatmAdjustSubframeBits(&hTp->writer.latm, bits);
451 adtsWrite_EndRawDataBlock(&hTp->writer.adts, &hTp->bitStream, bits);
454 /* Substract ADIF header from AU bits, not to be considered. */
455 *bits -= adifWrite_GetHeaderBits(&hTp->writer.adif);
459 *bits -= hTp->writer.raw.prevBits;
509 nPceBits = transportEnc_GetPCEBits(hTp->config.channelMode, hTp->config.matrixMixdownA, 3); /* Consider 3 bits ID signalling in alignment */
531 /* PCE is written in the transport library therefore the bit consumption is part of the transport static bits
[all...]
/external/chromium_org/net/websockets/
H A Dwebsocket_basic_handshake_stream.cc278 int bits = 0; local
279 if (!base::StringToInt(it->value(), &bits) || bits < 8 || bits > 15 ||
286 params->client_window_bits = bits;
/external/chromium_org/third_party/WebKit/Source/platform/image-decoders/gif/
H A DGIFImageReader.cpp211 datum += ((int) *ch) << bits;
212 bits += 8;
215 while (bits >= codesize) {
219 bits -= codesize;
689 // The three low-order bits of currentComponent[8] specify the bits per pixel.
764 datum = bits = 0;
778 // bits are reserved for the base values, and the next two entries are
/external/chromium_org/third_party/libwebp/enc/
H A Dcost.c337 int bits = VP8LevelCodes[level - 1][1]; local
342 cost += VP8BitCost(bits & 1, probas[i]);
344 bits >>= 1;
671 // record bit count (lower 16 bits) and increment total count (upper 16 bits).
719 const int bits = VP8LevelCodes[v - 1][1]; local
724 if (pattern & 1) Record(!!(bits & mask), s + 3 + i);
H A Dsyntax.c118 uint32_t bits; local
125 bits = 0 // keyframe (1b)
129 vp8_frm_hdr[0] = (bits >> 0) & 0xff;
130 vp8_frm_hdr[1] = (bits >> 8) & 0xff;
131 vp8_frm_hdr[2] = (bits >> 16) & 0xff;
227 // we don't use ref_lf_delta => emit four 0 bits
272 if (!VP8BitWriterInit(bw, mb_size * 7 / 8)) { // ~7 bits per macroblock
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/nv50/codegen/
H A Dnv50_ir_print.cpp304 if (bits)
309 if (bits & NV50_IR_MOD_NOT)
311 if (bits & NV50_IR_MOD_SAT)
313 if (bits & NV50_IR_MOD_NEG)
315 if (bits & NV50_IR_MOD_ABS)
/external/chromium_org/third_party/mesa/src/src/mapi/glapi/gen/
H A DglX_proto_recv.py186 for bits in [16, 32, 64]:
188 print 'bswap_%u_array( uint%u_t * src, unsigned count )' % (bits, bits)
193 print ' uint%u_t temp = bswap_%u( src[i] );' % (bits, bits)
/external/chromium_org/third_party/skia/include/core/
H A DSkTypes.h203 * Fast type for signed 8 bits. Use for parameter passing and local variables,
209 * Fast type for unsigned 8 bits. Use for parameter passing and local
215 * Fast type for signed 16 bits. Use for parameter passing and local variables,
221 * Fast type for unsigned 16 bits. Use for parameter passing and local
273 /** Returns true if the value can be represented with signed 16bits
279 /** Returns true if the value can be represented with unsigned 16bits
411 static inline uint32_t SkSetClearShift(uint32_t bits, bool cond, argument
414 return (bits & ~(1 << shift)) | ((int)cond << shift);
417 static inline uint32_t SkSetClearMask(uint32_t bits, bool cond, argument
419 return cond ? bits | mas
[all...]
/external/chromium_org/v8/src/
H A Dglobals.h177 // Quiet NaNs have bits 51 to 62 set, possibly the sign bit, and no
178 // other bits set.
182 // Code-point values in Unicode 4.0 are 21 bits wide.
183 // Code units in UTF-16 are 16 bits wide.
245 // 0xfffff bits (1M pages), go to the owner offset, and see that this field
286 // If looking only at the top 32 bits, the QNaN mask is bits 19 to 30.
508 int64_t bits; member in union:v8::internal::DoubleRepresentation
511 return bits == other.bits;
526 } bits; member in union:v8::internal::IeeeDoubleLittleEndianArchType
537 } bits; member in union:v8::internal::IeeeDoubleBigEndianArchType
[all...]
/external/mesa3d/src/gallium/drivers/nv50/codegen/
H A Dnv50_ir_print.cpp304 if (bits)
309 if (bits & NV50_IR_MOD_NOT)
311 if (bits & NV50_IR_MOD_SAT)
313 if (bits & NV50_IR_MOD_NEG)
315 if (bits & NV50_IR_MOD_ABS)
/external/mesa3d/src/mapi/glapi/gen/
H A DglX_proto_recv.py186 for bits in [16, 32, 64]:
188 print 'bswap_%u_array( uint%u_t * src, unsigned count )' % (bits, bits)
193 print ' uint%u_t temp = bswap_%u( src[i] );' % (bits, bits)
/external/openssl/crypto/rsa/
H A Drsa.h126 int (*rsa_keygen)(RSA *rsa, int bits, BIGNUM *e, BN_GENCB *cb);
241 #define EVP_PKEY_CTX_set_rsa_keygen_bits(ctx, bits) \
243 EVP_PKEY_CTRL_RSA_KEYGEN_BITS, bits, NULL)
287 RSA * RSA_generate_key(int bits, unsigned long e,void
292 int RSA_generate_key_ex(RSA *rsa, int bits, BIGNUM *e, BN_GENCB *cb);
/external/qemu/audio/
H A Dwavaudio.c259 int nchannels, freq, format, bits; local
285 bits = le_read( hdr+34, 2 );
309 if (format*8/nchannels != bits) {
310 dolog("invalid bits per sample (%d, expected %d) in '%s'\n",
311 bits, format*8/nchannels, path);
316 wav_as.fmt = (bits == 8) ? AUD_FMT_U8 : AUD_FMT_S16;
/external/skia/include/core/
H A DSkTypes.h203 * Fast type for signed 8 bits. Use for parameter passing and local variables,
209 * Fast type for unsigned 8 bits. Use for parameter passing and local
215 * Fast type for signed 16 bits. Use for parameter passing and local variables,
221 * Fast type for unsigned 16 bits. Use for parameter passing and local
273 /** Returns true if the value can be represented with signed 16bits
279 /** Returns true if the value can be represented with unsigned 16bits
405 static inline uint32_t SkSetClearShift(uint32_t bits, bool cond, argument
408 return (bits & ~(1 << shift)) | ((int)cond << shift);
411 static inline uint32_t SkSetClearMask(uint32_t bits, bool cond, argument
413 return cond ? bits | mas
[all...]

Completed in 1638 milliseconds

<<31323334353637383940>>