Searched refs:bits (Results 626 - 650 of 1594) sorted by relevance

<<21222324252627282930>>

/external/elfutils/0.153/backends/
H A Dsparc_corenote.c46 { .offset = at * BITS/8, .regno = dwreg, .count = n, .bits = BITS }
/external/guava/guava/src/com/google/common/hash/
H A DHashCode.java43 * @throws IllegalStateException if {@code bits() < 64}
73 * Returns the number of bits in this hash code; a positive multiple of 32.
75 public abstract int bits(); method in class:HashCode
H A DMurmur3_32HashFunction.java36 @Override public int bits() { method in class:Murmur3_32HashFunction
/external/icu/icu4c/source/i18n/
H A Dscriptset.h50 UBool contains(const ScriptSet &other) const; // All set bits in other are also set in this.
62 uint32_t bits[6]; member in class:ScriptSet
/external/libopus/celt/
H A Dfixed_generic.h39 /** 16x32 multiplication, followed by a 16-bit shift right. Results fits in 32 bits */
42 /** 16x32 multiplication, followed by a 16-bit shift right (round-to-nearest). Results fits in 32 bits */
45 /** 16x32 multiplication, followed by a 15-bit shift right. Results fits in 32 bits */
48 /** 32x32 multiplication, followed by a 31-bit shift right. Results fits in 32 bits */
52 #define QCONST16(x,bits) ((opus_val16)(.5+(x)*(((opus_val32)1)<<(bits))))
55 #define QCONST32(x,bits) ((opus_val32)(.5+(x)*(((opus_val32)1)<<(bits))))
104 /** 16x16 multiplication where the result fits in 16 bits */
108 /** 16x16 multiplication where the result fits in 32 bits */
[all...]
/external/libunwind/include/
H A Dlibunwind-ia64.h78 struct { unw_word_t bits[2]; } raw; member in struct:__anon24667::__anon24668
/external/libvorbis/doc/
H A D04-codec.tex52 1) [vorbis_version] = read 32 bits as unsigned integer
54 3) [audio_sample_rate] = read 32 bits as unsigned integer
55 4) [bitrate_maximum] = read 32 bits as signed integer
56 5) [bitrate_nominal] = read 32 bits as signed integer
57 6) [bitrate_minimum] = read 32 bits as signed integer
58 7) [blocksize_0] = 2 exponent (read 4 bits as unsigned integer)
59 8) [blocksize_1] = 2 exponent (read 4 bits as unsigned integer)
111 \item \varname{[vorbis_codebook_count]} = read eight bits as unsigned integer and add one
127 \item \varname{[vorbis_time_count]} = read 6 bits as unsigned integer and add one
139 \item \varname{[vorbis_floor_count]} = read 6 bits a
[all...]
/external/libvpx/libvpx/vp9/common/
H A Dvp9_entropymv.c56 {136, 140, 148, 160, 176, 192, 224, 234, 234, 240}, // bits
66 {136, 140, 148, 160, 176, 192, 224, 234, 234, 240}, // bits
163 int b = c + CLASS0_BITS - 1; // number of bits
165 comp_counts->bits[i][((d >> i) & 1)] += incr;
216 comp->bits[j] = adapt_prob(pre_comp->bits[j], c->bits[j]);
/external/lldb/test/functionalities/data-formatter/data-formatter-advanced/
H A DTestDataFormatterAdv.py115 self.runCmd("type summary add --summary-string \"low bits are ${*var[0-1]} tgt is ${*var}\" \"int *\"")
118 substrs = ['low bits are',
157 self.runCmd("type summary add --summary-string \"low bits = ${*var.int_pointer[2]}\" IWrapPointers -p")
160 substrs = ['low bits = 1'])
163 substrs = ['low bits = 1'])
175 self.expect("frame variable couple --summary-string \"${*var.sp.x[0-2]} are low bits of integer ${*var.sp.x}. If I pretend it is an array I get ${var.sp.x[0-5]}\"",
176 substrs = ['1 are low bits of integer 9.',
184 self.runCmd("type summary add --summary-string \"${*var.sp.x[0-2]} are low bits of integer ${*var.sp.x}. If I pretend it is an array I get ${var.sp.x[0-5]}\" Couple")
/external/mesa3d/src/gallium/drivers/nv50/codegen/
H A Dnv50_ir.h132 OP_INSBF, // insert first src1[8:15] bits of src0 into src2 at src1[0:7]
226 FILE_FLAGS, // zero/sign/carry/overflow bits
360 Modifier() : bits(0) { }
361 Modifier(unsigned int m) : bits(m) { }
367 Modifier operator==(const Modifier m) const { return m.bits == bits; }
368 Modifier operator!=(const Modifier m) const { return m.bits != bits; }
370 inline Modifier operator&(const Modifier m) const { return bits & m.bits; }
386 uint8_t bits; member in class:nv50_ir::Modifier
[all...]
/external/pixman/test/
H A Dcomposite-traps-test.c100 uint32_t *bits; local
107 bits = (uint32_t *)make_random_bytes (src_stride * src_height);
110 src_format, src_width, src_height, bits, src_stride);
112 pixman_image_set_destroy_function (src_img, destroy_bits, bits);
/external/qemu/distrib/sdl-1.2.15/src/video/wincommon/
H A DSDL_sysmouse.c52 /* Convert bits to padded bytes */
53 #define PAD_BITS(bits) ((bits+7)/8)
56 static void PrintBITMAP(FILE *out, char *bits, int w, int h) argument
64 ch = *bits++;
/external/skia/src/gpu/
H A DSkGrFontScaler.cpp169 // expand bits to our mask type
170 const uint8_t* bits = reinterpret_cast<const uint8_t*>(src); local
174 expand_bits(bytes, bits, width, height, dstRB, srcRB);
179 expand_bits(rgb565, bits, width, height, dstRB, srcRB);
184 expand_bits(rgba8888, bits, width, height, dstRB, srcRB);
/external/speex/libspeex/
H A Dfixed_generic.h38 #define QCONST16(x,bits) ((spx_word16_t)(.5+(x)*(((spx_word32_t)1)<<(bits))))
39 #define QCONST32(x,bits) ((spx_word32_t)(.5+(x)*(((spx_word32_t)1)<<(bits))))
71 /* result fits in 16 bits */
/external/tinyalsa/
H A Dtinycap.c79 unsigned int bits = 16; local
87 "[-r rate] [-b bits] [-p period_size] [-n n_periods]\n", argv[0]);
115 bits = atoi(*argv);
142 switch (bits) {
153 fprintf(stderr, "%d bits is not supported.\n", bits);
/external/tinycompress/
H A Dcplay.c105 /* check sync bits */
209 unsigned int channels, rate, bits; local
221 if (parse_mp3_header(&header, &channels, &rate, &bits) == -1) {
235 codec.bit_rate = bits;
286 SND_AUDIOCODEC_MP3, channels, rate, bits);
/external/valgrind/main/memcheck/tests/vbit-test/
H A Dvbits.h12 /* A type to represent V-bits */
22 } bits; member in struct:__anon33078
/external/zopfli/src/zopflipng/lodepng/
H A Dlodepng_util.h112 E.g. if bits is 4 and i is 5, it returns the 5th nibble (4-bit group), which
115 int getPaletteValue(const unsigned char* data, size_t i, int bits);
123 size_t compressedbits; //size of compressed block in bits
127 size_t treebits; //encoded tree size in bits
/external/chromium_org/net/quic/crypto/
H A Dstrike_register.cc74 // <24 bits> left child
75 // <8 bits> crit-byte
76 // <24 bits> right child
77 // <8 bits> other-bits
87 // We only have 23 bits of index available.
208 // for loop, testing bits 7..0. Instead we fold the bits so that we end up
209 // with a byte where all the bits below the most significant one, are set.
213 // Now this bit trick results in all the bits se
307 vector<pair<unsigned, bool> > bits; local
444 ValidateTree( uint32 internal_node, int last_bit, const vector<pair<unsigned, bool> >& bits, const set<uint32>& free_internal_nodes, const set<uint32>& free_external_nodes, set<uint32>* used_internal_nodes, set<uint32>* used_external_nodes) argument
[all...]
/external/chromium_org/third_party/boringssl/src/ssl/
H A Ds3_cbc.c73 * bits. They use the fact that arithmetic shift shifts-in the sign bit.
192 * one or more of the lower eight bits of |good| will be cleared. We
193 * AND the bottom 8 bits together and duplicate the result to all the
194 * bits. */
405 unsigned int bits; /* at most 18 bits */ local
514 * length, in bits. */
516 /* bits is the hash-length in bits. It includes the additional hash
528 bits
[all...]
/external/aac/libMpegTPEnc/src/
H A Dtpenc_latm.cpp109 first two bits define the size of the value itself
342 UINT bits; local
348 bits = FDKgetValidBits( hBs );
356 bits = FDKgetValidBits( hBs ) - bits;
359 FDKpushBack(hBs, bits+2);
360 hAss->streamMuxConfigBits += transportEnc_LatmWriteValue( hBs, bits );
368 hAss->streamMuxConfigBits += bits; /* add asc length to smc summary */
760 int *bits)
762 /* Substract bits fro
759 transportEnc_LatmAdjustSubframeBits(HANDLE_LATM_STREAM hAss, int *bits) argument
[all...]
/external/chromium_org/third_party/libvpx/source/libvpx/build/make/
H A Dobj_int_extract.c76 int bits = 0; local
89 bits = 32;
97 bits = 64;
180 if (bits == 32) {
190 } else { /* if (bits == 64) */
236 int bits; /* 32 or 64 */ member in struct:__anon12969
259 elf->bits = 32;
276 elf->bits = 64;
341 if (elf->bits == 32) {
351 } else { /* if (elf->bits
[all...]
/external/chromium_org/third_party/libwebp/dec/
H A Dvp8.c106 const uint32_t bits = data[0] | (data[1] << 8) | (data[2] << 16); local
107 const int key_frame = !(bits & 1);
115 if (((bits >> 1) & 7) > 3) {
118 if (!((bits >> 4) & 1)) {
121 if (((bits >> 5)) >= chunk_size) { // partition_length
271 const uint32_t bits = buf[0] | (buf[1] << 8) | (buf[2] << 16); local
273 frm_hdr->key_frame_ = !(bits & 1);
274 frm_hdr->profile_ = (bits >> 1) & 7;
275 frm_hdr->show_ = (bits >> 4) & 1;
276 frm_hdr->partition_length_ = (bits >>
[all...]
/external/chromium_org/third_party/speex/libspeex/
H A Dcb_search.c110 SpeexBits *bits,
164 speex_bits_pack(bits,best_index,params->shape_bits+have_sign);
252 SpeexBits *bits,
297 split_cb_search_shape_sign_N1(target,ak,awk1,awk2,par,p,nsf,exc,r,bits,stack,update_target);
468 speex_bits_pack(bits,ind[i],params->shape_bits+have_sign);
518 SpeexBits *bits,
545 signs[i] = speex_bits_unpack_unsigned(bits, 1);
548 ind[i] = speex_bits_unpack_unsigned(bits, params->shape_bits);
582 SpeexBits *bits,
603 SpeexBits *bits,
100 split_cb_search_shape_sign_N1( spx_word16_t target[], spx_coef_t ak[], spx_coef_t awk1[], spx_coef_t awk2[], const void *par, int p, int nsf, spx_sig_t *exc, spx_word16_t *r, SpeexBits *bits, char *stack, int update_target ) argument
242 split_cb_search_shape_sign( spx_word16_t target[], spx_coef_t ak[], spx_coef_t awk1[], spx_coef_t awk2[], const void *par, int p, int nsf, spx_sig_t *exc, spx_word16_t *r, SpeexBits *bits, char *stack, int complexity, int update_target ) argument
514 split_cb_shape_sign_unquant( spx_sig_t *exc, const void *par, int nsf, SpeexBits *bits, char *stack, spx_int32_t *seed ) argument
572 noise_codebook_quant( spx_word16_t target[], spx_coef_t ak[], spx_coef_t awk1[], spx_coef_t awk2[], const void *par, int p, int nsf, spx_sig_t *exc, spx_word16_t *r, SpeexBits *bits, char *stack, int complexity, int update_target ) argument
599 noise_codebook_unquant( spx_sig_t *exc, const void *par, int nsf, SpeexBits *bits, char *stack, spx_int32_t *seed ) argument
[all...]
/external/chromium_org/ui/gfx/
H A Dicon_util.cc181 void* bits = NULL; local
187 DIB_RGB_COLORS, &bits, NULL, 0);
189 if (!dib || !bits)
192 memcpy(bits, bitmap.getPixels(), bitmap.width() * bitmap.height() * 4);
388 uint32* bits; local
390 DIB_RGB_COLORS, reinterpret_cast<void**>(&bits), NULL, 0);
414 memset(bits, 0, num_pixels * 4);
421 opaque[i] = !bits[i];
424 memset(bits, 0, num_pixels * 4);
426 memcpy(bitmap.getPixels(), static_cast<void*>(bits), num_pixel
[all...]

Completed in 764 milliseconds

<<21222324252627282930>>