OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:cache_bytes
(Results
1 - 2
of
2
) sorted by null
/external/squashfs-tools/squashfs-tools/
xattr.c
59
static int
cache_bytes
= 0, cache_size = 0;
variable
287
while(
cache_bytes
>= SQUASHFS_METADATA_SIZE) {
304
cache_bytes
- SQUASHFS_METADATA_SIZE);
305
cache_bytes
-= SQUASHFS_METADATA_SIZE;
311
data_space = cache_size -
cache_bytes
;
322
*disk = ((long long) xattr_bytes << 16) |
cache_bytes
;
323
cache_bytes
+= req_size;
324
return data_cache +
cache_bytes
- req_size;
467
while(
cache_bytes
) {
477
avail_bytes =
cache_bytes
> SQUASHFS_METADATA_SIZE
[
all
...]
mksquashfs.c
137
unsigned int
cache_bytes
= 0, cache_size = 0, inode_count = 0;
variable
382
memcpy(data_cache, sdata_cache,
cache_bytes
= scache_bytes);
452
while(
cache_bytes
>= SQUASHFS_METADATA_SIZE) {
471
cache_bytes
- SQUASHFS_METADATA_SIZE);
472
cache_bytes
-= SQUASHFS_METADATA_SIZE;
475
data_space = (cache_size -
cache_bytes
);
490
cache_bytes
+= req_size;
492
return data_cache +
cache_bytes
- req_size;
593
while(
cache_bytes
) {
603
avail_bytes =
cache_bytes
> SQUASHFS_METADATA_SIZE
[
all
...]
Completed in 31 milliseconds