OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:type_vector_length
(Results
1 - 4
of
4
) sorted by relevancy
/src/external/gpl3/gdb/dist/gdb/
coffread.c
149
static int
type_vector_length
;
variable
416
if (index >=
type_vector_length
)
418
int old_vector_length =
type_vector_length
;
420
type_vector_length
*= 2;
421
if (index /* is still */ >=
type_vector_length
)
422
type_vector_length
= index * 2;
426
type_vector_length
* sizeof (struct type *));
428
(
type_vector_length
- old_vector_length) * sizeof (struct type *));
901
type_vector_length
= INITIAL_TYPE_VECTOR_LENGTH;
902
type_vector = XCNEWVEC (struct type *,
type_vector_length
);
[
all
...]
stabsread.c
276
static int
type_vector_length
;
variable
330
if (index >=
type_vector_length
)
332
old_len =
type_vector_length
;
335
type_vector_length
= INITIAL_TYPE_VECTOR_LENGTH;
336
type_vector = XNEWVEC (struct type *,
type_vector_length
);
338
while (index >=
type_vector_length
)
340
type_vector_length
*= 2;
344
(
type_vector_length
* sizeof (struct type *)));
346
(
type_vector_length
- old_len) * sizeof (struct type *));
7139
type_vector_length
= 0
[
all
...]
/src/external/gpl3/gdb.old/dist/gdb/
coffread.c
148
static int
type_vector_length
;
variable
323
if (index >=
type_vector_length
)
325
int old_vector_length =
type_vector_length
;
327
type_vector_length
*= 2;
328
if (index /* is still */ >=
type_vector_length
)
329
type_vector_length
= index * 2;
333
type_vector_length
* sizeof (struct type *));
335
(
type_vector_length
- old_vector_length) * sizeof (struct type *));
807
type_vector_length
= INITIAL_TYPE_VECTOR_LENGTH;
808
type_vector = XCNEWVEC (struct type *,
type_vector_length
);
[
all
...]
stabsread.c
225
static int
type_vector_length
;
variable
279
if (index >=
type_vector_length
)
281
old_len =
type_vector_length
;
284
type_vector_length
= INITIAL_TYPE_VECTOR_LENGTH;
285
type_vector = XNEWVEC (struct type *,
type_vector_length
);
287
while (index >=
type_vector_length
)
289
type_vector_length
*= 2;
293
(
type_vector_length
* sizeof (struct type *)));
295
(
type_vector_length
- old_len) * sizeof (struct type *));
4654
type_vector_length
= 0
[
all
...]
Completed in 31 milliseconds
Indexes created Mon Mar 02 05:31:46 UTC 2026