/external/lldb/scripts/Python/interface/ |
D | SBType.i | 57 …if _newclass: bit_offset = property(GetOffsetInBits, None, doc='''A read only property that return… 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: 331 bit_offset = field.bit_offset 334 if member.bit_offset > bit_offset:
|
/external/libvpx/libvpx/vp9/encoder/ |
D | vp9_write_bit_buffer.c | 14 return wb->bit_offset / CHAR_BIT + (wb->bit_offset % CHAR_BIT > 0); in vp9_rb_bytes_written() 18 const int off = (int)wb->bit_offset; in vp9_wb_write_bit() 27 wb->bit_offset = off + 1; in vp9_wb_write_bit()
|
D | vp9_write_bit_buffer.h | 24 size_t bit_offset; member
|
/external/chromium_org/third_party/libvpx/source/libvpx/vp9/encoder/ |
D | vp9_write_bit_buffer.c | 15 return wb->bit_offset / CHAR_BIT + (wb->bit_offset % CHAR_BIT > 0); in vp9_wb_bytes_written() 19 const int off = (int)wb->bit_offset; in vp9_wb_write_bit() 28 wb->bit_offset = off + 1; in vp9_wb_write_bit()
|
D | vp9_write_bit_buffer.h | 22 size_t bit_offset; member
|
/external/libvpx/libvpx/vp9/decoder/ |
D | vp9_read_bit_buffer.c | 13 return rb->bit_offset / CHAR_BIT + (rb->bit_offset % CHAR_BIT > 0); in vp9_rb_bytes_read() 17 const size_t off = rb->bit_offset; in vp9_rb_read_bit() 25 rb->bit_offset = off + 1; in vp9_rb_read_bit()
|
D | vp9_read_bit_buffer.h | 27 size_t bit_offset; member
|
/external/lldb/source/API/ |
D | SBType.cpp | 329 uint32_t bit_offset = 0; in GetDirectBaseClassAtIndex() local 330 ClangASTType base_class_type (this_type.GetDirectBaseClassAtIndex(idx, &bit_offset)); in GetDirectBaseClassAtIndex() 333 … sb_type_member.reset (new TypeMemberImpl (TypeImplSP(new TypeImpl(base_class_type)), bit_offset)); in GetDirectBaseClassAtIndex() 350 uint32_t bit_offset = 0; in GetVirtualBaseClassAtIndex() local 351 ClangASTType base_class_type (this_type.GetVirtualBaseClassAtIndex(idx, &bit_offset)); in GetVirtualBaseClassAtIndex() 354 … sb_type_member.reset (new TypeMemberImpl (TypeImplSP(new TypeImpl(base_class_type)), bit_offset)); in GetVirtualBaseClassAtIndex() 370 uint64_t bit_offset = 0; in GetFieldAtIndex() local 376 &bit_offset, in GetFieldAtIndex() 385 bit_offset, in GetFieldAtIndex() 602 const uint32_t bit_offset = m_opaque_ap->GetBitOffset(); in GetDescription() local [all …]
|
/external/chromium_org/third_party/libvpx/source/libvpx/vp9/decoder/ |
D | vp9_read_bit_buffer.c | 13 return (rb->bit_offset + CHAR_BIT - 1) / CHAR_BIT; in vp9_rb_bytes_read() 17 const size_t off = rb->bit_offset; in vp9_rb_read_bit() 25 rb->bit_offset = off + 1; in vp9_rb_read_bit()
|
D | vp9_read_bit_buffer.h | 27 size_t bit_offset; member
|
D | vp9_decodeframe.c | 1430 rb->bit_offset = 0; in init_read_bit_buffer()
|
/external/chromium_org/net/spdy/ |
D | hpack_input_stream.h | 62 void SetBitOffsetForTest(size_t bit_offset) { in SetBitOffsetForTest() argument 63 bit_offset_ = bit_offset; in SetBitOffsetForTest()
|
D | hpack_input_stream.cc | 133 size_t bit_offset = (bit_offset_ + *peeked_count) % 8; in PeekBits() local 140 size_t bits_to_read = std::min(32 - *peeked_count, 8 - bit_offset); in PeekBits() 145 new_bits = new_bits << (24 + bit_offset); in PeekBits()
|
/external/chromium_org/net/spdy/fuzzing/ |
D | hpack_fuzz_util.cc | 184 uint64 bit_offset = base::RandUint64() % buffer_bit_length; in FlipBits() local 185 buffer[bit_offset / 8u] ^= (1 << (bit_offset % 8u)); in FlipBits()
|
/external/chromium_org/third_party/libvpx/source/libvpx/vp9/ |
D | vp9_dx_iface.c | 99 rb->bit_offset += 1; // Bit-depth 10 or 12. in parse_bitdepth_colorspace_sampling() 102 rb->bit_offset += 1; // [16,235] (including xvycc) vs [0,255] range. in parse_bitdepth_colorspace_sampling() 104 rb->bit_offset += 2; // subsampling x/y. in parse_bitdepth_colorspace_sampling() 105 rb->bit_offset += 1; // unused. in parse_bitdepth_colorspace_sampling() 109 rb->bit_offset += 1; // unused in parse_bitdepth_colorspace_sampling() 173 rb.bit_offset += error_resilient ? 0 : 2; // reset_frame_context in decoder_peek_si_internal() 182 rb.bit_offset += REF_FRAMES; // refresh_frame_flags in decoder_peek_si_internal()
|
/external/lldb/include/lldb/Symbol/ |
D | Type.h | 518 uint64_t bit_offset, 523 m_bit_offset (bit_offset), in m_type_impl_sp() 531 uint64_t bit_offset): in TypeMemberImpl() argument 533 m_bit_offset (bit_offset), in TypeMemberImpl()
|
/external/libvpx/libvpx/vp9/ |
D | vp9_dx_iface.c | 128 rb.bit_offset += 1; // show frame in decoder_peek_si() 129 rb.bit_offset += 1; // error resilient in decoder_peek_si() 139 rb.bit_offset += 1; // [16,235] (including xvycc) vs [0,255] range in decoder_peek_si() 141 rb.bit_offset += 2; // subsampling x/y in decoder_peek_si() 142 rb.bit_offset += 1; // has extra plane in decoder_peek_si() 146 rb.bit_offset += 1; // has extra plane in decoder_peek_si()
|
/external/lldb/source/DataFormatters/ |
D | LibCxxMap.cpp | 296 uint64_t bit_offset; in GetValueOffset() local 297 if (node_type.GetIndexOfFieldWithName("__value_", NULL, &bit_offset) == UINT32_MAX) in GetValueOffset() 299 m_skip_size = bit_offset / 8u; in GetValueOffset()
|
/external/lldb/source/Plugins/SymbolFile/DWARF/ |
D | SymbolFileDWARF.cpp | 1639 uint64_t bit_offset; member 1643 bit_offset (LLDB_INVALID_ADDRESS) in BitfieldInfo() 1650 (bit_offset != LLDB_INVALID_ADDRESS); in IsValid() 1740 size_t bit_offset = 0; in ParseChildMembers() local 1757 case DW_AT_bit_offset: bit_offset = form_value.Unsigned(); break; in ParseChildMembers() 1865 if (bit_offset > 128) in ParseChildMembers() 1868 bit_offset = 0; in ParseChildMembers() 1938 this_field_info.bit_offset = 0; in ParseChildMembers() 1940 … this_field_info.bit_offset += (member_byte_offset == UINT32_MAX ? 0 : (member_byte_offset * 8)); in ParseChildMembers() 1944 this_field_info.bit_offset += byte_size * 8; in ParseChildMembers() [all …]
|
/external/lldb/include/lldb/Core/ |
D | Scalar.h | 62 uint32_t bit_offset);
|
/external/f2fs-tools/fsck/ |
D | fsck.c | 588 int bit_offset; in print_dentry() local 596 bit_offset = find_next_bit(bitmap, max, next_idx); in print_dentry() 597 if (bit_offset >= max && last_blk) in print_dentry()
|
/external/lldb/source/Symbol/ |
D | ClangASTType.cpp | 2918 uint32_t bit_offset; in GetChildClangTypeAtIndex() local 2973 … bit_offset = record_layout.getVBaseClassOffset(base_class_decl).getQuantity() * 8; in GetChildClangTypeAtIndex() 2975 … bit_offset = record_layout.getBaseClassOffset(base_class_decl).getQuantity() * 8; in GetChildClangTypeAtIndex() 2978 child_byte_offset = bit_offset/8; in GetChildClangTypeAtIndex() 3012 bit_offset = record_layout.getFieldOffset (field_idx); in GetChildClangTypeAtIndex() 3013 child_byte_offset = bit_offset / 8; in GetChildClangTypeAtIndex() 3015 child_bitfield_bit_offset = bit_offset % 8; in GetChildClangTypeAtIndex() 3109 bit_offset = UINT32_MAX; in GetChildClangTypeAtIndex() 3113 … bit_offset = interface_layout.getFieldOffset (child_idx - superclass_idx); in GetChildClangTypeAtIndex() 3114 child_byte_offset = bit_offset / 8; in GetChildClangTypeAtIndex() [all …]
|
/external/chromium_org/third_party/libva/va/ |
D | va.h | 1807 unsigned int bit_offset; member
|
/external/lldb/source/Core/ |
D | Scalar.cpp | 2054 uint32_t bit_offset) in ExtractBitfield() argument 2059 uint32_t msbit = bit_offset + bit_size - 1; in ExtractBitfield() 2060 uint32_t lsbit = bit_offset; in ExtractBitfield()
|
/external/bluetooth/bluedroid/stack/hcic/ |
D | hcicmds.c | 3098 int bit_offset = i % 8; in btsnd_hcic_set_afh_channels() local 3099 channels[byte_offset] &= ~(1 << bit_offset); in btsnd_hcic_set_afh_channels()
|