HomeSort by relevance Sort by last modified time
    Searched defs:BLOCKSIZE (Results 1 - 9 of 9) 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/zlib/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 143 static const int BLOCKSIZE = 16; // 4 cache lines
  /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 1229 milliseconds