OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:dirs_allocated
(Results
1 - 4
of
4
) sorted by relevancy
/src/external/gpl3/gdb/dist/gnulib/import/
fchdir.c
55
static size_t
dirs_allocated
;
variable
63
if (fd <
dirs_allocated
)
70
new_allocated = 2 *
dirs_allocated
+ 1;
79
memset (new_dirs +
dirs_allocated
, 0,
80
(new_allocated -
dirs_allocated
) * sizeof *dirs);
82
dirs_allocated
= new_allocated;
116
if (fd >= 0 && fd <
dirs_allocated
)
158
if (oldfd <
dirs_allocated
&& dirs[oldfd].name)
170
else if (newfd <
dirs_allocated
)
184
if (0 <= fd && fd <
dirs_allocated
&& dirs[fd].name != NULL
[
all
...]
/src/external/gpl3/gdb.old/dist/gnulib/import/
fchdir.c
55
static size_t
dirs_allocated
;
variable
63
if (fd <
dirs_allocated
)
70
new_allocated = 2 *
dirs_allocated
+ 1;
79
memset (new_dirs +
dirs_allocated
, 0,
80
(new_allocated -
dirs_allocated
) * sizeof *dirs);
82
dirs_allocated
= new_allocated;
116
if (fd >= 0 && fd <
dirs_allocated
)
158
if (oldfd <
dirs_allocated
&& dirs[oldfd].name)
170
else if (newfd <
dirs_allocated
)
184
if (0 <= fd && fd <
dirs_allocated
&& dirs[fd].name != NULL
[
all
...]
/src/external/gpl3/binutils/dist/gas/
dwarf2dbg.c
226
static unsigned int
dirs_allocated
;
variable
673
if (d >=
dirs_allocated
)
675
unsigned int old =
dirs_allocated
;
677
dirs_allocated
= d + DIR_TABLE_INCREMENT;
678
dirs = XRESIZEVEC (char *, dirs,
dirs_allocated
);
679
memset (dirs + old, 0, (
dirs_allocated
- old) * sizeof (char *));
889
dirs_allocated
= files[num].dir + DIR_TABLE_INCREMENT;
890
dirs = XCNEWVEC (char *,
dirs_allocated
);
919
dirs_allocated
= files[num].dir + DIR_TABLE_INCREMENT;
920
dirs = XCNEWVEC (char *,
dirs_allocated
);
[
all
...]
/src/external/gpl3/binutils.old/dist/gas/
dwarf2dbg.c
226
static unsigned int
dirs_allocated
;
variable
673
if (d >=
dirs_allocated
)
675
unsigned int old =
dirs_allocated
;
677
dirs_allocated
= d + DIR_TABLE_INCREMENT;
678
dirs = XRESIZEVEC (char *, dirs,
dirs_allocated
);
679
memset (dirs + old, 0, (
dirs_allocated
- old) * sizeof (char *));
889
dirs_allocated
= files[num].dir + DIR_TABLE_INCREMENT;
890
dirs = XCNEWVEC (char *,
dirs_allocated
);
919
dirs_allocated
= files[num].dir + DIR_TABLE_INCREMENT;
920
dirs = XCNEWVEC (char *,
dirs_allocated
);
[
all
...]
Completed in 42 milliseconds
Indexes created Tue Mar 03 05:31:39 UTC 2026