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

  /external/openssl/crypto/des/
enc_read.c 109 tmpbuf=OPENSSL_malloc(BSIZE);
114 net=OPENSSL_malloc(BSIZE);
119 unnet=OPENSSL_malloc(BSIZE);
enc_writ.c 101 outbuf=OPENSSL_malloc(BSIZE+HDRSIZE);
des_locl.h 106 #define BSIZE (MAXWRITE+4)
  /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/chromium_org/third_party/yasm/source/patched-yasm/modules/parsers/gas/
gas-token.re 37 #define BSIZE 8192
111 if((s->top - s->lim) < BSIZE){
112 YYCTYPE *buf = yasm_xmalloc((size_t)(s->lim - s->bot) + BSIZE);
118 s->top = &s->lim[BSIZE];
123 if((cnt = preproc_input(parser_gas, 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/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/openssl/apps/
apps.c     [all...]
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);
ca.c 319 #undef BSIZE
320 #define BSIZE 256
321 MS_STATIC char buf[3][BSIZE];
    [all...]

Completed in 1135 milliseconds