OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:area_size
(Results
1 - 2
of
2
) sorted by null
/external/bluetooth/glib/tests/
slice-color.c
110
guint64 block_size = 512,
area_size
= 1024 * 1024, n_blocks, repeats = 1000000;
local
120
area_size
= parse_memsize (argv[2]);
129
n_blocks =
area_size
/ 3 / ALIGN (block_size, sizeof (gsize) * 2);
132
if (!block_size || !n_blocks || block_size >=
area_size
)
134
g_printerr ("Invalid arguments: block-size=%llu memory-size=%llu\n", block_size,
area_size
);
memchunks.c
56
gulong
area_size
,
95
* the mem chunk "
area_size
". ANSI says that it
109
gulong
area_size
; /* the size of a memory area */
member in struct:_GMemChunk
142
gulong
area_size
,
149
g_return_val_if_fail (
area_size
>= atom_size, NULL);
153
area_size
= (
area_size
+ atom_size - 1) / atom_size;
154
area_size
*= atom_size;
174
rarea_size =
area_size
+ sizeof (GMemArea) - MEM_AREA_SIZE;
176
mem_chunk->
area_size
= rarea_size - (sizeof (GMemArea) - MEM_AREA_SIZE)
[
all
...]
Completed in 21 milliseconds