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

1 2

  /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/regress/sys/arch/arm/sigstackalign/
sigstackalign.c 41 #define BLOCKSIZE (MINSIGSTKSZ + RANGE)
63 stackblock = malloc(BLOCKSIZE);
  /src/external/gpl2/libmalloc/dist/
malloc.c 77 (char *) NULL)) % BLOCKSIZE;
80 adj = BLOCKSIZE - adj;
99 heapsize = HEAP / BLOCKSIZE;
201 if (size <= BLOCKSIZE / 2)
226 % BLOCKSIZE) >> log;
238 result = malloc (BLOCKSIZE);
243 for (i = 1; i < (__malloc_size_t) (BLOCKSIZE >> log); ++i)
259 _chunks_free += (BLOCKSIZE >> log) - 1;
260 _bytes_free += BLOCKSIZE - (1 << log);
261 _bytes_used -= BLOCKSIZE - (1 << log)
    [all...]
free.c 55 _bytes_used -= _heapinfo[block].busy.info.size * BLOCKSIZE;
56 _bytes_free += _heapinfo[block].busy.info.size * BLOCKSIZE;
109 register __malloc_size_t bytes = blocks * BLOCKSIZE;
136 if (_heapinfo[block].busy.info.frag.nfree == (BLOCKSIZE >> type) - 1)
141 for (i = 1; i < (__malloc_size_t) (BLOCKSIZE >> type); ++i)
151 _bytes_used += BLOCKSIZE;
152 _chunks_free -= BLOCKSIZE >> type;
153 _bytes_free -= BLOCKSIZE;
179 % BLOCKSIZE >> type);
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...]
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))
realloc.c 136 if (size <= BLOCKSIZE / 2)
186 (void) malloc (blocks * BLOCKSIZE);
189 __ptr_t previous = malloc ((block - _heapindex) * BLOCKSIZE);
190 (void) malloc (blocks * BLOCKSIZE);
196 memmove (result, ptr, blocks * BLOCKSIZE);
  /src/distrib/amd64/cdroms/
install.sh 59 BLOCKSIZE=1k
60 export BLOCKSIZE
  /src/distrib/amd64/installimage/
install.sh 59 BLOCKSIZE=1k
60 export BLOCKSIZE
  /src/distrib/amd64/installimage-bios/
install.sh 59 BLOCKSIZE=1k
60 export BLOCKSIZE
  /src/distrib/evbarm/installimage/
install.sh 59 BLOCKSIZE=1k
60 export BLOCKSIZE
  /src/distrib/i386/cdroms/
install.sh 59 BLOCKSIZE=1k
60 export BLOCKSIZE
  /src/distrib/i386/installimage/
install.sh 59 BLOCKSIZE=1k
60 export BLOCKSIZE
  /src/distrib/sparc64/cdroms/installcd/
install.sh 59 BLOCKSIZE=1k
60 export BLOCKSIZE
  /src/distrib/vax/cdroms/installcd/
install.sh 59 BLOCKSIZE=1k
60 export BLOCKSIZE
  /src/external/gpl2/lvm2/dist/scripts/
fsadm.sh 63 BLOCKSIZE=
234 test -n "$BLOCKSIZE" -a -n "$BLOCKCOUNT" || error "Cannot parse $1 output"
245 "Block size"*) BLOCKSIZE=${i##* } ;;
250 decode_size $1 $BLOCKSIZE
260 verbose "Resizing filesystem on device \"$VOLUME\" to $NEWSIZE bytes ($BLOCKCOUNT -> $NEWBLOCKCOUNT blocks of $BLOCKSIZE bytes)"
275 "Blocksize"*) BLOCKSIZE=${i##*: } ;;
280 decode_size $1 $BLOCKSIZE
304 "data"*) BLOCKSIZE=${i##*bsize=} ; BLOCKCOUNT=${i##*blocks=} ;;
307 BLOCKSIZE=${BLOCKSIZE%%[^0-9]*
    [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/gdb.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/gdb/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/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/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/gpl3/gcc.old/dist/libiberty/
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/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}} \

Completed in 46 milliseconds

1 2