| /src/external/gpl2/xcvs/dist/diff/ |
| dir.c | 54 size_t data_alloc, data_used; local 70 data_alloc = max (1, (size_t) dir->stat.st_size); 72 dirdata->data = data = xmalloc (data_alloc); 90 while (data_alloc < data_used + d_size) 91 dirdata->data = data = xrealloc (data, data_alloc *= 2);
|
| /src/external/gpl2/diffutils/dist/src/ |
| dir.c | 69 size_t data_alloc, data_used; local 85 data_alloc = 512; 87 dirdata->data = data = xmalloc (data_alloc); 105 while (data_alloc < data_used + d_size) 107 if (PTRDIFF_MAX / 2 <= data_alloc) 109 dirdata->data = data = xrealloc (data, data_alloc *= 2);
|
| /src/external/lgpl3/gmp/dist/demos/expr/ |
| expr-impl.h | 104 int data_alloc; member in struct:mpexpr_parse_t
|
| expr.c | 89 if (p->data_top + 1 >= p->data_alloc) \ 93 TRACE (printf ("grow stack from %d\n", p->data_alloc)); \ 94 REALLOC (p->data_stack, p->data_alloc, 20, union mpX_t); \ 108 ASSERT (p->data_top < p->data_alloc); \ 397 p->data_alloc = 20; 398 p->data_stack = ALLOCATE_FUNC_TYPE (p->data_alloc, union mpX_t); 830 FREE_FUNC_TYPE (p->data_stack, p->data_alloc, union mpX_t);
|
| /src/external/gpl3/gcc/dist/gcc/ |
| hash-table.h | 77 - A static member function named 'data_alloc'. This function 264 static Type *data_alloc (size_t count); 273 xcallocator <Type>::data_alloc (size_t count) function in class:xcallocator 765 nentries = Allocator <value_type> ::data_alloc (n);
|
| /src/external/gpl3/gcc.old/dist/gcc/ |
| hash-table.h | 77 - A static member function named 'data_alloc'. This function 264 static Type *data_alloc (size_t count); 273 xcallocator <Type>::data_alloc (size_t count) function in class:xcallocator 711 nentries = Allocator <value_type> ::data_alloc (n);
|