OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:BLOCKSIZE
(Results
1 - 7
of
7
) sorted by null
/external/e2fsprogs/e2fsck/
mtrace.h
106
#define
BLOCKSIZE
(1 << BLOCKLOG)
107
#define BLOCKIFY(SIZE) (((SIZE) +
BLOCKSIZE
- 1) /
BLOCKSIZE
)
154
#define BLOCK(A) (((char *) (A) - _heapbase) /
BLOCKSIZE
+ 1)
155
#define ADDRESS(B) ((__ptr_t) (((B) - 1) *
BLOCKSIZE
+ _heapbase))
/external/elfutils/0.153/lib/
md5.c
133
/* Important:
BLOCKSIZE
must be a multiple of 64. */
134
#define
BLOCKSIZE
4096
136
char buffer[
BLOCKSIZE
+ 72];
145
/* We read the file in blocks of
BLOCKSIZE
bytes. One call of the
154
n = fread (buffer + sum, 1,
BLOCKSIZE
- sum, stream);
158
while (sum <
BLOCKSIZE
&& n != 0);
166
/* Process buffer with
BLOCKSIZE
bytes. Note that
167
BLOCKSIZE
% 64 == 0
169
md5_process_block (buffer,
BLOCKSIZE
, &ctx);
/external/apache-xml/src/main/java/org/apache/xml/dtm/ref/
ChunkedIntArray.java
270
final int
BLOCKSIZE
= 64;
271
int[] m_map[] = new int[
BLOCKSIZE
][];
272
int m_mapSize =
BLOCKSIZE
;
290
m_mapSize+=
BLOCKSIZE
;
/external/liblzf/
lzf.c
53
#define
BLOCKSIZE
(1024 * 64 - 1)
54
#define MAX_BLOCKSIZE
BLOCKSIZE
64
static long
blocksize
=
BLOCKSIZE
;
variable
75
{"
blocksize
", 1, 0, 'b'},
83
"-h --help give this help\n" "-v --verbose verbose mode\n" "-b # --
blocksize
# set
blocksize
\n" "\n";
93
"-b # set
blocksize
\n"
185
while ((us = rread (from, &buf1[MAX_HDR_SIZE],
blocksize
)) > 0)
459
blocksize
= strtoul (p, 0, 0)
[
all
...]
/bootable/recovery/updater/
blockimg.c
38
#define
BLOCKSIZE
4096
167
rss->p_remain = (rss->tgt->pos[rss->p_block*2+1] - rss->tgt->pos[rss->p_block*2]) *
BLOCKSIZE
;
168
check_lseek(rss->fd, (off64_t)rss->tgt->pos[rss->p_block*2] *
BLOCKSIZE
, SEEK_SET);
270
allocate(src->size *
BLOCKSIZE
, buffer, buffer_alloc);
274
check_lseek(fd, (off64_t)src->pos[i*2] *
BLOCKSIZE
, SEEK_SET);
275
size_t sz = (src->pos[i*2+1] - src->pos[i*2]) *
BLOCKSIZE
;
294
memmove(dest + (locs->pos[i*2] *
BLOCKSIZE
), source + (start *
BLOCKSIZE
),
295
blocks *
BLOCKSIZE
);
331
allocate(*src_blocks *
BLOCKSIZE
, buffer, buffer_alloc)
[
all
...]
/external/chromium_org/third_party/sqlite/src/src/
test_onefile.c
89
#define
BLOCKSIZE
512
416
rc = pF->pMethods->xRead(pF, zBuf, iAmt, iOfst+
BLOCKSIZE
);
423
int iRealOff = pReal->nBlob -
BLOCKSIZE
*((ii/
BLOCKSIZE
)+1) + ii%
BLOCKSIZE
;
424
int iRealAmt = MIN(iRem,
BLOCKSIZE
- (iRealOff%
BLOCKSIZE
));
451
if( (iAmt+iOfst+
BLOCKSIZE
)>(pReal->nBlob-pReal->nJournal) ){
454
rc = pF->pMethods->xWrite(pF, zBuf, iAmt, iOfst+
BLOCKSIZE
);
465
int iRealOff = pReal->nBlob -
BLOCKSIZE
*((ii/BLOCKSIZE)+1) + ii%BLOCKSIZE
[
all
...]
/external/genext2fs/
genext2fs.c
157
#define
BLOCKSIZE
1024
165
// inode block size (why is it !=
BLOCKSIZE
?!?)
171
#define INOBLK (
BLOCKSIZE
/ INODE_BLOCKSIZE)
538
typedef uint8 block[
BLOCKSIZE
];
577
#if
BLOCKSIZE
== 1024
585
#error UNHANDLED
BLOCKSIZE
659
for(i = 0; i <
BLOCKSIZE
/4; i++)
796
unsigned char* b=calloc(1,
BLOCKSIZE
);
823
return (uint8*)fs + blk*
BLOCKSIZE
;
848
for(i = 0; i <
BLOCKSIZE
; i++
[
all
...]
Completed in 746 milliseconds