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

1 2

  /external/chromium_org/third_party/libvpx/source/libvpx/vp9/decoder/
vp9_read_bit_buffer.c 13 return rb->bit_offset / CHAR_BIT + (rb->bit_offset % CHAR_BIT > 0);
17 const size_t off = rb->bit_offset;
25 rb->bit_offset = off + 1;
vp9_read_bit_buffer.h 27 size_t bit_offset; member in struct:vp9_read_bit_buffer
  /external/chromium_org/third_party/libvpx/source/libvpx/vp9/encoder/
vp9_write_bit_buffer.c 14 return wb->bit_offset / CHAR_BIT + (wb->bit_offset % CHAR_BIT > 0);
18 const int off = (int)wb->bit_offset;
27 wb->bit_offset = off + 1;
vp9_write_bit_buffer.h 24 size_t bit_offset; member in struct:vp9_write_bit_buffer
  /external/libvpx/libvpx/vp9/decoder/
vp9_read_bit_buffer.c 13 return rb->bit_offset / CHAR_BIT + (rb->bit_offset % CHAR_BIT > 0);
17 const size_t off = rb->bit_offset;
25 rb->bit_offset = off + 1;
vp9_read_bit_buffer.h 27 size_t bit_offset; member in struct:vp9_read_bit_buffer
  /external/libvpx/libvpx/vp9/encoder/
vp9_write_bit_buffer.c 14 return wb->bit_offset / CHAR_BIT + (wb->bit_offset % CHAR_BIT > 0);
18 const int off = (int)wb->bit_offset;
27 wb->bit_offset = off + 1;
vp9_write_bit_buffer.h 24 size_t bit_offset; member in struct:vp9_write_bit_buffer
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/decoder/
vp9_read_bit_buffer.c 13 return rb->bit_offset / CHAR_BIT + (rb->bit_offset % CHAR_BIT > 0);
17 const size_t off = rb->bit_offset;
25 rb->bit_offset = off + 1;
vp9_read_bit_buffer.h 27 size_t bit_offset; member in struct:vp9_read_bit_buffer
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/encoder/
vp9_write_bit_buffer.c 14 return wb->bit_offset / CHAR_BIT + (wb->bit_offset % CHAR_BIT > 0);
18 const int off = (int)wb->bit_offset;
27 wb->bit_offset = off + 1;
vp9_write_bit_buffer.h 24 size_t bit_offset; member in struct:vp9_write_bit_buffer
  /hardware/intel/common/libmix/videoencoder/
bitstream.h 25 int bit_offset; member in struct:bitstream
45 bs->bit_offset = 0;
50 int pos = (bs->bit_offset >> 5);
51 int bit_offset = (bs->bit_offset & 0x1f); local
52 int bit_left = 32 - bit_offset;
54 if (bit_offset) {
61 int pos = (bs->bit_offset >> 5);
62 int bit_offset = (bs->bit_offset & 0x1f) local
116 int bit_offset = (bs->bit_offset & 0x7); local
    [all...]
  /art/runtime/
memory_region.h 61 bool LoadBit(uintptr_t bit_offset) const {
63 uint8_t byte = *ComputeBitPointer(bit_offset, &bit_mask);
67 void StoreBit(uintptr_t bit_offset, bool value) const {
69 uint8_t* byte = ComputeBitPointer(bit_offset, &bit_mask);
101 byte* ComputeBitPointer(uintptr_t bit_offset, byte* bit_mask) const {
102 uintptr_t bit_remainder = (bit_offset & (kBitsPerByte - 1));
104 uintptr_t byte_offset = (bit_offset >> kBitsPerByteLog2);
  /external/chromium_org/net/spdy/
hpack_input_stream.h 62 void SetBitOffsetForTest(size_t bit_offset) {
63 bit_offset_ = bit_offset;
hpack_input_stream.cc 133 size_t bit_offset = (bit_offset_ + *peeked_count) % 8; local
140 size_t bits_to_read = std::min(32 - *peeked_count, 8 - bit_offset);
144 // This drops the leading |bit_offset| bits of the byte.
145 new_bits = new_bits << (24 + bit_offset);
  /external/lldb/scripts/Python/interface/
SBType.i 56 __swig_getmethods__["bit_offset"] = GetOffsetInBits
57 if _newclass: bit_offset = property(GetOffsetInBits, None, doc='''A read only property that returns offset in bits for this member as an integer.''')
311 bit_offset = base.bit_offset
314 if member.bit_offset > bit_offset:
321 bit_offset = vbase.bit_offset
324 if member.bit_offset > bit_offset
    [all...]
  /external/lldb/source/API/
SBType.cpp 329 uint32_t bit_offset = 0; local
330 ClangASTType base_class_type (this_type.GetDirectBaseClassAtIndex(idx, &bit_offset));
333 sb_type_member.reset (new TypeMemberImpl (TypeImplSP(new TypeImpl(base_class_type)), bit_offset));
350 uint32_t bit_offset = 0; local
351 ClangASTType base_class_type (this_type.GetVirtualBaseClassAtIndex(idx, &bit_offset));
354 sb_type_member.reset (new TypeMemberImpl (TypeImplSP(new TypeImpl(base_class_type)), bit_offset));
370 uint64_t bit_offset = 0; local
376 &bit_offset,
385 bit_offset,
602 const uint32_t bit_offset = m_opaque_ap->GetBitOffset() local
    [all...]
  /hardware/intel/common/libva/test/encode/
mpeg2enc.c 157 int bit_offset; member in struct:__bitstream
179 bs->bit_offset = 0;
185 int pos = (bs->bit_offset >> 5);
186 int bit_offset = (bs->bit_offset & 0x1f); local
187 int bit_left = 32 - bit_offset;
189 if (bit_offset) {
197 int pos = (bs->bit_offset >> 5);
198 int bit_offset = (bs->bit_offset & 0x1f) local
228 int bit_offset = (bs->bit_offset & 0x7); local
    [all...]
mpeg2vaenc.c 157 int bit_offset; member in struct:__bitstream
179 bs->bit_offset = 0;
185 int pos = (bs->bit_offset >> 5);
186 int bit_offset = (bs->bit_offset & 0x1f); local
187 int bit_left = 32 - bit_offset;
189 if (bit_offset) {
197 int pos = (bs->bit_offset >> 5);
198 int bit_offset = (bs->bit_offset & 0x1f) local
228 int bit_offset = (bs->bit_offset & 0x7); local
    [all...]
avcenc.c 730 int bit_offset; member in struct:__bitstream
770 bs->bit_offset = 0;
776 int pos = (bs->bit_offset >> 5);
777 int bit_offset = (bs->bit_offset & 0x1f); local
778 int bit_left = 32 - bit_offset;
780 if (bit_offset) {
788 int pos = (bs->bit_offset >> 5);
789 int bit_offset = (bs->bit_offset & 0x1f) local
844 int bit_offset = (bs->bit_offset & 0x7); local
    [all...]
h264encode.c 166 int bit_offset; member in struct:__bitstream
188 bs->bit_offset = 0;
194 int pos = (bs->bit_offset >> 5);
195 int bit_offset = (bs->bit_offset & 0x1f); local
196 int bit_left = 32 - bit_offset;
198 if (bit_offset) {
206 int pos = (bs->bit_offset >> 5);
207 int bit_offset = (bs->bit_offset & 0x1f) local
262 int bit_offset = (bs->bit_offset & 0x7); local
    [all...]
  /external/lldb/include/lldb/Symbol/
Type.h 518 uint64_t bit_offset,
523 m_bit_offset (bit_offset),
531 uint64_t bit_offset):
533 m_bit_offset (bit_offset),
  /external/chromium_org/net/spdy/fuzzing/
hpack_fuzz_util.cc 184 uint64 bit_offset = base::RandUint64() % buffer_bit_length; local
185 buffer[bit_offset / 8u] ^= (1 << (bit_offset % 8u));
  /external/chromium_org/third_party/libvpx/source/libvpx/vp9/
vp9_dx_iface.c 131 rb.bit_offset += 1; // show frame
132 rb.bit_offset += 1; // error resilient
142 rb.bit_offset += 1; // [16,235] (including xvycc) vs [0,255] range
144 rb.bit_offset += 2; // subsampling x/y
145 rb.bit_offset += 1; // has extra plane
149 rb.bit_offset += 1; // has extra plane

Completed in 1228 milliseconds

1 2