HomeSort by relevance Sort by last modified time
    Searched defs:cu (Results 1 - 25 of 49) sorted by null

1 2

  /external/elfutils/libdwfl/
dwfl_cumodule.c 1 /* Find the module for a CU DIE previously returned by libdwfl.
55 struct dwfl_cu *cu = (struct dwfl_cu *) cudie; local
56 return cu->mod;
dwfl_linecu.c 60 struct dwfl_cu *cu = dwfl_linecu_inline (line); local
61 return &cu->die;
dwfl_getsrclines.c 1 /* Fetch source line information for CU.
55 struct dwfl_cu *cu = (struct dwfl_cu *) cudie; local
57 if (cu->lines == NULL)
59 Dwfl_Error error = __libdwfl_cu_getsrclines (cu);
67 *nlines = cu->die.cu->lines->nlines;
dwfl_line_comp_dir.c 59 struct dwfl_cu *cu = dwfl_linecu (line); local
61 return INTUSE(dwarf_formstring) (INTUSE(dwarf_attr) (&cu->die,
dwfl_lineinfo.c 60 struct dwfl_cu *cu = dwfl_linecu (line); local
61 const Dwarf_Line *info = &cu->die.cu->lines->info[line->idx];
64 *addr = info->addr + cu->mod->debug.bias;
dwfl_module_addrdie.c 1 /* Fetch the CU DIE for a PC address in a given module.
58 struct dwfl_cu *cu; local
59 Dwfl_Error error = __libdwfl_addrcu (mod, addr, &cu);
61 return &cu->die;
dwfl_module_nextcu.c 58 struct dwfl_cu *cu; local
59 Dwfl_Error error = __libdwfl_nextcu (mod, (struct dwfl_cu *) lastcu, &cu);
61 return &cu->die; /* Same as a cast, so ok for null too. */
dwfl_nextcu.c 58 struct dwfl_cu *cu = (struct dwfl_cu *) lastcu; local
61 if (cu == NULL)
67 mod = cu->mod;
72 error = __libdwfl_nextcu (mod, cu, &cu);
76 if (cu != NULL)
79 return &cu->die;
dwfl_onesrcline.c 1 /* Return one of the sources lines of a CU.
55 struct dwfl_cu *cu = (struct dwfl_cu *) cudie; local
60 if (cu->lines == NULL)
62 Dwfl_Error error = __libdwfl_cu_getsrclines (cu);
70 if (idx >= cu->die.cu->lines->nlines)
76 return &cu->lines->idx[idx];
dwfl_module_getsrc.c 60 struct dwfl_cu *cu; local
61 Dwfl_Error error = __libdwfl_addrcu (mod, addr, &cu);
63 error = __libdwfl_cu_getsrclines (cu);
70 size_t l = 0, u = cu->die.cu->lines->nlines;
74 if (addr < cu->die.cu->lines->info[idx].addr)
76 else if (addr > cu->die.cu->lines->info[idx].addr)
79 return &cu->lines->idx[idx]
    [all...]
dwfl_module_getsrc_file.c 75 struct dwfl_cu *cu = NULL; local
77 while ((error = __libdwfl_nextcu (mod, cu, &cu)) == DWFL_E_NOERROR
78 && cu != NULL
79 && (error = __libdwfl_cu_getsrclines (cu)) == DWFL_E_NOERROR)
87 return &dwfl_linecu (line)->die.cu->lines->info[line->idx];
99 for (size_t cnt = 0; cnt < cu->die.cu->lines->nlines; ++cnt)
101 Dwarf_Line *line = &cu->die.cu->lines->info[cnt]
    [all...]
cu.c 84 to the same CU. We don't care about the little gaps inside the
85 module, we'll consider them part of the surrounding CU anyway.
87 pointing to one CU. */
95 aranges[naranges].cu = NULL;
153 struct dwfl_cu *cu = arg; local
154 if (cu == (void *) -1l)
157 assert (cu->mod->lazycu == 0);
173 cudie_offset (const struct dwfl_cu *cu)
175 return cu->die.cu->start + 3 * cu->die.cu->offset_size - 4 + 3
212 struct dwfl_cu *cu = malloc (sizeof *cu); local
    [all...]
  /external/elfutils/libdw/
dwarf_getsrcfiles.c 1 /* Return source file information of CU.
70 struct Dwarf_CU *const cu = cudie->cu; local
71 if (cu->lines == NULL)
80 else if (cu->files != (void *) -1l)
86 assert (cu->files != NULL && cu->files != (void *) -1l);
87 *files = cu->files;
89 *nfiles = cu->files->nfiles;
dwarf_decl_file.c 77 /* Get the array of source files for the CU. */
78 struct Dwarf_CU *cu = die->cu; local
79 if (cu->lines == NULL)
86 (void) INTUSE(dwarf_getsrclines) (&CUDIE (cu), &lines, &nlines);
87 assert (cu->lines != NULL);
90 if (cu->lines == (void *) -1l)
98 assert (cu->files != NULL && cu->files != (void *) -1l);
100 if (idx >= cu->files->nfiles
    [all...]
dwarf_getscopes_die.c 89 struct Dwarf_Die_Chain cu = { .die = CUDIE (die->cu), .parent = NULL }; local
91 int result = __libdw_visit_scopes (1, &cu, &scope_visitor, NULL, &info);
dwarf_child.c 67 Dwarf *dbg = die->cu->dbg;
79 abbrevp = __libdw_findabbrev (die->cu, abbrev_code);
128 size_t len = __libdw_form_val_len (dbg, die->cu, attr_form, readp);
188 struct Dwarf_CU *cu = die->cu; local
197 /* Same CU as the parent. */
198 result->cu = cu;
dwarf_func_inline.c 119 struct Dwarf_Die_Chain cu = { .die = CUDIE (func->cu), .parent = NULL }; local
120 return __libdw_visit_scopes (0, &cu, &scope_visitor, NULL, &v);
dwarf_getscopes.c 210 struct Dwarf_Die_Chain cu = { .parent = NULL, .die = *cudie }; local
213 int result = __libdw_visit_scopes (0, &cu, &pc_match, &pc_record, &a);
216 result = __libdw_visit_scopes (0, &cu, &origin_match, NULL, &a);
  /external/elfutils/tests/
find-prologues.c 44 Dwarf_Die *cu; member in struct:args
101 struct args a = { .dwfl = NULL, .cu = NULL };
110 while ((a.cu = dwfl_nextcu (a.dwfl, a.cu, &a.dwbias)) != NULL)
111 dwarf_getfuncs (a.cu, &handle_function, &a, 0);
funcretval.c 44 Dwarf_Die *cu; member in struct:args
66 printf ("(%s) %s: ", dwfl_module_info (dwfl_cumodule (a->cu), NULL,
72 int nlocops = dwfl_module_return_value_location (dwfl_cumodule (a->cu),
99 struct args a = { .dwfl = NULL, .cu = NULL };
108 while ((a.cu = dwfl_nextcu (a.dwfl, a.cu, &a.dwbias)) != NULL)
109 dwarf_getfuncs (a.cu, &handle_function, &a, 0);
funcscopes.c 107 Dwarf_Die *cu; member in struct:args
137 const char *modname = dwfl_module_info (dwfl_cumodule (a->cu), NULL,
187 struct args a = { .dwfl = NULL, .cu = NULL };
196 while ((a.cu = dwfl_nextcu (a.dwfl, a.cu, &a.dwbias)) != NULL)
197 dwarf_getfuncs (a.cu, &handle_function, &a, 0);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/refactoring/core/
FixImportsJob.java 93 final ICompilationUnit cu = (ICompilationUnit) element; local
94 IPackageFragment packageFragment = (IPackageFragment) cu
99 CompilationUnit astRoot = SharedASTProvider.getAST(cu,
102 .getCodeGenerationSettings(cu.getJavaProject());
114 final OrganizeImportsOperation op = new OrganizeImportsOperation(cu,
115 astRoot, settings.importIgnoreLowercase, !cu.isWorkingCopy(),
129 IEditorPart openEditor = EditorUtility.isOpenInEditor(cu);
  /external/llvm/lib/DebugInfo/
DWARFContext.cpp 38 DWARFCompileUnit *cu = getCompileUnitAtIndex(i); local
39 savedAddressByteSize = cu->getAddressByteSize();
41 cu->getCompileUnitDIE()->getAttributeValueAsUnsigned(cu, DW_AT_stmt_list,
98 DWARFContext::getLineTableForCompileUnit(DWARFCompileUnit *cu) {
103 cu->getCompileUnitDIE()->getAttributeValueAsUnsigned(cu, DW_AT_stmt_list,
114 cu->getAddressByteSize());
152 DWARFCompileUnit *CU = std::lower_bound(CUs.begin(), CUs.end(), Offset,
154 if (CU != CUs.end()
    [all...]
DWARFDebugAranges.cpp 90 DWARFCompileUnit *cu = ctx->getCompileUnitAtIndex(cu_idx); local
91 if (cu)
92 cu->buildAddressRangeTable(this, true);
  /external/openssl/crypto/srp/
srp_lib.c 113 unsigned char cu[SHA_DIGEST_LENGTH]; local
132 EVP_DigestFinal_ex(&ctxt, cu, NULL);
135 if (!(u = BN_bin2bn(cu, sizeof(cu), NULL)))

Completed in 1428 milliseconds

1 2