Searched defs:BLOCKSIZE (Results 1 - 7 of 7) sorted by relevance

/external/apache-xml/src/main/java/org/apache/xml/dtm/ref/
H A DChunkedIntArray.java270 final int BLOCKSIZE = 64; field in class:ChunkedIntArray.ChunksVector
271 int[] m_map[] = new int[BLOCKSIZE][];
272 int m_mapSize = BLOCKSIZE;
290 m_mapSize+=BLOCKSIZE;
/external/e2fsprogs/e2fsck/
H A Dmtrace.h106 #define BLOCKSIZE (1 << BLOCKLOG) macro
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/
H A Dmd5.c133 /* Important: BLOCKSIZE must be a multiple of 64. */
134 #define BLOCKSIZE 4096 macro
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/liblzf/
H A Dlzf.c53 #define BLOCKSIZE (1024 * 64 - 1) macro
54 #define MAX_BLOCKSIZE BLOCKSIZE
64 static long blocksize = BLOCKSIZE;
461 blocksize = BLOCKSIZE;
500 blocksize = BLOCKSIZE;
/external/chromium_org/third_party/sqlite/src/src/
H A Dtest_onefile.c89 #define BLOCKSIZE 512 macro
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*((i
[all...]
/external/zlib/src/contrib/untgz/
H A Duntgz.c65 #define BLOCKSIZE 512 macro
91 char buffer[BLOCKSIZE];
394 char fname[BLOCKSIZE];
404 len = gzread(in, &buffer, BLOCKSIZE);
411 if (len != BLOCKSIZE)
506 if (remaining < 0 || remaining >= BLOCKSIZE)
511 len = gzread(in, fname, BLOCKSIZE);
514 if (fname[BLOCKSIZE-1] != 0 || (int)strlen(fname) > remaining)
529 unsigned int bytes = (remaining > BLOCKSIZE) ? BLOCKSIZE
[all...]
/external/genext2fs/
H A Dgenext2fs.c157 #define BLOCKSIZE 1024 macro
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;
2697 memset(get_blk(fs, b), emptyval, BLOCKSIZE); local
[all...]

Completed in 1506 milliseconds