HomeSort by relevance Sort by last modified time
    Searched refs:dbgfmt_cv (Results 1 - 2 of 2) sorted by null

  /external/chromium_org/third_party/yasm/source/patched-yasm/modules/dbgfmts/codeview/
cv-dbgfmt.c 39 yasm_dbgfmt_cv *dbgfmt_cv = yasm_xmalloc(sizeof(yasm_dbgfmt_cv)); local
42 dbgfmt_cv->dbgfmt.module = module;
44 dbgfmt_cv->filenames_allocated = 32;
45 dbgfmt_cv->filenames_size = 0;
46 dbgfmt_cv->filenames =
47 yasm_xmalloc(sizeof(cv_filename)*dbgfmt_cv->filenames_allocated);
48 for (i=0; i<dbgfmt_cv->filenames_allocated; i++) {
49 dbgfmt_cv->filenames[i].pathname = NULL;
50 dbgfmt_cv->filenames[i].filename = NULL;
51 dbgfmt_cv->filenames[i].str_off = 0
69 yasm_dbgfmt_cv *dbgfmt_cv = (yasm_dbgfmt_cv *)dbgfmt; local
    [all...]
cv-symline.c 335 cv_dbgfmt_add_file(yasm_dbgfmt_cv *dbgfmt_cv, size_t filenum,
348 for (; filenum<dbgfmt_cv->filenames_size; filenum++) {
349 if (!dbgfmt_cv->filenames[filenum].filename ||
350 strcmp(dbgfmt_cv->filenames[filenum].filename, filename) == 0)
357 if (filenum >= dbgfmt_cv->filenames_allocated) {
358 size_t old_allocated = dbgfmt_cv->filenames_allocated;
359 dbgfmt_cv->filenames_allocated = filenum+32;
360 dbgfmt_cv->filenames = yasm_xrealloc(dbgfmt_cv->filenames,
361 sizeof(cv_filename)*dbgfmt_cv->filenames_allocated)
417 yasm_dbgfmt_cv *dbgfmt_cv; member in struct:cv_line_info
430 yasm_dbgfmt_cv *dbgfmt_cv = info->dbgfmt_cv; local
557 yasm_dbgfmt_cv *dbgfmt_cv = (yasm_dbgfmt_cv *)object->dbgfmt; local
    [all...]

Completed in 301 milliseconds