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

1 2

  /bootable/recovery/update_verifier/
update_verifier.cpp 52 constexpr int BLOCKSIZE = 4096;
87 if (lseek64(fd.get(), static_cast<off64_t>(range_start) * BLOCKSIZE, SEEK_SET) == -1) {
92 size_t size = (range_end - range_start) * BLOCKSIZE;
  /external/opencv3/modules/flann/include/opencv2/flann/
allocator.h 72 const size_t BLOCKSIZE=8192;
85 int blocksize; member in class:cvflann::PooledAllocator
95 PooledAllocator(int blockSize = BLOCKSIZE)
97 blocksize = blockSize;
125 int blockSize;
141 blockSize = (size + sizeof(void*) + (WORDSIZE-1) > BLOCKSIZE) ?
142 size + sizeof(void*) + (WORDSIZE-1) : BLOCKSIZE;
    [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 129 /* Important: BLOCKSIZE must be a multiple of 64. */
130 #define BLOCKSIZE 4096
132 char buffer[BLOCKSIZE + 72];
141 /* We read the file in blocks of BLOCKSIZE bytes. One call of the
150 n = fread (buffer + sum, 1, BLOCKSIZE - sum, stream);
154 while (sum < BLOCKSIZE && n != 0);
162 /* Process buffer with BLOCKSIZE bytes. Note that
163 BLOCKSIZE % 64 == 0
165 md5_process_block (buffer, BLOCKSIZE, &ctx);
  /external/libvncserver/common/
md5.c 138 /* Important: BLOCKSIZE must be a multiple of 64. */
139 #define BLOCKSIZE 4096
141 char buffer[BLOCKSIZE + 72];
150 /* We read the file in blocks of BLOCKSIZE bytes. One call of the
159 n = fread (buffer + sum, 1, BLOCKSIZE - sum, stream);
163 while (sum < BLOCKSIZE && n != 0);
171 /* Process buffer with BLOCKSIZE bytes. Note that
172 BLOCKSIZE % 64 == 0
174 md5_process_block (buffer, BLOCKSIZE, &ctx);
  /external/ImageMagick/coders/
djvu.c 148 #define BLOCKSIZE 65536
153 int blocksize = BLOCKSIZE;
154 char data[BLOCKSIZE];
158 while ((size = (size_t) ReadBlob(image,(size_t) blocksize,data)) == blocksize) {
171 size_t blocksize = BLOCKSIZE;
172 unsigned char data[BLOCKSIZE];
179 && (size = (size_t) ReadBlob(image,(size_t) blocksize,data)) == blocksize)
168 size_t blocksize = BLOCKSIZE; local
    [all...]
  /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...]
  /toolchain/binutils/binutils-2.25/libiberty/
md5.c 137 /* Important: BLOCKSIZE must be a multiple of 64. */
138 #define BLOCKSIZE 4096
140 char buffer[BLOCKSIZE + 72];
149 /* We read the file in blocks of BLOCKSIZE bytes. One call of the
158 n = fread (buffer + sum, 1, BLOCKSIZE - sum, stream);
162 while (sum < BLOCKSIZE && n != 0);
170 /* Process buffer with BLOCKSIZE bytes. Note that
171 BLOCKSIZE % 64 == 0
173 md5_process_block (buffer, BLOCKSIZE, &ctx);
sha1.c 44 #define BLOCKSIZE 4096
45 #if BLOCKSIZE % 64 != 0
46 # error "invalid BLOCKSIZE"
123 char buffer[BLOCKSIZE + 72];
132 /* We read the file in blocks of BLOCKSIZE bytes. One call of the
141 n = fread (buffer + sum, 1, BLOCKSIZE - sum, stream);
145 if (sum == BLOCKSIZE)
165 /* Process buffer with BLOCKSIZE bytes. Note that
166 BLOCKSIZE % 64 == 0
168 sha1_process_block (buffer, BLOCKSIZE, &ctx)
    [all...]
  /external/icu/icu4j/tools/misc/src/com/ibm/icu/dev/tool/compression/
CompressionTableGenerator.java 86 final static int BLOCKSIZE = 0xFF;
96 int [] offsetTable = new int [ BLOCKSIZE + 1 ];
137 boolean [] singleTagTable = new boolean [ BLOCKSIZE + 1 ];
139 for( i = 0x00; i <= BLOCKSIZE; i++ ) {
184 boolean [] unicodeTagTable = new boolean [ BLOCKSIZE + 1 ];
186 for( i = 0x00; i <= BLOCKSIZE; i++ ) {
  /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 171 static const int BLOCKSIZE = 16; // 4 cache lines
  /bootable/recovery/updater/
blockimg.cpp 55 #define BLOCKSIZE 4096
255 rss->tgt.pos[rss->p_block * 2]) * BLOCKSIZE;
257 off64_t offset = static_cast<off64_t>(rss->tgt.pos[rss->p_block*2]) * BLOCKSIZE;
350 if (!check_lseek(fd, (off64_t) src.pos[i * 2] * BLOCKSIZE, SEEK_SET)) {
354 size_t size = (src.pos[i * 2 + 1] - src.pos[i * 2]) * BLOCKSIZE;
371 off64_t offset = static_cast<off64_t>(tgt.pos[i * 2]) * BLOCKSIZE;
372 size_t size = (tgt.pos[i * 2 + 1] - tgt.pos[i * 2]) * BLOCKSIZE;
436 allocate(src.size * BLOCKSIZE, buffer);
448 SHA1(data, blocks * BLOCKSIZE, digest);
567 allocate(src.size * BLOCKSIZE, buffer)
    [all...]
  /prebuilts/gdb/darwin-x86/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/gdb/linux-x86/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/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...]
  /prebuilts/tools/common/m2/repository/commons-codec/commons-codec/1.10/
commons-codec-1.10.jar 
  /prebuilts/tools/common/m2/repository/commons-codec/commons-codec/1.9/
commons-codec-1.9.jar 
  /prebuilts/tools/common/offline-m2/commons-codec/commons-codec/1.10/
commons-codec-1.10.jar 
  /prebuilts/tools/common/m2/repository/io/netty/netty-codec-http/4.1.0.CR3/
netty-codec-http-4.1.0.CR3.jar 
  /external/guice/extensions/persist/lib/
db4o-6.4.14.8131-java5.jar 
  /frameworks/data-binding/prebuilds/1.0-rc0/
databinding-studio-bundle.jar 
  /prebuilts/tools/common/m2/repository/xalan/xalan/2.6.0/
xalan-2.6.0.jar 

Completed in 557 milliseconds

1 2