Searched defs:BSIZE (Results 1 - 9 of 9) sorted by relevance

/external/chromium_org/third_party/yasm/source/patched-yasm/tools/re2c/bootstrap/
H A Dscanner.c15 #define BSIZE 8192 macro
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/
H A Dscanner.c15 #define BSIZE 8192 macro
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/
H A Ddes_locl.h106 #define BSIZE (MAXWRITE+4) macro
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/preprocs/raw/
H A Draw-preproc.c32 #define BSIZE 512 macro
77 int bufsize = BSIZE;
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/preprocs/cpp/
H A Dcpp-preproc.c35 #define BSIZE 512 macro
238 int bufsize = BSIZE;
/external/openssl/apps/
H A Denc.c77 #undef BSIZE macro
81 #define BSIZE (8*1024) macro
110 int bsize=BSIZE,verbose=0;
H A Dca.c319 #undef BSIZE macro
320 #define BSIZE 256 macro
321 MS_STATIC char buf[3][BSIZE];
1314 if(strlen(outdir) >= (size_t)(j ? BSIZE-j*2-6 : BSIZE-8))
H A Dapps.c1590 #undef BSIZE macro
1591 #define BSIZE 256 macro
1652 char buf[1][BSIZE];
1662 if (j >= BSIZE)
1669 BUF_strlcpy(buf[0], serialfile, BSIZE);
1714 char buf[5][BSIZE];
1720 if (j + 1 >= BSIZE)
1806 char buf[1][BSIZE];
1905 char buf[3][BSIZE];
1916 if (j + 6 >= BSIZE)
[all...]
/external/chromium_org/third_party/yasm/source/patched-yasm/libyasm/
H A Dfile.c52 #define BSIZE 8192 /* Fill block size */ macro
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) {

Completed in 1816 milliseconds