Searched refs:cu (Results 1 - 25 of 86) sorted by relevance

1234

/freebsd-11-stable/contrib/elftoolchain/libdwarf/
H A Dlibdwarf_info.c35 Dwarf_CU cu; local
39 cu = STAILQ_FIRST(&dbg->dbg_cu);
40 if (cu != NULL) {
41 dbg->dbg_cu_current = cu;
87 Dwarf_CU cu; local
91 cu = STAILQ_NEXT(dbg->dbg_cu_current, cu_next);
92 if (cu != NULL) {
93 dbg->dbg_cu_current = cu;
114 Dwarf_CU cu; local
118 cu
142 Dwarf_CU cu; local
256 Dwarf_CU cu, tcu; local
276 Dwarf_CU cu, tcu; local
293 Dwarf_CU cu; local
373 Dwarf_CU cu; local
[all...]
H A Ddwarf_die.c37 Dwarf_CU cu; local
51 cu = die->die_cu;
52 ds = cu->cu_is_info ? dbg->dbg_info_sec : dbg->dbg_types_sec;
53 ret = _dwarf_die_parse(die->die_dbg, ds, cu, cu->cu_dwarf_size,
54 die->die_next_off, cu->cu_next_offset, ret_die, 0, error);
69 Dwarf_CU cu; local
81 cu = is_info ? dbg->dbg_cu_current : dbg->dbg_tu_current;
83 if (cu == NULL) {
90 return (dwarf_offdie_b(dbg, cu
147 _dwarf_search_die_within_cu(Dwarf_Debug dbg, Dwarf_Section *s, Dwarf_CU cu, Dwarf_Off offset, Dwarf_Die *ret_die, Dwarf_Error *error) argument
162 Dwarf_CU cu; local
274 Dwarf_CU cu; local
296 Dwarf_CU cu; local
350 Dwarf_CU cu; local
[all...]
H A Ddwarf_cu.c40 Dwarf_CU cu; local
71 cu = dbg->dbg_cu_current;
77 cu = dbg->dbg_tu_current;
81 *cu_length = cu->cu_length;
83 *cu_version = cu->cu_version;
85 *cu_abbrev_offset = (Dwarf_Off) cu->cu_abbrev_offset;
87 *cu_pointer_size = cu->cu_pointer_size;
89 if (cu->cu_length_size == 4)
95 if (cu->cu_length_size == 4)
101 *cu_next_offset = cu
[all...]
H A Dlibdwarf_abbrev.c33 _dwarf_abbrev_add(Dwarf_CU cu, uint64_t entry, uint64_t tag, uint8_t children, argument
39 dbg = cu != NULL ? cu->cu_dbg : NULL;
58 if (cu != NULL)
59 HASH_ADD(ab_hh, cu->cu_abbrev_hash, ab_entry,
100 _dwarf_abbrev_parse(Dwarf_Debug dbg, Dwarf_CU cu, Dwarf_Unsigned *offset, argument
124 ret = _dwarf_abbrev_add(cu, entry, 0, 0, aboff, abp,
134 if ((ret = _dwarf_abbrev_add(cu, entry, tag, children, aboff,
155 _dwarf_abbrev_find(Dwarf_CU cu, uint64_t entry, Dwarf_Abbrev *abp, argument
167 HASH_FIND(ab_hh, cu
203 _dwarf_abbrev_cleanup(Dwarf_CU cu) argument
224 Dwarf_CU cu; local
[all...]
H A Dlibdwarf_loclist.c32 _dwarf_loclist_add_locdesc(Dwarf_Debug dbg, Dwarf_CU cu, Dwarf_Section *ds, argument
43 start = dbg->read(ds->ds_data, off, cu->cu_pointer_size);
44 end = dbg->read(ds->ds_data, off, cu->cu_pointer_size);
51 *total_len += 2 * cu->cu_pointer_size;
60 if ((cu->cu_pointer_size == 4 && start == ~0U) ||
61 (cu->cu_pointer_size == 8 && start == ~0ULL))
77 ds->ds_data + *off, len, cu->cu_pointer_size,
78 cu->cu_length_size == 4 ? 4 : 8, cu->cu_version,
94 _dwarf_loclist_find(Dwarf_Debug dbg, Dwarf_CU cu, uint64_ argument
[all...]
H A Dlibdwarf_die.c52 _dwarf_die_add(Dwarf_CU cu, uint64_t offset, uint64_t abnum, Dwarf_Abbrev ab, argument
59 assert(cu != NULL);
62 dbg = cu->cu_dbg;
70 die->die_cu = cu;
71 die->die_dbg = cu->cu_dbg;
84 Dwarf_CU cu; local
89 cu = die->die_cu;
91 ds = cu->cu_is_info ? dbg->dbg_info_sec : dbg->dbg_types_sec;
93 ret = _dwarf_die_parse(dbg, ds, cu, cu
103 _dwarf_die_parse(Dwarf_Debug dbg, Dwarf_Section *ds, Dwarf_CU cu, int dwarf_size, uint64_t offset, uint64_t next_offset, Dwarf_Die *ret_die, int search_sibling, Dwarf_Error *error) argument
276 _dwarf_die_gen_recursive(Dwarf_P_Debug dbg, Dwarf_CU cu, Dwarf_Rel_Section drs, Dwarf_P_Die die, int pass2, Dwarf_Error *error) argument
397 _dwarf_die_gen(Dwarf_P_Debug dbg, Dwarf_CU cu, Dwarf_Rel_Section drs, Dwarf_Error *error) argument
[all...]
H A Ddwarf_arange.c96 Dwarf_CU cu; local
106 cu = as->as_cu;
107 assert(cu != NULL);
110 DWARF_SET_ERROR(cu->cu_dbg, error, DW_DLE_ARGUMENT);
114 *ret_offset = cu->cu_1st_offset;
147 Dwarf_CU cu; local
157 cu = as->as_cu;
158 assert(cu != NULL);
162 DWARF_SET_ERROR(cu->cu_dbg, error, DW_DLE_ARGUMENT);
168 *cu_die_offset = cu
[all...]
H A Dlibdwarf_ranges.c32 _dwarf_ranges_parse(Dwarf_Debug dbg, Dwarf_CU cu, Dwarf_Section *ds, argument
41 start = dbg->read(ds->ds_data, &off, cu->cu_pointer_size);
42 end = dbg->read(ds->ds_data, &off, cu->cu_pointer_size);
49 else if ((start == ~0U && cu->cu_pointer_size == 4) ||
50 (start == ~0ULL && cu->cu_pointer_size == 8))
103 _dwarf_ranges_add(Dwarf_Debug dbg, Dwarf_CU cu, uint64_t off, argument
123 ret = _dwarf_ranges_parse(dbg, cu, ds, off, NULL, &cnt);
138 ret = _dwarf_ranges_parse(dbg, cu, ds, off, rl->rl_rgarray,
H A Ddwarf_ranges.c32 _dwarf_get_ranges(Dwarf_Debug dbg, Dwarf_CU cu, Dwarf_Off off, argument
39 assert(cu != NULL);
41 ret = _dwarf_ranges_add(dbg, cu, off, &rl, error);
50 *ret_byte_cnt = cu->cu_pointer_size * rl->rl_rglen * 2;
H A Ddwarf_lineno.c38 Dwarf_CU cu; local
54 cu = die->die_cu;
55 if (cu->cu_lineinfo == NULL) {
60 if (cu->cu_lineinfo == NULL) {
65 li = cu->cu_lineinfo;
100 Dwarf_CU cu; local
116 cu = die->die_cu;
117 if (cu->cu_lineinfo == NULL) {
122 if (cu->cu_lineinfo == NULL) {
127 li = cu
[all...]
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/
H A DDWARFDebugInfoEntry.h44 void BuildAddressRangeTable(const DWARFUnit *cu,
47 void BuildFunctionAddressRangeTable(const DWARFUnit *cu,
51 const DWARFUnit *cu, lldb::offset_t *offset_ptr);
53 bool LookupAddress(const dw_addr_t address, DWARFUnit *cu,
57 size_t GetAttributes(const DWARFUnit *cu,
63 GetAttributeValue(const DWARFUnit *cu, const dw_attr_t attr,
69 const DWARFUnit *cu, const dw_attr_t attr, const char *fail_value,
73 const DWARFUnit *cu, const dw_attr_t attr, uint64_t fail_value,
77 const DWARFUnit *cu, const dw_attr_t attr,
81 const DWARFUnit *cu, cons
[all...]
H A DDWARFBaseDIE.h29 DWARFBaseDIE(DWARFUnit *cu, DWARFDebugInfoEntry *die) argument
30 : m_cu(cu), m_die(die) {}
32 DWARFBaseDIE(const DWARFUnit *cu, DWARFDebugInfoEntry *die) argument
33 : m_cu(const_cast<DWARFUnit *>(cu)), m_die(die) {}
35 DWARFBaseDIE(DWARFUnit *cu, const DWARFDebugInfoEntry *die) argument
36 : m_cu(cu), m_die(const_cast<DWARFDebugInfoEntry *>(die)) {}
38 DWARFBaseDIE(const DWARFUnit *cu, const DWARFDebugInfoEntry *die) argument
39 : m_cu(const_cast<DWARFUnit *>(cu)),
64 void Set(DWARFUnit *cu, DWARFDebugInfoEntry *die) { argument
65 if (cu
[all...]
H A DDWARFDebugInfoEntry.cpp40 const DWARFUnit *cu,
54 const auto *abbrevDecl = GetAbbreviationDeclarationPtr(cu);
56 cu->GetSymbolFileDWARF().GetObjectFile()->GetModule()->ReportError(
73 DWARFFormValue::GetFixedSize(form, cu);
105 form_size = cu->GetAddressByteSize();
108 if (cu->GetVersion() <= 2)
109 form_size = cu->GetAddressByteSize();
227 DWARFUnit *cu, const char *&name, const char *&mangled,
236 const auto *abbrevDecl = GetAbbreviationDeclarationPtr(cu);
238 SymbolFileDWARF &dwarf = cu
39 Extract(const DWARFDataExtractor &data, const DWARFUnit *cu, lldb::offset_t *offset_ptr) argument
226 GetDIENamesAndRanges( DWARFUnit *cu, const char *&name, const char *&mangled, DWARFRangeList &ranges, int &decl_file, int &decl_line, int &decl_column, int &call_file, int &call_line, int &call_column, DWARFExpression *frame_base) const argument
402 Dump(const DWARFUnit *cu, Stream &s, uint32_t recurse_depth) const argument
455 DumpAttribute( const DWARFUnit *cu, const DWARFDataExtractor &data, lldb::offset_t *offset_ptr, Stream &s, dw_attr_t attr, DWARFFormValue &form_value) argument
541 GetAttributes( const DWARFUnit *cu, DWARFAttributes &attributes, uint32_t curr_depth) const argument
600 GetAttributeValue( const DWARFUnit *cu, const dw_attr_t attr, DWARFFormValue &form_value, dw_offset_t *end_attr_offset_ptr, bool check_specification_or_abstract_origin) const argument
657 GetAttributeValueAsString( const DWARFUnit *cu, const dw_attr_t attr, const char *fail_value, bool check_specification_or_abstract_origin) const argument
670 GetAttributeValueAsUnsigned( const DWARFUnit *cu, const dw_attr_t attr, uint64_t fail_value, bool check_specification_or_abstract_origin) const argument
684 GetAttributeValueAsReference( const DWARFUnit *cu, const dw_attr_t attr, bool check_specification_or_abstract_origin) const argument
694 GetAttributeValueAsAddress( const DWARFUnit *cu, const dw_attr_t attr, uint64_t fail_value, bool check_specification_or_abstract_origin) const argument
710 GetAttributeHighPC( const DWARFUnit *cu, dw_addr_t lo_pc, uint64_t fail_value, bool check_specification_or_abstract_origin) const argument
733 GetAttributeAddressRange( const DWARFUnit *cu, dw_addr_t &lo_pc, dw_addr_t &hi_pc, uint64_t fail_value, bool check_specification_or_abstract_origin) const argument
749 GetAttributeAddressRanges( DWARFUnit *cu, DWARFRangeList &ranges, bool check_hi_lo_pc, bool check_specification_or_abstract_origin) const argument
782 GetMangledName(const DWARFUnit *cu, bool substitute_name_allowed) const argument
823 BuildAddressRangeTable( const DWARFUnit *cu, DWARFDebugAranges *debug_aranges) const argument
850 BuildFunctionAddressRangeTable( const DWARFUnit *cu, DWARFDebugAranges *debug_aranges) const argument
871 GetDWARFDeclContext( DWARFUnit *cu, DWARFDeclContext &dwarf_decl_ctx) const argument
894 GetParentDeclContextDIE( DWARFUnit *cu, const DWARFAttributes &attributes) const argument
936 GetQualifiedName(DWARFUnit *cu, std::string &storage) const argument
944 GetQualifiedName(DWARFUnit *cu, const DWARFAttributes &attributes, std::string &storage) const argument
996 LookupAddress(const dw_addr_t address, DWARFUnit *cu, DWARFDebugInfoEntry **function_die, DWARFDebugInfoEntry **block_die) argument
[all...]
H A DDWARFAttribute.cpp28 void DWARFAttributes::Append(const DWARFUnit *cu, dw_offset_t attr_die_offset, argument
31 cu, attr_die_offset, {attr, form, DWARFFormValue::ValueType()}};
37 const DWARFUnit *cu = CompileUnitAtIndex(i); local
38 form_value.SetUnit(cu);
41 return form_value.ExtractValue(cu->GetData(), &offset);
H A DDebugNamesDWARFIndex.cpp40 for (uint32_t cu = 0; cu < ni.getCUCount(); ++cu)
41 result.insert(ni.getCUOffset(cu));
52 DWARFUnit *cu = m_debug_info.GetUnitAtOffset(DIERef::Section::DebugInfo, *cu_offset);
53 if (!cu)
59 cu->ExtractUnitDIEIfNeeded();
60 cu = &cu->GetNonSkeletonUnit();
63 return DIERef(cu
121 GetGlobalVariables(const DWARFUnit &cu, DIEArray &offsets) argument
162 DWARFUnit *cu = m_debug_info.GetUnit(*ref); local
[all...]
H A DDWARFDebugInfo.cpp59 DWARFUnit *cu = GetUnitAtIndex(idx); local
61 dw_offset_t offset = cu->GetOffset();
63 cu->BuildAddressRangeTable(m_cu_aranges_up.get());
113 DWARFUnit *cu = nullptr; local
115 cu = m_units[idx].get();
116 return cu;
181 DWARFUnit *cu = GetUnitContainingDIEOffset(section, die_offset); local
182 if (cu)
183 return cu->GetDIE(die_offset);
192 DWARFUnit *cu local
[all...]
H A DDWARFAttribute.h55 void Append(const DWARFUnit *cu, dw_offset_t attr_die_offset,
58 return m_infos[i].cu;
76 const DWARFUnit *cu; // Keep the compile unit with each attribute in member in struct:DWARFAttributes::AttributeValue
H A DSymbolFileDWARFDwo.cpp78 DWARFCompileUnit *cu = nullptr;
82 if (cu)
84 cu = candidate;
87 return cu;
/freebsd-11-stable/lib/libc/rpc/
H A Dclnt_dg.c169 struct cu_data *cu = NULL; /* private data */ local
241 cu = mem_alloc(sizeof (*cu) + sendsz + recvsz);
242 if (cu == NULL)
244 (void) memcpy(&cu->cu_raddr, svcaddr->buf, (size_t)svcaddr->len);
245 cu->cu_rlen = svcaddr->len;
246 cu->cu_outbuf = &cu->cu_inbuf[recvsz];
248 cu->cu_wait.tv_sec = 15; /* heuristically chosen */
249 cu
319 struct cu_data *cu = (struct cu_data *)cl->cl_private; local
612 struct cu_data *cu = (struct cu_data *)cl->cl_private; local
620 struct cu_data *cu = (struct cu_data *)cl->cl_private; local
648 struct cu_data *cu = (struct cu_data *)cl->cl_private; local
791 struct cu_data *cu = (struct cu_data *)cl->cl_private; local
[all...]
/freebsd-11-stable/sys/rpc/
H A Dclnt_dg.c188 struct cu_data *cu = NULL; /* private data */ local
227 cu = mem_alloc(sizeof (*cu));
228 cu->cu_threads = 0;
229 cu->cu_closing = FALSE;
230 cu->cu_closed = FALSE;
231 (void) memcpy(&cu->cu_raddr, svcaddr, (size_t)svcaddr->sa_len);
232 cu->cu_rlen = svcaddr->sa_len;
234 cu->cu_wait.tv_sec = 3; /* heuristically chosen */
235 cu
336 struct cu_data *cu = (struct cu_data *)cl->cl_private; local
792 struct cu_data *cu = (struct cu_data *)cl->cl_private; local
818 struct cu_data *cu = (struct cu_data *)cl->cl_private; local
951 struct cu_data *cu = (struct cu_data *)cl->cl_private; local
997 struct cu_data *cu = (struct cu_data *)cl->cl_private; local
[all...]
/freebsd-11-stable/contrib/mdocml/
H A Dpreconv.c32 const unsigned char *cu; local
36 cu = (const unsigned char *)ib->buf + *ii;
37 assert(*cu & 0x80);
43 while (nby < 5 && *cu & (1 << (7 - nby)))
48 accum = *cu & 0x1f;
53 accum = *cu & 0x0f;
56 accum = *cu & 0x07;
64 cu++;
67 if ((accum == 0x00 && ! (*cu & 0x20)) || /* Use 2-byte. */
68 (accum == 0x0d && *cu
[all...]
/freebsd-11-stable/contrib/gdb/gdb/
H A Ddwarf2read.c650 struct dwarf2_cu *cu,
655 struct dwarf2_cu *cu,
660 struct dwarf2_cu *cu,
666 struct dwarf2_cu *cu);
674 static void dwarf2_read_abbrevs (bfd *abfd, struct dwarf2_cu *cu);
728 static int die_is_declaration (struct die_info *, struct dwarf2_cu *cu);
737 bfd *abfd, struct dwarf2_cu *cu));
775 static void read_subrange_type (struct die_info *die, struct dwarf2_cu *cu);
807 static char *determine_class_name (struct die_info *die, struct dwarf2_cu *cu);
930 struct dwarf2_cu *cu);
1210 struct dwarf2_cu cu; local
1336 scan_partial_symbols(char *info_ptr, CORE_ADDR *lowpc, CORE_ADDR *highpc, struct dwarf2_cu *cu, const char *namespace) argument
1447 add_partial_symbol(struct partial_die_info *pdi, struct dwarf2_cu *cu, const char *namespace) argument
1622 add_partial_namespace(struct partial_die_info *pdi, char *info_ptr, CORE_ADDR *lowpc, CORE_ADDR *highpc, struct dwarf2_cu *cu, const char *namespace) argument
1661 add_partial_structure(struct partial_die_info *struct_pdi, char *info_ptr, struct dwarf2_cu *cu, const char *namespace) argument
1733 add_partial_enumeration(struct partial_die_info *enum_pdi, char *info_ptr, struct dwarf2_cu *cu, const char *namespace) argument
1761 locate_pdi_sibling(struct partial_die_info *orig_pdi, char *info_ptr, bfd *abfd, struct dwarf2_cu *cu) argument
1825 struct dwarf2_cu cu; local
1932 process_die(struct die_info *die, struct dwarf2_cu *cu) argument
2029 initialize_cu_func_list(struct dwarf2_cu *cu) argument
2035 read_file_scope(struct die_info *die, struct dwarf2_cu *cu) argument
2091 set_cu_language (DW_UNSND (attr), cu); local
2153 add_to_cu_func_list(const char *name, CORE_ADDR lowpc, CORE_ADDR highpc, struct dwarf2_cu *cu) argument
2175 read_func_scope(struct die_info *die, struct dwarf2_cu *cu) argument
2300 read_lexical_block_scope(struct die_info *die, struct dwarf2_cu *cu) argument
2344 dwarf2_get_pc_bounds(struct die_info *die, CORE_ADDR *lowpc, CORE_ADDR *highpc, struct dwarf2_cu *cu) argument
2504 get_scope_pc_bounds(struct die_info *die, CORE_ADDR *lowpc, CORE_ADDR *highpc, struct dwarf2_cu *cu) argument
2564 dwarf2_add_field(struct field_info *fip, struct die_info *die, struct dwarf2_cu *cu) argument
2734 dwarf2_attach_fields_to_type(struct field_info *fip, struct type *type, struct dwarf2_cu *cu) argument
2821 dwarf2_add_member_fn(struct field_info *fip, struct die_info *die, struct type *type, struct dwarf2_cu *cu) argument
2961 dwarf2_attach_fn_fields_to_type(struct field_info *fip, struct type *type, struct dwarf2_cu *cu) argument
3009 read_structure_type(struct die_info *die, struct dwarf2_cu *cu) argument
3174 process_structure_scope(struct die_info *die, struct dwarf2_cu *cu) argument
3214 read_enumeration_type(struct die_info *die, struct dwarf2_cu *cu) argument
3264 determine_class_name(struct die_info *die, struct dwarf2_cu *cu) argument
3322 process_enumeration_scope(struct die_info *die, struct dwarf2_cu *cu) argument
3394 read_array_type(struct die_info *die, struct dwarf2_cu *cu) argument
3474 read_common_block(struct die_info *die, struct dwarf2_cu *cu) argument
3520 read_namespace(struct die_info *die, struct dwarf2_cu *cu) argument
3592 namespace_name(struct die_info *die, int *is_anonymous, struct dwarf2_cu *cu) argument
3621 read_tag_pointer_type(struct die_info *die, struct dwarf2_cu *cu) argument
3678 read_tag_ptr_to_member_type(struct die_info *die, struct dwarf2_cu *cu) argument
3702 read_tag_reference_type(struct die_info *die, struct dwarf2_cu *cu) argument
3727 read_tag_unspecified_type(struct die_info *die, struct dwarf2_cu *cu) argument
3748 read_tag_const_type(struct die_info *die, struct dwarf2_cu *cu) argument
3763 read_tag_volatile_type(struct die_info *die, struct dwarf2_cu *cu) argument
3778 read_tag_restrict_type(struct die_info *die, struct dwarf2_cu *cu) argument
3798 read_tag_string_type(struct die_info *die, struct dwarf2_cu *cu) argument
3856 read_subroutine_type(struct die_info *die, struct dwarf2_cu *cu) argument
3926 read_typedef(struct die_info *die, struct dwarf2_cu *cu) argument
3948 read_base_type(struct die_info *die, struct dwarf2_cu *cu) argument
4033 read_subrange_type(struct die_info *die, struct dwarf2_cu *cu) argument
4105 read_comp_unit(char *info_ptr, bfd *abfd, struct dwarf2_cu *cu) argument
4121 read_die_and_children(char *info_ptr, bfd *abfd, struct dwarf2_cu *cu, char **new_info_ptr, struct die_info *parent) argument
4154 read_die_and_siblings(char *info_ptr, bfd *abfd, struct dwarf2_cu *cu, char **new_info_ptr, struct die_info *parent) argument
4256 dwarf2_read_abbrevs(bfd *abfd, struct dwarf2_cu *cu) argument
4356 dwarf2_lookup_abbrev(unsigned int number, struct dwarf2_cu *cu) argument
4378 read_partial_die(struct partial_die_info *part_die, bfd *abfd, char *info_ptr, struct dwarf2_cu *cu) argument
4521 read_full_die(struct die_info **diep, bfd *abfd, char *info_ptr, struct dwarf2_cu *cu, int *has_children) argument
4573 read_attribute_value(struct attribute *attr, unsigned form, bfd *abfd, char *info_ptr, struct dwarf2_cu *cu) argument
4697 read_attribute(struct attribute *attr, struct attr_abbrev *abbrev, bfd *abfd, char *info_ptr, struct dwarf2_cu *cu) argument
4749 read_address(bfd *abfd, char *buf, struct dwarf2_cu *cu, int *bytes_read) argument
5024 set_cu_language(unsigned int lang, struct dwarf2_cu *cu) argument
5062 dwarf2_attr(struct die_info *die, unsigned int name, struct dwarf2_cu *cu) argument
5090 die_is_declaration(struct die_info *die, struct dwarf2_cu *cu) argument
5100 die_specification(struct die_info *die, struct dwarf2_cu *cu) argument
5195 dwarf_decode_line_header(unsigned int offset, bfd *abfd, struct dwarf2_cu *cu) argument
5301 check_cu_functions(CORE_ADDR address, struct dwarf2_cu *cu) argument
5344 dwarf_decode_lines(struct line_header *lh, char *comp_dir, bfd *abfd, struct dwarf2_cu *cu) argument
5559 var_decode_location(struct attribute *attr, struct symbol *sym, struct dwarf2_cu *cu) argument
5621 new_symbol(struct die_info *die, struct type *type, struct dwarf2_cu *cu) argument
5883 dwarf2_const_value(struct attribute *attr, struct symbol *sym, struct dwarf2_cu *cu) argument
5986 die_type(struct die_info *die, struct dwarf2_cu *cu) argument
6024 die_containing_type(struct die_info *die, struct dwarf2_cu *cu) argument
6073 tag_type_to_type(struct die_info *die, struct dwarf2_cu *cu) argument
6093 read_type_die(struct die_info *die, struct dwarf2_cu *cu) argument
6169 determine_prefix(struct die_info *die, struct dwarf2_cu *cu) argument
6254 dwarf_base_type(int encoding, int size, struct dwarf2_cu *cu) argument
6375 dwarf2_linkage_name(struct die_info *die, struct dwarf2_cu *cu) argument
6391 dwarf2_name(struct die_info *die, struct dwarf2_cu *cu) argument
6405 dwarf2_extension(struct die_info *die, struct dwarf2_cu *cu) argument
7335 dwarf2_get_ref_die_offset(struct attribute *attr, struct dwarf2_cu *cu) argument
7401 dwarf2_fundamental_type(struct objfile *objfile, int typeid, struct dwarf2_cu *cu) argument
7448 decode_locdesc(struct dwarf_block *blk, struct dwarf2_cu *cu) argument
7930 dwarf_decode_macros(struct line_header *lh, unsigned int offset, char *comp_dir, bfd *abfd, struct dwarf2_cu *cu) argument
8078 dwarf2_symbol_mark_computed(struct attribute *attr, struct symbol *sym, struct dwarf2_cu *cu) argument
[all...]
/freebsd-11-stable/usr.bin/tip/tip/
H A DMakefile35 LINKS= ${BINDIR}/tip ${BINDIR}/cu
36 MAN= tip.1 cu.1
41 SRCS= acu.c acutab.c cmds.c cmdtab.c cu.c hunt.c log.c partab.c \
53 # is no cu(1) with the schg-bit set.
55 .if exists(${DESTDIR}${BINDIR}/cu)
56 -chflags noschg ${DESTDIR}${BINDIR}/cu
/freebsd-11-stable/contrib/llvm-project/lldb/source/Core/
H A DFileLineResolver.cpp37 CompileUnit *cu = context.comp_unit; local
39 if (m_inlines || m_file_spec.Compare(cu->GetPrimaryFile(), m_file_spec,
43 cu->GetSupportFiles().FindFileIndex(start_file_idx, m_file_spec, false);
45 LineTable *line_table = cu->GetLineTable();
55 file_idx = cu->GetSupportFiles().FindFileIndex(file_idx + 1,
/freebsd-11-stable/sys/netinet/libalias/
H A Dalias_cuseeme.c181 struct cu_header *cu; local
184 cu = udp_next(ud);
185 if (cu->addr)
186 cu->addr = (u_int32_t) GetAliasAddress(lnk).s_addr;
203 struct cu_header *cu; local
212 cu = udp_next(ud);
213 oc = (struct oc_header *)(cu + 1);
218 if (cu->dest_addr)
219 cu->dest_addr = (u_int32_t) original_addr.s_addr;
220 if (ntohs(cu
[all...]

Completed in 167 milliseconds

1234