Searched refs:bit_offset (Results 1 - 24 of 24) sorted by relevance

/freebsd-10.0-release/tools/tools/bus_autoconf/
H A Dbus_sections.c52 uint16_t bit_offset; member in struct:format_info
70 pfi->bit_offset = bo;
107 return ((pfi->bit_offset + 7) / 8);
136 if (((psub->bit_offset + psub->bit_size) / 8) > size)
140 rem = psub->bit_offset & 7;
141 off = psub->bit_offset / 8;
161 uint16_t bit_offset = 0; local
203 pfi = format_info_new(linebuf[0], bit_offset ^
206 bit_offset += cmd_index;
217 bit_offset
[all...]
/freebsd-10.0-release/contrib/libarchive/libarchive/
H A Darchive_write_add_filter_compress.c103 int bit_offset; member in struct:private_data
193 state->bit_offset = 0;
254 int bits, ret, clear_flg, bit_offset; local
262 bit_offset = state->bit_offset % 8;
263 state->bit_buf |= (ocode << bit_offset) & 0xff;
266 bits = state->code_len - (8 - bit_offset);
267 ocode >>= 8 - bit_offset;
275 state->bit_offset += state->code_len;
277 if (state->bit_offset
[all...]
/freebsd-10.0-release/contrib/llvm/tools/lldb/source/API/
H A DSBType.cpp329 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 local
[all...]
/freebsd-10.0-release/sys/ia64/include/
H A Ddig64.h35 uint8_t bit_offset; member in struct:dig64_gas
/freebsd-10.0-release/contrib/gcc/
H A Dtree-dfa.c868 tree bit_offset = bitsize_zero_node; local
905 bit_offset = size_binop (PLUS_EXPR, bit_offset,
920 bit_offset = size_binop (PLUS_EXPR,
921 bit_offset, this_offset);
922 bit_offset = size_binop (PLUS_EXPR, bit_offset,
935 - TREE_INT_CST_LOW (bit_offset));
960 bit_offset = size_binop (PLUS_EXPR, bit_offset, inde
[all...]
H A Dtree-ssa-loop-prefetch.c402 HOST_WIDE_INT bit_offset; local
418 bit_offset = TREE_INT_CST_LOW (off);
419 gcc_assert (bit_offset % BITS_PER_UNIT == 0);
421 *delta += bit_offset / BITS_PER_UNIT;
H A Dtree-vect-transform.c913 int bit_offset; local
953 for (bit_offset = vec_size_in_bits/2;
954 bit_offset >= element_bitsize;
955 bit_offset /= 2)
957 tree bitpos = size_int (bit_offset);
1001 for (bit_offset = element_bitsize;
1002 bit_offset < vec_size_in_bits;
1003 bit_offset += element_bitsize)
1005 tree bitpos = bitsize_int (bit_offset);
H A Dstor-layout.c803 excess_unit_span (HOST_WIDE_INT byte_offset, HOST_WIDE_INT bit_offset,
808 unsigned HOST_WIDE_INT offset = byte_offset * BITS_PER_UNIT + bit_offset;
958 HOST_WIDE_INT bit_offset = tree_low_cst (rli->bitpos, 0);
967 if (excess_unit_span (offset, bit_offset, field_size, type_align, type))
990 HOST_WIDE_INT bit_offset = tree_low_cst (rli->bitpos, 0);
1006 if (excess_unit_span (offset, bit_offset, field_size, type_align, type))
799 excess_unit_span(HOST_WIDE_INT byte_offset, HOST_WIDE_INT bit_offset, HOST_WIDE_INT size, HOST_WIDE_INT align, tree type) argument
954 HOST_WIDE_INT bit_offset = tree_low_cst (rli->bitpos, 0); local
986 HOST_WIDE_INT bit_offset = tree_low_cst (rli->bitpos, 0); local
H A Dggc-page.c1382 unsigned int bit_offset, word, bit;
1387 bit_offset = OFFSET_TO_BIT (((const char *) p) - pe->page, order);
1388 word = bit_offset / HOST_BITS_PER_LONG;
1389 bit = bit_offset % HOST_BITS_PER_LONG;
1426 pe->next_bit_hint = bit_offset;
1379 unsigned int bit_offset, word, bit; local
H A Dexpr.c5664 tree bit_offset = bitsize_zero_node;
5709 bit_offset = size_binop (PLUS_EXPR, bit_offset,
5725 bit_offset = size_binop (PLUS_EXPR, bit_offset,
5758 bit_offset = size_binop (PLUS_EXPR, bit_offset,
5792 tem = double_int_add (tem, tree_to_double_int (bit_offset));
5802 *pbitpos = tree_low_cst (bit_offset, 0);
5649 tree bit_offset = bitsize_zero_node; local
H A Dexpmed.c577 unsigned int bit_offset = (backwards
585 bitnum + bit_offset, word_mode,
1315 unsigned int bit_offset = (WORDS_BIG_ENDIAN
1323 bitnum + bit_offset, 1, target_part, mode,
576 unsigned int bit_offset = (backwards local
1311 unsigned int bit_offset = (WORDS_BIG_ENDIAN local
H A Dtree.h2674 #define DECL_FIELD_BIT_OFFSET(NODE) (FIELD_DECL_CHECK (NODE)->field_decl.bit_offset)
2722 tree bit_offset;
2709 tree bit_offset; local
H A Ddwarf2out.c10857 HOST_WIDE_INT unsigned bit_offset;
10885 bit_offset
10890 add_AT_unsigned (die, DW_AT_bit_offset, bit_offset);
10844 HOST_WIDE_INT unsigned bit_offset; local
/freebsd-10.0-release/contrib/llvm/tools/lldb/include/lldb/Symbol/
H A DType.h518 uint64_t bit_offset,
523 m_bit_offset (bit_offset),
531 uint64_t bit_offset):
533 m_bit_offset (bit_offset),
517 TypeMemberImpl(const lldb::TypeImplSP &type_impl_sp, uint64_t bit_offset, const ConstString &name, uint32_t bitfield_bit_size = 0, bool is_bitfield = false) argument
530 TypeMemberImpl(const lldb::TypeImplSP &type_impl_sp, uint64_t bit_offset) argument
/freebsd-10.0-release/contrib/llvm/tools/lldb/source/DataFormatters/
H A DLibCxxMap.cpp296 uint64_t bit_offset; local
297 if (node_type.GetIndexOfFieldWithName("__value_", NULL, &bit_offset) == UINT32_MAX)
299 m_skip_size = bit_offset / 8u;
/freebsd-10.0-release/sys/xen/interface/
H A Dplatform.h342 uint32_t bit_offset; member in struct:xen_power_register
385 uint8_t bit_offset; member in struct:xen_pct_register
/freebsd-10.0-release/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/
H A DSymbolFileDWARF.cpp1639 uint64_t bit_offset; member in struct:BitfieldInfo
1643 bit_offset (LLDB_INVALID_ADDRESS)
1650 (bit_offset != LLDB_INVALID_ADDRESS);
1740 size_t bit_offset = 0; local
1757 case DW_AT_bit_offset: bit_offset = form_value.Unsigned(); break;
1865 if (bit_offset > 128)
1868 bit_offset = 0;
1938 this_field_info.bit_offset = 0;
1940 this_field_info.bit_offset += (member_byte_offset == UINT32_MAX ? 0 : (member_byte_offset * 8));
1944 this_field_info.bit_offset
[all...]
/freebsd-10.0-release/contrib/llvm/tools/lldb/include/lldb/Core/
H A DScalar.h62 uint32_t bit_offset);
/freebsd-10.0-release/contrib/llvm/tools/lldb/source/Symbol/
H A DClangASTType.cpp2918 uint32_t bit_offset;
2973 bit_offset = record_layout.getVBaseClassOffset(base_class_decl).getQuantity() * 8;
2975 bit_offset = record_layout.getBaseClassOffset(base_class_decl).getQuantity() * 8;
2978 child_byte_offset = bit_offset/8;
3012 bit_offset = record_layout.getFieldOffset (field_idx);
3013 child_byte_offset = bit_offset / 8;
3015 child_bitfield_bit_offset = bit_offset % 8;
3109 bit_offset = UINT32_MAX;
3113 bit_offset = interface_layout.getFieldOffset (child_idx - superclass_idx);
3114 child_byte_offset = bit_offset /
[all...]
/freebsd-10.0-release/sys/boot/ia64/efi/
H A Dmain.c586 printf(" Bit offset= %u\n", gas->bit_offset);
/freebsd-10.0-release/contrib/gdb/gdb/
H A Dada-lang.c1369 int bit_offset, int bit_size,
1384 int len = (bit_size + bit_offset + HOST_CHAR_BIT - 1) / 8;
1415 VALUE_BITPOS (v) = bit_offset + VALUE_BITPOS (obj);
1440 ((bytes[0] << bit_offset) & (1 << (HOST_CHAR_BIT - 1))))
1444 (HOST_CHAR_BIT - (bit_size + bit_offset) % HOST_CHAR_BIT)
1467 int sign_bit_offset = (bit_size + bit_offset - 1) % 8;
1470 unusedLS = bit_offset;
1364 ada_value_primitive_packed_val(struct value *obj, char *valaddr, long offset, int bit_offset, int bit_size, struct type *type) argument
H A Ddwarf2read.c2651 int bit_offset = DW_UNSND (attr); local
2670 - bit_offset - FIELD_BITSIZE (*fp);
/freebsd-10.0-release/contrib/llvm/tools/lldb/source/Core/
H A DScalar.cpp2048 uint32_t bit_offset)
2053 uint32_t msbit = bit_offset + bit_size - 1;
2054 uint32_t lsbit = bit_offset;
2047 ExtractBitfield(uint32_t bit_size, uint32_t bit_offset) argument
/freebsd-10.0-release/contrib/gcc/config/i386/
H A Di386.c3276 enum x86_64_reg_class classes[MAX_CLASSES], int bit_offset)
3280 int words = (bytes + (bit_offset % 64) / 8 + UNITS_PER_WORD - 1) / UNITS_PER_WORD;
3330 (offset + bit_offset) % 256);
3335 int pos = (offset + (bit_offset % 64)) / 8 / 8;
3356 for (i = (int_bit_position (field) + (bit_offset % 64)) / 8 / 8;
3357 i < ((int_bit_position (field) + (bit_offset % 64))
3369 + bit_offset) % 256);
3375 (int_bit_position (field) + (bit_offset % 64)) / 8 / 8;
3389 TREE_TYPE (type), subclasses, bit_offset);
3423 bit_offset);
3267 classify_argument(enum machine_mode mode, tree type, enum x86_64_reg_class classes[MAX_CLASSES], int bit_offset) argument
[all...]

Completed in 351 milliseconds