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

  /external/chromium_org/third_party/yasm/source/patched-yasm/modules/preprocs/raw/
raw-preproc.c 32 #define BSIZE 512
77 int bufsize = BSIZE;
  /external/chromium_org/third_party/yasm/source/patched-yasm/tools/re2c/bootstrap/
scanner.c 15 #define BSIZE 8192
50 if((s->top - s->lim) < BSIZE){
51 unsigned char *buf = malloc(((s->lim - s->bot) + BSIZE));
58 s->top = &s->lim[BSIZE];
63 if((cnt = fread(s->lim, 1, BSIZE, s->in)) != BSIZE){
  /external/chromium_org/third_party/yasm/source/patched-yasm/tools/re2c/
scanner.c 15 #define BSIZE 8192
50 if((s->top - s->lim) < BSIZE){
51 unsigned char *buf = malloc(((s->lim - s->bot) + BSIZE) + 1);
58 s->top = &s->lim[BSIZE];
63 if((cnt = fread(s->lim, 1, BSIZE, s->in)) != BSIZE){
  /external/openssl/crypto/des/
des_locl.h 106 #define BSIZE (MAXWRITE+4)
  /external/chromium_org/third_party/yasm/source/patched-yasm/libyasm/
file.c 52 #define BSIZE 8192 /* Fill block size */
98 if ((s->top - s->lim) < BSIZE) {
99 unsigned char *buf = yasm_xmalloc((size_t)(s->lim - s->bot) + BSIZE);
105 s->top = &s->lim[BSIZE];
110 if ((cnt = input_func(input_func_data, s->lim, BSIZE)) == 0) {
  /external/chromium_org/third_party/yasm/source/patched-yasm/modules/preprocs/cpp/
cpp-preproc.c 35 #define BSIZE 512
238 int bufsize = BSIZE;
  /external/openssl/apps/
enc.c 77 #undef BSIZE
81 #define BSIZE (8*1024)
110 int bsize=BSIZE,verbose=0; local
384 bsize=(int)n;
385 if (verbose) BIO_printf(bio_err,"bufsize=%d\n",bsize);
389 buff=(unsigned char *)OPENSSL_malloc(EVP_ENCODE_LENGTH(bsize));
392 BIO_printf(bio_err,"OPENSSL_malloc failure %ld\n",(long)EVP_ENCODE_LENGTH(bsize));
676 inl=BIO_read(rbio,(char *)buff,bsize);
apps.c     [all...]
ca.c 319 #undef BSIZE
320 #define BSIZE 256
321 MS_STATIC char buf[3][BSIZE];
    [all...]

Completed in 271 milliseconds