OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:filenames_allocated
(Results
1 - 6
of
6
) sorted by null
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/dbgfmts/codeview/
cv-dbgfmt.h
44
size_t
filenames_allocated
;
member in struct:yasm_dbgfmt_cv
cv-dbgfmt.c
44
dbgfmt_cv->
filenames_allocated
= 32;
47
yasm_xmalloc(sizeof(cv_filename)*dbgfmt_cv->
filenames_allocated
);
48
for (i=0; i<dbgfmt_cv->
filenames_allocated
; i++) {
cv-symline.c
357
if (filenum >= dbgfmt_cv->
filenames_allocated
) {
358
size_t old_allocated = dbgfmt_cv->
filenames_allocated
;
359
dbgfmt_cv->
filenames_allocated
= filenum+32;
361
sizeof(cv_filename)*dbgfmt_cv->
filenames_allocated
);
362
for (i=old_allocated; i<dbgfmt_cv->
filenames_allocated
; i++) {
[
all
...]
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/dbgfmts/dwarf2/
dwarf2-dbgfmt.h
49
unsigned long
filenames_allocated
;
member in struct:yasm_dbgfmt_dwarf2
dwarf2-dbgfmt.c
91
dbgfmt_dwarf2->
filenames_allocated
= 32;
94
yasm_xmalloc(sizeof(dwarf2_filename)*dbgfmt_dwarf2->
filenames_allocated
);
95
for (i=0; i<dbgfmt_dwarf2->
filenames_allocated
; i++) {
dwarf2-line.c
216
if (filenum >= dbgfmt_dwarf2->
filenames_allocated
) {
217
unsigned long old_allocated = dbgfmt_dwarf2->
filenames_allocated
;
218
dbgfmt_dwarf2->
filenames_allocated
= filenum+32;
220
sizeof(dwarf2_filename)*dbgfmt_dwarf2->
filenames_allocated
);
221
for (i=old_allocated; i<dbgfmt_dwarf2->
filenames_allocated
; i++) {
[
all
...]
Completed in 56 milliseconds