HomeSort by relevance Sort by last modified time
    Searched refs:bits (Results 576 - 600 of 4103) sorted by null

<<21222324252627282930>>

  /system/core/include/system/
audio.h 188 AUDIO_FORMAT_PCM_SUB_16_BIT = 0x1, /* DO NOT CHANGE - PCM signed 16 bits */
189 AUDIO_FORMAT_PCM_SUB_8_BIT = 0x2, /* DO NOT CHANGE - PCM unsigned 8 bits */
231 /* Audio format consists of a main format field (upper 8 bits) and a sub format
232 * field (lower 24 bits).
302 /* These can be the bits portion of an audio_channel_mask_t
304 * Using these bits as a complete audio_channel_mask_t is deprecated.
327 /* TODO: should these be considered complete channel masks, or only bits? */
384 /* These are bits only, not complete values */
402 /* TODO: should these be considered complete channel masks, or only bits, or deprecated? */
437 * The constants AUDIO_CHANNEL_OUT_* or AUDIO_CHANNEL_IN_* apply to the bits portion
494 uint32_t bits = audio_channel_mask_get_bits(channel); local
1114 uint32_t bits = audio_channel_mask_get_bits(channel); local
1136 uint32_t bits = audio_channel_mask_get_bits(channel); local
1158 uint32_t bits = audio_channel_mask_get_bits(channel); local
1179 uint32_t bits = audio_channel_mask_get_bits(channel); local
1204 uint32_t bits; local
1248 uint32_t bits; local
1279 uint32_t bits = (1 << channel_count) - 1; local
    [all...]
  /external/qemu/distrib/zlib-1.2.8/
inflate.c 30 * - Add comments on state->bits assertion in inffast.c
121 state->bits = 0;
166 /* set number of window bits, free window if different */
230 int ZEXPORT inflatePrime(strm, bits, value)
232 int bits;
239 if (bits < 0) {
241 state->bits = 0;
244 if (bits > 16 || state->bits + bits > 32) return Z_STREAM_ERROR
271 unsigned sym, bits; local
614 unsigned bits; \/* bits in bit buffer *\/ local
    [all...]
  /external/zlib/src/
inflate.c 30 * - Add comments on state->bits assertion in inffast.c
121 state->bits = 0;
166 /* set number of window bits, free window if different */
230 int ZEXPORT inflatePrime(strm, bits, value)
232 int bits;
239 if (bits < 0) {
241 state->bits = 0;
244 if (bits > 16 || state->bits + bits > 32) return Z_STREAM_ERROR
271 unsigned sym, bits; local
614 unsigned bits; \/* bits in bit buffer *\/ local
    [all...]
  /cts/tools/dex-tools/src/dex/reader/
DexBuffer.java 146 int bits = readInt(nBytes); local
148 bits <<= bytesToMove;
149 return Float.intBitsToFloat(bits);
173 long bits = readLong(nBytes); local
175 bits <<= bytesToMove;
176 return Double.longBitsToDouble(bits);
  /external/chromium_org/third_party/skia/src/core/
SkBlitBWMaskTemplate.h 41 const uint8_t* bits = srcMask.getAddr1(cx, cy); local
50 U8CPU mask = *bits++;
66 rite_mask &= 0xFF; // only want low-8 bits of mask
88 U8CPU mask = *bits & left_mask;
90 bits += mask_rowBytes;
99 const uint8_t* b = bits;
116 bits += mask_rowBytes;
  /external/lldb/source/Plugins/Process/POSIX/
ProcessPOSIXLog.cpp 84 uint32_t bits = GetFlagBits(arg); local
86 if (bits)
88 flag_bits &= ~bits;
129 uint32_t bits = GetFlagBits(arg); local
131 if (bits)
133 flag_bits |= bits;
  /external/opencv/otherlibs/highgui/
bitstrm.h 128 int Get( int bits );
129 int Show( int bits );
148 int Get( int bits );
149 int Show( int bits );
223 void Put( int val, int bits );
246 void Put( int val, int bits );
  /external/skia/src/core/
SkBlitBWMaskTemplate.h 41 const uint8_t* bits = srcMask.getAddr1(cx, cy); local
50 U8CPU mask = *bits++;
66 rite_mask &= 0xFF; // only want low-8 bits of mask
88 U8CPU mask = *bits & left_mask;
90 bits += mask_rowBytes;
99 const uint8_t* b = bits;
116 bits += mask_rowBytes;
  /external/speex/include/speex/
speex.h 124 /** Set Average Bit-Rate (ABR) to n bits per seconds */
227 typedef int (*encode_func)(void *state, void *in, SpeexBits *bits);
239 typedef int (*decode_func)(void *state, SpeexBits *bits, void *out);
308 "in". The encoded bit-stream is saved in "bits".
313 @param bits Bit-stream where the data will be written
316 int speex_encode(void *state, float *in, SpeexBits *bits);
319 "in". The encoded bit-stream is saved in "bits".
322 @param bits Bit-stream where the data will be written
325 int speex_encode_int(void *state, spx_int16_t *in, SpeexBits *bits);
354 * bit-stream bits. The output speech is saved written to out
    [all...]
  /external/tinyalsa/
tinypcminfo.c 146 printf(" Access:\t%#08x\n", m->bits[0]);
151 const unsigned bitcount = sizeof(m->bits[0]) * 8;
154 printf(" Format[0]:\t%#08x\n", m->bits[0]);
155 printf(" Format[1]:\t%#08x\n", m->bits[1]);
162 if (m->bits[k] & (1 << j)) {
181 printf(" Subformat:\t%#08x\n", m->bits[0]);
191 printf(" Sample bits:\tmin=%u\t\tmax=%u\n", min, max);
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/source/
h264bsd_util.c 48 /* look-up table for expected values of stuffing bits */
70 length number of bits in the code word
106 Check Raw Byte Stream Payload (RBSP) trailing bits, i.e. stuffing.
109 more '0' bits.
118 HANTRO_OK RBSP trailing bits found
156 -more than 8 bits left or
157 -last bits are not RBSP trailing bits
176 u32 bits; local
183 bits = pStrmData->strmBuffSize * 8 - pStrmData->strmBuffReadBits
    [all...]
  /external/pdfium/core/src/fxcodec/fx_zlib/zlib_v128/
fx_zlib_inflate.c 30 * - Add comments on state->bits assertion in inffast.c
121 state->bits = 0;
166 /* set number of window bits, free window if different */
232 int bits,
239 if (bits < 0) {
241 state->bits = 0;
244 if (bits > 16 || state->bits + bits > 32) return Z_STREAM_ERROR;
245 value &= (1L << bits) - 1
271 unsigned sym, bits; local
614 unsigned bits; \/* bits in bit buffer *\/ local
    [all...]
  /external/icu/icu4c/source/common/
ucnv_u7.c 169 * 15..0 bits (up to 14 bits incoming base64)
175 * 7..0 bits (6 bits outgoing base64)
220 uint16_t bits; local
242 bits=(uint16_t)status;
286 bits=0;
336 } else if(bits!=0) {
337 /* bits are illegally left over, a UChar is incomplete */
361 bits=base64Value
469 uint8_t bits; local
902 uint16_t bits; local
1168 uint8_t bits; local
    [all...]
  /external/chromium_org/third_party/icu/source/common/
ucnv_u7.c 168 * 15..0 bits (up to 14 bits incoming base64)
174 * 7..0 bits (6 bits outgoing base64)
219 uint16_t bits; local
241 bits=(uint16_t)status;
285 bits=0;
321 bits=base64Value;
328 bits=(uint16_t)((bits<<6)|base64Value)
456 uint8_t bits; local
876 uint16_t bits; local
1142 uint8_t bits; local
    [all...]
  /hardware/intel/img/psb_video/src/mrst/
psb_VC1.c 590 if (ctx->pic_params->picture_fields.bits.frame_coding_mode == VC1_FCM_FRMI) {
594 if (PIC_TYPE_IS_INTRA(ctx->pic_params->picture_fields.bits.picture_type)) {
604 if (ctx->pic_params->picture_fields.bits.frame_coding_mode == VC1_FCM_P) {
621 #define P0(x) psb__trace_message("PARAMS: " #x "\t= %d\n", p->sequence_fields.bits.x)
629 #define P2(x) psb__trace_message("PARAMS: " #x "\t= %d\n", p->picture_fields.bits.x)
637 #define P4(x) psb__trace_message("PARAMS: " #x "\t= %d\n", p->entrypoint_fields.bits.x)
645 #define P3(x) psb__trace_message("PARAMS: " #x "\t= %d\n", p->range_mapping_fields.bits.x)
665 #define P4(x) psb__trace_message("PARAMS: " #x "\t= %d\n", p->reference_fields.bits.x)
671 #define P5(x) psb__trace_message("PARAMS: " #x "\t= %d\n", p->mv_fields.bits.x)
684 #define P6(x) psb__trace_message("PARAMS: " #x "\t= %d\n", p->pic_quantizer_fields.bits.x
    [all...]
  /external/pixman/pixman/
pixman-bits-image.c 151 bits_image_t *bits = &ima->bits; local
171 if (!pixman_transform_point_3d (bits->common.transform, &v))
174 ux = ux_top = ux_bottom = bits->common.transform->matrix[0][0];
194 if (y1 < 0 || y1 >= bits->height)
202 top_row = bits->bits + y1 * bits->rowstride;
207 if (y2 < 0 || y2 >= bits->height)
215 bottom_row = bits->bits + y2 * bits->rowstride
737 bits_image_t *bits = &image->bits; local
886 bits_image_t *bits = &image->bits; local
1040 bits_image_t *bits = &image->bits; local
    [all...]
  /external/chromium_org/third_party/libvpx/source/libvpx/vp9/encoder/
vp9_cost.h 35 int bits, int len) {
40 const int bit = (bits >> --len) & 1;
vp9_treewriter.h 32 const vp9_prob *probs, int bits, int len,
35 const int bit = (bits >> --len) & 1;
vp9_write_bit_buffer.c 30 void vp9_wb_write_literal(struct vp9_write_bit_buffer *wb, int data, int bits) {
32 for (bit = bits - 1; bit >= 0; bit--)
  /external/chromium_org/third_party/openssl/openssl/crypto/dsa/
dsa_depr.c 86 DSA *DSA_generate_parameters(int bits,
99 if(DSA_generate_parameters_ex(ret, bits, seed_in, seed_len,
  /external/chromium_org/third_party/openssl/openssl/crypto/rc2/
rc2.h 83 void private_RC2_set_key(RC2_KEY *key, int len, const unsigned char *data,int bits);
85 void RC2_set_key(RC2_KEY *key, int len, const unsigned char *data,int bits);
  /external/chromium_org/third_party/openssl/openssl/crypto/rsa/
rsa_depr.c 71 RSA *RSA_generate_key(int bits, unsigned long e_value,
92 if(RSA_generate_key_ex(rsa, bits, e, &cb)) {
  /external/chromium_org/third_party/openssl/openssl/include/openssl/
rc2.h 83 void private_RC2_set_key(RC2_KEY *key, int len, const unsigned char *data,int bits);
85 void RC2_set_key(RC2_KEY *key, int len, const unsigned char *data,int bits);
  /external/chromium_org/third_party/yasm/source/patched-yasm/modules/arch/x86/tests/
strict-err.asm 0 bits 64
1 bits 64 label
  /external/chromium_org/third_party/yasm/source/patched-yasm/modules/objfmts/win64/tests/
win64-dataref2.asm 0 bits 64
1 bits 64 label

Completed in 1962 milliseconds

<<21222324252627282930>>