HomeSort by relevance Sort by last modified time
    Searched defs:BLOCKSIZE (Results 1 - 13 of 13) sorted by null

  /external/dropbear/libtomcrypt/src/ciphers/
khazad.c 37 #define BLOCKSIZE 64
38 #define BLOCKSIZEB (BLOCKSIZE/8)
    [all...]
anubis.c 41 #define BLOCKSIZE 128
42 #define BLOCKSIZEB (BLOCKSIZE/8)
    [all...]
  /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/lib/
md5.c 128 /* Important: BLOCKSIZE must be a multiple of 64. */
129 #define BLOCKSIZE 4096
131 char buffer[BLOCKSIZE + 72];
140 /* We read the file in blocks of BLOCKSIZE bytes. One call of the
149 n = fread (buffer + sum, 1, BLOCKSIZE - sum, stream);
153 while (sum < BLOCKSIZE && n != 0);
161 /* Process buffer with BLOCKSIZE bytes. Note that
162 BLOCKSIZE % 64 == 0
164 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...]
  /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/zlib/src/contrib/untgz/
untgz.c 65 #define BLOCKSIZE 512
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 : remaining
    [all...]
  /frameworks/av/services/audioflinger/
AudioMixer.h 152 static const int BLOCKSIZE = 16; // 4 cache lines
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
tarfile.py 68 BLOCKSIZE = 512 # length of processing blocks
69 RECORDSIZE = BLOCKSIZE * 20 # length of records
623 self.buf = self.fileobj.read(BLOCKSIZE)
648 blocksize = 16 * 1024 variable in class:_BZ2Proxy
670 raw = self.fileobj.read(self.blocksize)
785 blocksize = 1024 variable in class:ExFileObject
837 buf = self.fileobj.read(self.blocksize)
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
tarfile.py 68 BLOCKSIZE = 512 # length of processing blocks
69 RECORDSIZE = BLOCKSIZE * 20 # length of records
623 self.buf = self.fileobj.read(BLOCKSIZE)
648 blocksize = 16 * 1024 variable in class:_BZ2Proxy
670 raw = self.fileobj.read(self.blocksize)
785 blocksize = 1024 variable in class:ExFileObject
837 buf = self.fileobj.read(self.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...]
  /prebuilts/tools/common/m2/internal/xalan/xalan/2.6.0/
xalan-2.6.0.jar 

Completed in 502 milliseconds