HomeSort by relevance Sort by last modified time
    Searched refs:num_bits (Results 1 - 25 of 27) sorted by null

1 2

  /sdk/emulator/qtools/
bitvector.h 11 explicit Bitvector(int num_bits) {
12 num_bits_ = num_bits;
15 num_bits = (num_bits + 31) & ~31;
16 vector_ = new uint32_t[num_bits >> 5];
  /external/chromium/net/disk_cache/
bitmap.h 21 Bitmap(int num_bits, bool clear_bits)
22 : num_bits_(num_bits), array_size_(RequiredArraySize(num_bits)),
32 // has to be valid until this object destruction. |num_bits| is the number of
34 Bitmap(uint32* map, int num_bits, int num_words)
35 : map_(map), num_bits_(num_bits),
38 array_size_(std::min(RequiredArraySize(num_bits), num_words)),
47 // If |num_bits| < Size(), the extra bits will be discarded.
48 // If |num_bits| > Size(), the extra bits will be filled with zeros if
51 void Resize(int num_bits, bool clear_bits)
    [all...]
bitmap.cc 41 void Bitmap::Resize(int num_bits, bool clear_bits) {
45 array_size_ = RequiredArraySize(num_bits);
59 num_bits_ = num_bits;
sparse_control.cc 94 int num_bits = (len - sizeof(disk_cache::SparseHeader)) * 8; local
95 children_map_.Resize(num_bits, false);
96 children_map_.SetMap(data->bitmap, num_bits / 32);
  /frameworks/base/media/libstagefright/codecs/avc/dec/src/
avc_bitstream.cpp 98 int num_bits, i; local
103 num_bits = stream->incnt_next + stream->incnt;
104 if (num_bits >= 32)
117 stream->incnt = num_bits;
130 stream->curr_word |= (stream->next_word >> num_bits); // this is safe
132 stream->next_word <<= (31 - num_bits);
134 num_bits = i << 3;
136 stream->incnt_next = num_bits - (32 - stream->incnt);
139 stream->incnt += num_bits;
152 stream->curr_word |= (stream->next_word >> num_bits); // this is saf
    [all...]
  /external/srec/srec/include/
log_tabl.h 39 void create_lookup_log(log_table_info *logtab, int num_bits);
  /external/openssl/crypto/bn/
bn_recp.c 67 recp->num_bits=0;
98 recp->num_bits=BN_num_bits(d);
165 j=recp->num_bits<<1;
179 if (!BN_rshift(a,m,recp->num_bits)) goto err;
181 if (!BN_rshift(d,b,i-recp->num_bits)) goto err;
bn.h 330 int num_bits; member in struct:bn_recp_ctx_st
    [all...]
  /frameworks/base/media/libstagefright/codecs/avc/enc/src/
bitstream_io.cpp 84 int num_bits; local
89 num_bits = WORD_SIZE - stream->bit_left; /* must be multiple of 8 !!*/
91 if (stream->buf_size - stream->write_pos <= (num_bits >> 3) + 2) /* 2 more bytes for possible EPBS */
93 if (AVCENC_SUCCESS != AVCBitstreamUseOverrunBuffer(stream, (num_bits >> 3) + 2))
102 while (num_bits) /* no need to check stream->buf_size and stream->write_pos, taken care already */
104 num_bits -= 8;
105 byte = (current_word >> num_bits) & 0xFF;
118 { /* for num_bits = 32, this can add 2 more bytes extra for EPBS */
header.cpp 324 int num_bits; local
326 num_bits = (stream->write_pos << 3) - stream->bit_left;
500 encvid->rateCtrl->NumberofHeaderBits += (stream->write_pos << 3) - stream->bit_left - num_bits;
    [all...]
slice.cpp 177 int num_bits, start_mb_bits, start_text_bits; local
499 num_bits = 32 + (encvid->bitstream->write_pos << 3) - encvid->bitstream->bit_left;
502 num_bits - start_text_bits);
504 // num_bits -= start_mb_bits;
505 // fprintf(fdebug,"MB #%d: %d bits\n",CurrMbAddr,num_bits);
  /external/srec/srec/cfront/
log_tabl.c 40 /* values for default case, num_bits 12 */
45 void create_lookup_log(log_table_info *logtab, int num_bits)
52 logtab->size = 0x01 << num_bits;
54 for (ii = 0; ii < num_bits; ii++) /* one less than the table size in
  /frameworks/base/media/libstagefright/codecs/m4v_h263/enc/src/
combined_encode.cpp 51 Int num_bits, packet_size = encParams->ResyncPacketsize; local
177 num_bits = BitstreamGetPos(bs1) - numHeaderBits;
178 if (num_bits > packet_size)
281 Int num_bits = 0; local
414 num_bits = BitstreamGetPos(bs1);
416 numHeaderBits = BitstreamGetPos(bs1) - num_bits;
463 num_bits = BitstreamGetPos(bs1) ;//- numHeaderBits; // include header
466 if (num_bits > packet_size && mbnum != firstMB)
511 num_bits = BitstreamGetPos(bs1) - (byteCount << 3);
514 BitstreamFlushBits(bs1, num_bits);
    [all...]
datapart_encode.cpp 50 Int num_bits, packet_size = encParams->ResyncPacketsize; local
144 num_bits = BitstreamGetPos(bs1) + BitstreamGetPos(bs2) +
149 if (num_bits > packet_size)
228 Int num_bits = 0; local
328 num_bits = BitstreamGetPos(bs1);
330 numHeaderBits = BitstreamGetPos(bs1) - num_bits;
373 num_bits = BitstreamGetPos(bs1) + BitstreamGetPos(bs2) +
377 if (num_bits > packet_size && mbnum != firstMB) /* encoding at least one more MB*/
  /frameworks/base/media/libstagefright/codecs/m4v_h263/dec/src/
bitstream.cpp 53 int num_bits, i; local
58 num_bits = stream->incnt_next + stream->incnt;
59 if (num_bits >= 32)
72 stream->incnt = num_bits;
85 stream->curr_word |= (stream->next_word >> num_bits); // this is safe
87 stream->next_word <<= (31 - num_bits);
89 num_bits = i << 3;
91 stream->incnt_next = num_bits - (32 - stream->incnt);
94 stream->incnt += num_bits;
107 stream->curr_word |= (stream->next_word >> num_bits); // this is saf
    [all...]
  /external/freetype/src/pshinter/
pshrec.h 100 FT_UInt num_bits; member in struct:PS_MaskRec_
pshrec.c 128 mask->num_bits = 0;
160 if ( (FT_UInt)idx >= mask->num_bits )
175 if ( (FT_UInt)idx >= mask->num_bits )
196 if ( (FT_UInt)idx >= mask->num_bits )
202 mask->num_bits = idx + 1;
274 mask->num_bits = 0;
331 mask->num_bits = bit_count;
382 FT_UInt count1 = mask1->num_bits;
383 FT_UInt count2 = mask2->num_bits;
429 FT_UInt count1 = mask1->num_bits;
    [all...]
pshalgo.c 154 limit = hint_mask->num_bits;
255 limit = hint_mask->num_bits;
    [all...]
  /external/chromium/base/crypto/
rsa_private_key_mac.cc 16 RSAPrivateKey* RSAPrivateKey::Create(uint16 num_bits) {
22 num_bits, NULL, NULL, NULL, NULL, NULL,
rsa_private_key_nss.cc 44 RSAPrivateKey* RSAPrivateKey::Create(uint16 num_bits) {
52 param.keySizeInBits = num_bits;
rsa_private_key_win.cc 26 RSAPrivateKey* RSAPrivateKey::Create(uint16 num_bits) {
34 flags |= (num_bits << 16);
rsa_private_key.h 161 static RSAPrivateKey* Create(uint16 num_bits);
  /external/libvpx/vp8/common/
boolcoder.h 438 uint read_bits(int num_bits)
442 while (--num_bits >= 0)
  /external/qemu/distrib/sdl-1.2.12/src/video/gem/
SDL_gemvideo.c 221 Uint16 clut_type, num_bits; local
234 num_bits = work_out[2];
  /external/grub/netboot/
tlan.c 1079 * num_bits The number of bits in data that are to
    [all...]

Completed in 481 milliseconds

1 2