OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:buffer_capacity
(Results
1 - 6
of
6
) sorted by null
/external/webkit/Source/JavaScriptCore/API/tests/
minidom.c
103
size_t
buffer_capacity
= 1024;
local
104
buffer = (char*)malloc(
buffer_capacity
);
113
buffer_size += fread(buffer + buffer_size, 1,
buffer_capacity
- buffer_size, f);
114
if (buffer_size ==
buffer_capacity
) { /* guarantees space for trailing '\0' */
115
buffer_capacity
*= 2;
116
buffer = (char*)realloc(buffer,
buffer_capacity
);
120
ASSERT(buffer_size <
buffer_capacity
);
testapi.c
1446
size_t
buffer_capacity
= 1024;
local
[
all
...]
/external/qemu/
buffered_file.c
36
size_t
buffer_capacity
;
member in struct:QEMUFileBuffered
51
if (size > (s->
buffer_capacity
- s->buffer_size)) {
55
s->
buffer_capacity
, size + 1024);
57
s->
buffer_capacity
+= size + 1024;
59
tmp = qemu_realloc(s->buffer, s->
buffer_capacity
);
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/
term.h
205
#define
buffer_capacity
CUR Numbers[16]
macro
[
all
...]
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/
term.h
205
#define
buffer_capacity
CUR Numbers[16]
macro
[
all
...]
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/
term.h
205
#define
buffer_capacity
CUR Numbers[16]
macro
[
all
...]
Completed in 441 milliseconds