Home
last modified time | relevance | path

Searched refs:bit_size (Results 1 – 15 of 15) sorted by relevance

/NextBSD/contrib/llvm/tools/lldb/source/Symbol/
HDClangASTContext.cpp557 QualTypeMatchesBitSize(const uint64_t bit_size, ASTContext *ast, QualType qual_type) in QualTypeMatchesBitSize() argument
560 if (qual_type_bit_size == bit_size) in QualTypeMatchesBitSize()
565 ClangASTContext::GetBuiltinTypeForEncodingAndBitSize (Encoding encoding, uint32_t bit_size) in GetBuiltinTypeForEncodingAndBitSize() argument
567 … return ClangASTContext::GetBuiltinTypeForEncodingAndBitSize (getASTContext(), encoding, bit_size); in GetBuiltinTypeForEncodingAndBitSize()
571 …ontext::GetBuiltinTypeForEncodingAndBitSize (ASTContext *ast, Encoding encoding, uint32_t bit_size) in GetBuiltinTypeForEncodingAndBitSize() argument
579 if (QualTypeMatchesBitSize (bit_size, ast, ast->VoidPtrTy)) in GetBuiltinTypeForEncodingAndBitSize()
584 if (QualTypeMatchesBitSize (bit_size, ast, ast->UnsignedCharTy)) in GetBuiltinTypeForEncodingAndBitSize()
586 if (QualTypeMatchesBitSize (bit_size, ast, ast->UnsignedShortTy)) in GetBuiltinTypeForEncodingAndBitSize()
588 if (QualTypeMatchesBitSize (bit_size, ast, ast->UnsignedIntTy)) in GetBuiltinTypeForEncodingAndBitSize()
590 if (QualTypeMatchesBitSize (bit_size, ast, ast->UnsignedLongTy)) in GetBuiltinTypeForEncodingAndBitSize()
[all …]
HDClangASTType.cpp2127 uint64_t bit_size = 0; in GetBitSize() local
2128 if (objc_runtime->GetTypeBitSize(*this, bit_size)) in GetBitSize()
2129 return bit_size; in GetBitSize()
2152 const uint32_t bit_size = m_ast->getTypeSize (qual_type); in GetBitSize()
2153 if (bit_size == 0) in GetBitSize()
2159 return bit_size + m_ast->getTypeSize(m_ast->ObjCBuiltinClassTy); in GetBitSize()
2160 return bit_size; in GetBitSize()
6052 const uint64_t bit_size = m_ast->getTypeSize (qual_type); in ConvertStringToFloatValue() local
6053 const uint64_t byte_size = bit_size / 8; in ConvertStringToFloatValue()
6056 if (bit_size == sizeof(float)*8) in ConvertStringToFloatValue()
[all …]
/NextBSD/contrib/llvm/tools/lldb/include/lldb/Symbol/
HDClangASTContext.h146 uint32_t bit_size);
151 uint32_t bit_size);
169 uint32_t bit_size);
443 GetIntTypeFromBitSize (size_t bit_size, bool is_signed) in GetIntTypeFromBitSize() argument
445 return GetIntTypeFromBitSize (getASTContext(), bit_size, is_signed); in GetIntTypeFromBitSize()
450 size_t bit_size, bool is_signed);
466 GetFloatTypeFromBitSize (size_t bit_size) in GetFloatTypeFromBitSize() argument
468 return GetFloatTypeFromBitSize (getASTContext(), bit_size); in GetFloatTypeFromBitSize()
473 size_t bit_size);
/NextBSD/tools/tools/bus_autoconf/
HDbus_sections.c53 uint16_t bit_size; member
71 pfi->bit_size = bs; in format_info_new()
136 if (((psub->bit_offset + psub->bit_size) / 8) > size) in format_get_field()
142 sz = psub->bit_size; in format_get_field()
/NextBSD/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/
HDSymbolFileDWARF.cpp1756 uint64_t bit_size; member
1760 bit_size (LLDB_INVALID_ADDRESS), in BitfieldInfo()
1768 bit_size = LLDB_INVALID_ADDRESS; in Clear()
1774 return (bit_size != LLDB_INVALID_ADDRESS) && in IsValid()
1867 size_t bit_size = 0; in ParseChildMembers() local
1884 case DW_AT_bit_size: bit_size = form_value.Unsigned(); break; in ParseChildMembers()
1994 bit_size = 0; in ParseChildMembers()
2044 if (bit_size > 0) in ParseChildMembers()
2049 this_field_info.bit_size = bit_size; in ParseChildMembers()
2073 this_field_info.bit_offset -= (bit_offset + bit_size); in ParseChildMembers()
[all …]
HDSymbolFileDWARF.h168 bit_size(0), in LayoutInfo()
175 uint64_t bit_size; member
/NextBSD/contrib/binutils/include/opcode/
HDcr16.h324 unsigned int bit_size; member
/NextBSD/contrib/gdb/gdb/
HDada-valprint.c967 int bit_size = TYPE_FIELD_BITSIZE (type, i); in print_field_values() local
973 bit_size, in print_field_values()
HDada-lang.c1365 int bit_offset, int bit_size, in ada_value_primitive_packed_val() argument
1380 int len = (bit_size + bit_offset + HOST_CHAR_BIT - 1) / 8; in ada_value_primitive_packed_val()
1412 VALUE_BITSIZE (v) = bit_size; in ada_value_primitive_packed_val()
1420 VALUE_BITSIZE (v) = bit_size; in ada_value_primitive_packed_val()
1423 srcBitsLeft = bit_size; in ada_value_primitive_packed_val()
1427 if (bit_size == 0) in ada_value_primitive_packed_val()
1440 (HOST_CHAR_BIT - (bit_size + bit_offset) % HOST_CHAR_BIT) in ada_value_primitive_packed_val()
1450 (HOST_CHAR_BIT - bit_size % HOST_CHAR_BIT) % HOST_CHAR_BIT; in ada_value_primitive_packed_val()
1463 int sign_bit_offset = (bit_size + bit_offset - 1) % 8; in ada_value_primitive_packed_val()
5419 int bit_size = TYPE_FIELD_BITSIZE (arg_type, fieldno); in ada_value_primitive_field() local
[all …]
/NextBSD/contrib/llvm/tools/lldb/include/lldb/Core/
HDScalar.h61 ExtractBitfield (uint32_t bit_size,
/NextBSD/tools/tools/shlib-compat/
HDshlib-compat.py483 if self.bit_size:
484 bits = ":%s" % self.bit_size
529 bit_size=raw.optarg('bit_size', None))
/NextBSD/contrib/binutils/opcodes/
HDcr16-dis.c145 return cr16_optab[op].bit_size; in getbits()
/NextBSD/contrib/llvm/tools/lldb/source/Core/
HDScalar.cpp2048 Scalar::ExtractBitfield (uint32_t bit_size, in ExtractBitfield() argument
2051 if (bit_size == 0) in ExtractBitfield()
2054 uint32_t msbit = bit_offset + bit_size - 1; in ExtractBitfield()
/NextBSD/contrib/llvm/tools/lldb/source/Expression/
HDDWARFExpression.cpp2675 uint32_t bit_size = piece_byte_size * 8; in Evaluate() local
2677 … if (!curr_piece_source_value.GetScalar().ExtractBitfield (bit_size, bit_offset)) in Evaluate()
/NextBSD/contrib/binutils/gas/config/
HDtc-cr16.c269 return cr16_optab[op].bit_size; in get_opbits()