| /freebsd-13.1/contrib/libarchive/libarchive/ |
| H A D | archive_write_add_filter_compress.c | 103 int bit_offset; member 188 state->bit_offset = 0; in archive_compressor_compress_open() 249 int bits, ret, clear_flg, bit_offset; in output_code() local 257 bit_offset = state->bit_offset % 8; in output_code() 262 ocode >>= 8 - bit_offset; in output_code() 270 state->bit_offset += state->code_len; in output_code() 273 state->bit_offset = 0; in output_code() 284 if (state->bit_offset > 0) { in output_code() 289 state->bit_offset += 8; in output_code() 294 state->bit_offset = 0; in output_code() [all …]
|
| /freebsd-13.1/contrib/llvm-project/lldb/bindings/interface/ |
| H A D | SBType.i | 53 …bit_offset = property(GetOffsetInBits, None, doc='''A read only property that returns offset in bi… 920 bit_offset = base.bit_offset 923 if member.bit_offset > bit_offset: 930 bit_offset = vbase.bit_offset 933 if member.bit_offset > bit_offset: 940 bit_offset = field.bit_offset 943 if member.bit_offset > bit_offset:
|
| /freebsd-13.1/sys/contrib/zstd/doc/educational_decoder/ |
| H A D | zstd_decompress.c | 92 int bit_offset; member 1120 if (bit_offset != 0) { in decompress_sequences() 1605 in->bit_offset = (num_bits + in->bit_offset) % 8; in IO_read_bits() 1635 if (in->bit_offset != 0) { in IO_align_stream() 1641 in->bit_offset = 0; in IO_align_stream() 1668 if (in->bit_offset != 0) { in IO_get_read_ptr() 1694 if (in->bit_offset != 0) { in IO_advance_input() 1734 size_t bit_offset = offset % 8; in read_bits_LE() local 1744 shift += 8 - bit_offset; in read_bits_LE() 1745 left -= 8 - bit_offset; in read_bits_LE() [all …]
|
| /freebsd-13.1/contrib/llvm-project/lldb/include/lldb/Target/ |
| H A D | ProcessStructReader.h | 52 uint64_t bit_offset; in ProcessStructReader() local 56 idx, name, &bit_offset, &bitfield_bit_size, &is_bitfield); in ProcessStructReader() 65 size_t byte_index = static_cast<size_t>(bit_offset / 8); in ProcessStructReader()
|
| /freebsd-13.1/contrib/llvm-project/lldb/source/API/ |
| H A D | SBType.cpp | 421 uint32_t bit_offset = 0; in GetDirectBaseClassAtIndex() local 424 idx, &bit_offset); in GetDirectBaseClassAtIndex() 427 TypeImplSP(new TypeImpl(base_class_type)), bit_offset)); in GetDirectBaseClassAtIndex() 438 uint32_t bit_offset = 0; in GetVirtualBaseClassAtIndex() local 441 idx, &bit_offset); in GetVirtualBaseClassAtIndex() 444 TypeImplSP(new TypeImpl(base_class_type)), bit_offset)); in GetVirtualBaseClassAtIndex() 480 uint64_t bit_offset = 0; in GetFieldAtIndex() local 485 idx, name_sstr, &bit_offset, &bitfield_bit_size, &is_bitfield)); in GetFieldAtIndex() 747 const uint32_t bit_offset = m_opaque_up->GetBitOffset(); in GetDescription() local 748 const uint32_t byte_offset = bit_offset / 8u; in GetDescription() [all …]
|
| /freebsd-13.1/sys/contrib/device-tree/Bindings/clock/ |
| H A D | st,stm32-rcc.txt | 45 It is calculated as: index = register_offset / 4 * 32 + bit_offset. 46 Where bit_offset is the bit offset within the register (LSB is 0, MSB is 31). 129 It is calculated as: index = register_offset / 4 * 32 + bit_offset. 130 Where bit_offset is the bit offset within the register.
|
| H A D | st,stm32h7-rcc.txt | 61 It is calculated as: index = register_offset / 4 * 32 + bit_offset. 62 Where bit_offset is the bit offset within the register.
|
| H A D | st,stm32mp1-rcc.yaml | 35 It is calculated as: index = register_offset / 4 * 32 + bit_offset. 36 Where bit_offset is the bit offset within the register.
|
| /freebsd-13.1/sys/dev/ice/ |
| H A D | ice_bitops.h | 499 u32 bit_offset = i * BITS_PER_U32; in ice_bitmap_from_array32() local 505 ice_set_bit((u16)(j + bit_offset), dst); in ice_bitmap_from_array32() 514 u32 bit_offset = i * BITS_PER_U32; in ice_bitmap_from_array32() local 520 ice_set_bit((u16)(j + bit_offset), dst); in ice_bitmap_from_array32()
|
| /freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/ |
| H A D | DWARFASTParserClang.cpp | 2348 int64_t bit_offset = 0; in ParseSingleMember() local 2374 bit_offset = form_value.Signed(); in ParseSingleMember() 2488 if (byte_size.getValueOr(0) == 0 && bit_offset < 0) { in ParseSingleMember() 2490 bit_offset = 0; in ParseSingleMember() 2532 this_field_info.bit_offset = field_bit_offset; in ParseSingleMember() 2544 this_field_info.bit_offset -= (bit_offset + bit_size); in ParseSingleMember() 2546 this_field_info.bit_offset += bit_offset; in ParseSingleMember() 2561 this_field_info.bit_offset)))) { in ParseSingleMember() 2574 field_bit_offset = this_field_info.bit_offset; in ParseSingleMember() 2612 !(last_field_info.bit_offset == 0 && in ParseSingleMember() [all …]
|
| H A D | DWARFASTParserClang.h | 178 uint64_t bit_offset = 0; member 189 return (bit_size + bit_offset) <= next_bit_offset; in NextBitfieldOffsetIsValid()
|
| /freebsd-13.1/contrib/llvm-project/lldb/include/lldb/Symbol/ |
| H A D | Type.h | 347 TypeMemberImpl(const lldb::TypeImplSP &type_impl_sp, uint64_t bit_offset, 350 : m_type_impl_sp(type_impl_sp), m_bit_offset(bit_offset), m_name(name), in m_type_impl_sp() 353 TypeMemberImpl(const lldb::TypeImplSP &type_impl_sp, uint64_t bit_offset) in TypeMemberImpl() argument 354 : m_type_impl_sp(type_impl_sp), m_bit_offset(bit_offset), m_name(), in TypeMemberImpl()
|
| /freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/Language/CPlusPlus/ |
| H A D | LibCxxMap.cpp | 295 uint64_t bit_offset; in GetValueOffset() local 296 if (node_type.GetIndexOfFieldWithName("__value_", nullptr, &bit_offset) != in GetValueOffset() 298 m_skip_size = bit_offset / 8u; in GetValueOffset()
|
| /freebsd-13.1/sys/xen/interface/ |
| H A D | platform.h | 391 uint32_t bit_offset; member 434 uint8_t bit_offset; member
|
| /freebsd-13.1/contrib/llvm-project/compiler-rt/lib/sanitizer_common/ |
| H A D | sanitizer_allocator_primary64.h | 442 uptr bit_offset = (i & bit_offset_mask) << counter_size_bits_log; in Get() local 443 return (buffer[index] >> bit_offset) & counter_mask; in Get() 449 uptr bit_offset = (i & bit_offset_mask) << counter_size_bits_log; in Inc() local 450 buffer[index] += 1ULL << bit_offset; in Inc()
|
| /freebsd-13.1/contrib/llvm-project/lldb/source/Utility/ |
| H A D | Scalar.cpp | 798 bool Scalar::ExtractBitfield(uint32_t bit_size, uint32_t bit_offset) { in ExtractBitfield() argument 808 m_integer >>= bit_offset; in ExtractBitfield()
|
| /freebsd-13.1/contrib/llvm-project/lldb/include/lldb/Utility/ |
| H A D | Scalar.h | 77 bool ExtractBitfield(uint32_t bit_size, uint32_t bit_offset);
|
| /freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/TypeSystem/Clang/ |
| H A D | TypeSystemClang.cpp | 290 int32_t &bit_offset) { in GetVBaseBitOffset() argument 306 bit_offset = base_offset * 8; in GetVBaseBitOffset() 6130 int32_t bit_offset; in GetChildCompilerTypeAtIndex() local 6203 child_byte_offset = bit_offset / 8; in GetChildCompilerTypeAtIndex() 6247 bit_offset = record_layout.getFieldOffset(field_idx); in GetChildCompilerTypeAtIndex() 6251 bit_offset - child_bitfield_bit_offset; in GetChildCompilerTypeAtIndex() 6254 child_byte_offset = bit_offset / 8; in GetChildCompilerTypeAtIndex() 6354 bit_offset = INT32_MAX; in GetChildCompilerTypeAtIndex() 6360 child_byte_offset = bit_offset / 8; in GetChildCompilerTypeAtIndex() 6370 if (bit_offset == INT32_MAX) in GetChildCompilerTypeAtIndex() [all …]
|
| /freebsd-13.1/contrib/llvm-project/lldb/source/Expression/ |
| H A D | DWARFExpression.cpp | 2221 uint32_t bit_offset = 0; in Evaluate() local 2224 bit_size, bit_offset)) { in Evaluate()
|
| /freebsd-13.1/contrib/llvm-project/llvm/include/llvm/BinaryFormat/ |
| H A D | Dwarf.def | 277 HANDLE_DW_AT(0x0c, bit_offset, 2, DWARF)
|