HomeSort by: relevance | last modified time | path
    Searched defs:BLOCKSIZE (Results 1 - 25 of 32) sorted by relevancy

1 2

  /src/usr.bin/vndcompress/
Makefile 69 BLOCKSIZE.onetinyblock= 512
75 BLOCKSIZE.tentinyblock= 512
268 ./vndcompress ${.IMPSRC} ${.TARGET}.tmp ${BLOCKSIZE.${.PREFIX}} \
272 vndcompress ${.IMPSRC} ${.TARGET}.tmp ${BLOCKSIZE.${.PREFIX}} \
  /src/regress/sys/arch/arm/sigstackalign/
sigstackalign.c 41 #define BLOCKSIZE (MINSIGSTKSZ + RANGE)
63 stackblock = malloc(BLOCKSIZE);
  /src/external/gpl3/gcc/dist/gcc/
genchecksum.cc 30 /* Important: BLOCKSIZE must be a multiple of 64. */
31 #define BLOCKSIZE 4096
37 char buffer[BLOCKSIZE + 72];
57 /* We read the file in blocks of BLOCKSIZE bytes. One call of the
66 n = fread (buffer + sum, 1, BLOCKSIZE - sum, f);
70 while (sum < BLOCKSIZE && n != 0);
78 /* Process buffer with BLOCKSIZE bytes. Note that
79 BLOCKSIZE % 64 == 0
81 md5_process_block (buffer, BLOCKSIZE, ctx);
  /src/external/gpl3/gcc.old/dist/gcc/
genchecksum.cc 30 /* Important: BLOCKSIZE must be a multiple of 64. */
31 #define BLOCKSIZE 4096
37 char buffer[BLOCKSIZE + 72];
57 /* We read the file in blocks of BLOCKSIZE bytes. One call of the
66 n = fread (buffer + sum, 1, BLOCKSIZE - sum, f);
70 while (sum < BLOCKSIZE && n != 0);
78 /* Process buffer with BLOCKSIZE bytes. Note that
79 BLOCKSIZE % 64 == 0
81 md5_process_block (buffer, BLOCKSIZE, ctx);
  /src/external/gpl2/xcvs/dist/lib/
md5.c 62 #define BLOCKSIZE 4096
63 #if BLOCKSIZE % 64 != 0
64 # error "invalid BLOCKSIZE"
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 if (sum == BLOCKSIZE)
182 /* Process buffer with BLOCKSIZE bytes. Note that
183 BLOCKSIZE % 64 == 0
185 md5_process_block (buffer, BLOCKSIZE, &ctx)
    [all...]
  /src/external/bsd/liblzf/dist/
lzf.c 52 #define BLOCKSIZE (1024 * 64 - 1)
53 #define MAX_BLOCKSIZE BLOCKSIZE
61 static long blocksize = BLOCKSIZE; variable
72 {"blocksize", 1, 0, 'b'},
80 "-h --help give this help\n" "-v --verbose verbose mode\n" "-b # --blocksize # set blocksize\n" "\n";
90 "-b # set blocksize\n"
182 while ((us = rread (from, &buf1[MAX_HDR_SIZE], blocksize)) > 0)
456 blocksize = strtoul (p, 0, 0)
    [all...]
  /src/external/gpl2/libmalloc/dist/
malloc.h 125 #define BLOCKSIZE (1 << BLOCKLOG)
126 #define BLOCKIFY(SIZE) (((SIZE) + BLOCKSIZE - 1) / BLOCKSIZE)
175 #define BLOCK(A) (((char *) (A) - _heapbase) / BLOCKSIZE + 1)
176 #define ADDRESS(B) ((__ptr_t) (((B) - 1) * BLOCKSIZE + _heapbase))
gmalloc.c 127 #define BLOCKSIZE (1 << BLOCKLOG)
128 #define BLOCKIFY(SIZE) (((SIZE) + BLOCKSIZE - 1) / BLOCKSIZE)
177 #define BLOCK(A) (((char *) (A) - _heapbase) / BLOCKSIZE + 1)
178 #define ADDRESS(B) ((__ptr_t) (((B) - 1) * BLOCKSIZE + _heapbase))
423 (char *) NULL)) % BLOCKSIZE;
426 adj = BLOCKSIZE - adj;
445 heapsize = HEAP / BLOCKSIZE;
547 if (size <= BLOCKSIZE / 2)
572 % BLOCKSIZE) >> log
    [all...]
  /src/external/gpl3/binutils/dist/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 48 #define BLOCKSIZE 4096
49 #if BLOCKSIZE % 64 != 0
50 # error "invalid BLOCKSIZE"
127 char buffer[BLOCKSIZE + 72];
136 /* We read the file in blocks of BLOCKSIZE bytes. One call of the
145 n = fread (buffer + sum, 1, BLOCKSIZE - sum, stream);
149 if (sum == BLOCKSIZE)
169 /* Process buffer with BLOCKSIZE bytes. Note that
170 BLOCKSIZE % 64 == 0
172 sha1_process_block (buffer, BLOCKSIZE, &ctx)
    [all...]
  /src/external/gpl3/binutils.old/dist/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 48 #define BLOCKSIZE 4096
49 #if BLOCKSIZE % 64 != 0
50 # error "invalid BLOCKSIZE"
127 char buffer[BLOCKSIZE + 72];
136 /* We read the file in blocks of BLOCKSIZE bytes. One call of the
145 n = fread (buffer + sum, 1, BLOCKSIZE - sum, stream);
149 if (sum == BLOCKSIZE)
169 /* Process buffer with BLOCKSIZE bytes. Note that
170 BLOCKSIZE % 64 == 0
172 sha1_process_block (buffer, BLOCKSIZE, &ctx)
    [all...]
  /src/external/gpl3/gcc/dist/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 48 #define BLOCKSIZE 4096
49 #if BLOCKSIZE % 64 != 0
50 # error "invalid BLOCKSIZE"
127 char buffer[BLOCKSIZE + 72];
136 /* We read the file in blocks of BLOCKSIZE bytes. One call of the
145 n = fread (buffer + sum, 1, BLOCKSIZE - sum, stream);
149 if (sum == BLOCKSIZE)
169 /* Process buffer with BLOCKSIZE bytes. Note that
170 BLOCKSIZE % 64 == 0
172 sha1_process_block (buffer, BLOCKSIZE, &ctx)
    [all...]
  /src/external/gpl3/gcc.old/dist/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 43 #define BLOCKSIZE 4096
44 #if BLOCKSIZE % 64 != 0
45 # error "invalid BLOCKSIZE"
122 char buffer[BLOCKSIZE + 72];
131 /* We read the file in blocks of BLOCKSIZE bytes. One call of the
140 n = fread (buffer + sum, 1, BLOCKSIZE - sum, stream);
144 if (sum == BLOCKSIZE)
164 /* Process buffer with BLOCKSIZE bytes. Note that
165 BLOCKSIZE % 64 == 0
167 sha1_process_block (buffer, BLOCKSIZE, &ctx)
    [all...]
  /src/external/gpl3/gdb/dist/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 48 #define BLOCKSIZE 4096
49 #if BLOCKSIZE % 64 != 0
50 # error "invalid BLOCKSIZE"
127 char buffer[BLOCKSIZE + 72];
136 /* We read the file in blocks of BLOCKSIZE bytes. One call of the
145 n = fread (buffer + sum, 1, BLOCKSIZE - sum, stream);
149 if (sum == BLOCKSIZE)
169 /* Process buffer with BLOCKSIZE bytes. Note that
170 BLOCKSIZE % 64 == 0
172 sha1_process_block (buffer, BLOCKSIZE, &ctx)
    [all...]
  /src/external/gpl3/gdb.old/dist/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 48 #define BLOCKSIZE 4096
49 #if BLOCKSIZE % 64 != 0
50 # error "invalid BLOCKSIZE"
127 char buffer[BLOCKSIZE + 72];
136 /* We read the file in blocks of BLOCKSIZE bytes. One call of the
145 n = fread (buffer + sum, 1, BLOCKSIZE - sum, stream);
149 if (sum == BLOCKSIZE)
169 /* Process buffer with BLOCKSIZE bytes. Note that
170 BLOCKSIZE % 64 == 0
172 sha1_process_block (buffer, BLOCKSIZE, &ctx)
    [all...]
  /src/crypto/external/apache2/openssl/dist/fuzz/
provider.c 245 static int64_t BLOCKSIZE = 8;
301 p_value_int = OPENSSL_malloc(sizeof(BLOCKSIZE));
302 *p_value_int = BLOCKSIZE;
304 p_value_int = OPENSSL_malloc(sizeof(BLOCKSIZE));
305 *p_value_int = BLOCKSIZE;
  /src/common/dist/zlib/contrib/untgz/
untgz.c 78 #define BLOCKSIZE 512
104 char buffer[BLOCKSIZE];
393 char fname[BLOCKSIZE];
403 len = gzread(in, &buffer, BLOCKSIZE);
410 if (len != BLOCKSIZE)
505 if (remaining < 0 || remaining >= BLOCKSIZE)
510 len = gzread(in, fname, BLOCKSIZE);
513 if (fname[BLOCKSIZE-1] != 0 || (int)strlen(fname) > remaining)
528 unsigned int bytes = (remaining > BLOCKSIZE) ? BLOCKSIZE : remaining
    [all...]
  /src/external/gpl3/binutils/dist/zlib/contrib/untgz/
untgz.c 78 #define BLOCKSIZE 512
104 char buffer[BLOCKSIZE];
393 char fname[BLOCKSIZE];
403 len = gzread(in, &buffer, BLOCKSIZE);
410 if (len != BLOCKSIZE)
505 if (remaining < 0 || remaining >= BLOCKSIZE)
510 len = gzread(in, fname, BLOCKSIZE);
513 if (fname[BLOCKSIZE-1] != 0 || (int)strlen(fname) > remaining)
528 unsigned int bytes = (remaining > BLOCKSIZE) ? BLOCKSIZE : remaining
    [all...]
  /src/external/gpl3/binutils.old/dist/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...]
  /src/external/gpl3/gcc/dist/libgcc/
unwind-dw2-fde.c 614 #define BLOCKSIZE 128
618 _Unwind_Ptr ptrs[BLOCKSIZE + 1];
630 unsigned chunk = ((n - i) <= BLOCKSIZE) ? (n - i) : BLOCKSIZE;
662 unsigned chunk = ((n - i) <= BLOCKSIZE) ? (n - i) : BLOCKSIZE;
677 #undef BLOCKSIZE

Completed in 39 milliseconds

1 2