| /onnv/onnv-gate/usr/src/cmd/vi/port/ |
| ex_tune.h | 56 * The definitions of LBSIZE and CRSIZE should be the same as BUFSIZE 60 #define LBSIZE BUFSIZE /* Line buffer size */ 61 #define CRSIZE BUFSIZE /* Crypt block size */ 68 #define ONMSZ BUFSIZE /* Option name size */ 74 #define HBLKS 1 /* struct header fits in BUFSIZE*HBLKS */ 77 #define HBLKS ((sizeof(struct header)+BUFSIZE-1)/BUFSIZE)
|
| ex_temp.h | 78 * Basically, the editor deals with the file as a sequence of BUFSIZE character 106 var unsigned char ibuff[BUFSIZE]; 107 var unsigned char ibuff2[BUFSIZE]; 108 var unsigned char obuff[BUFSIZE];
|
| /onnv/onnv-gate/usr/src/cmd/dis/ |
| dis_util.h | 46 #define BUFSIZE 1024
|
| dis_util.c | 108 static int size = BUFSIZE; 139 size = size + BUFSIZE;
|
| /onnv/onnv-gate/usr/src/common/openssl/crypto/rand/ |
| randfile.c | 93 #undef BUFSIZE 94 #define BUFSIZE 1024 107 MS_STATIC unsigned char buf[BUFSIZE]; 135 n = (bytes < BUFSIZE)?(int)bytes:BUFSIZE; 137 n = BUFSIZE; 150 OPENSSL_cleanse(buf,BUFSIZE); 157 unsigned char buf[BUFSIZE]; 198 i=(n > BUFSIZE)?BUFSIZE:n [all...] |
| /onnv/onnv-gate/usr/src/lib/libcmd/common/ |
| revlib.c | 29 #define BUFSIZE SF_BUFSIZE 40 char buff[BUFSIZE]; 56 offset = rounddown(offset,BUFSIZE); 59 n = BUFSIZE; 103 offset -= BUFSIZE;
|
| /onnv/onnv-gate/usr/src/lib/libtsol/common/ |
| labeld.h | 44 #define BUFSIZE 4096 160 char vers[BUFSIZE]; 168 char color[BUFSIZE]; 179 char slabel[BUFSIZE]; 188 char cslabel[BUFSIZE]; 196 char string[BUFSIZE]; 206 char string[BUFSIZE]; 237 char buf[BUFSIZE]; 260 char buf[BUFSIZE]; 274 char pathname[BUFSIZE]; [all...] |
| /onnv/onnv-gate/usr/src/common/openssl/crypto/des/ |
| speed.c | 118 #define BUFSIZE ((long)1024) 182 static unsigned char buf[BUFSIZE]; 216 cc=count*3*8/BUFSIZE+1; 217 cd=count*8/BUFSIZE+1; 256 BUFSIZE); 260 BUFSIZE); 264 DES_ncbc_encrypt(buf,buf,BUFSIZE,&sch, 268 count,BUFSIZE,d); 269 c=((double)COUNT(cc)*BUFSIZE)/d; 273 BUFSIZE); [all...] |
| /onnv/onnv-gate/usr/src/cmd/agents/snmp/trapsend/ |
| oid.c | 51 #define BUFSIZE 256 97 char inbuf[BUFSIZE]; 119 while (fgets(inbuf, BUFSIZE, fd)) { 135 char name[BUFSIZE]; 136 char type_str[BUFSIZE]; 138 char value[BUFSIZE]; 159 for (i = 0; *s && count && i< BUFSIZE ; s++, i++) { 170 if (i>= BUFSIZE) {
|
| /onnv/onnv-gate/usr/src/common/openssl/crypto/bf/ |
| bfspeed.c | 113 #define BUFSIZE ((long)1024) 177 static unsigned char buf[BUFSIZE]; 209 cc=count*8/BUFSIZE+1; 255 BUFSIZE); 259 BUFSIZE); 263 BF_cbc_encrypt(buf,buf,BUFSIZE,&sch, 267 count,BUFSIZE,d); 268 c=((double)COUNT(cc)*BUFSIZE)/d;
|
| /onnv/onnv-gate/usr/src/common/openssl/crypto/cast/ |
| cast_spd.c | 113 #define BUFSIZE ((long)1024) 177 static unsigned char buf[BUFSIZE]; 209 cc=count*8/BUFSIZE+1; 255 BUFSIZE); 259 BUFSIZE); 263 CAST_cbc_encrypt(buf,buf,BUFSIZE,&sch, 267 count,BUFSIZE,d); 268 c=((double)COUNT(cc)*BUFSIZE)/d;
|
| /onnv/onnv-gate/usr/src/common/openssl/crypto/rc2/ |
| rc2speed.c | 113 #define BUFSIZE ((long)1024) 177 static unsigned char buf[BUFSIZE]; 209 cc=count*8/BUFSIZE+1; 255 BUFSIZE); 259 BUFSIZE); 263 RC2_cbc_encrypt(buf,buf,BUFSIZE,&sch, 267 count,BUFSIZE,d); 268 c=((double)COUNT(cc)*BUFSIZE)/d;
|
| /onnv/onnv-gate/usr/src/common/openssl/crypto/rc4/ |
| rc4speed.c | 113 #define BUFSIZE ((long)1024) 177 static unsigned char buf[BUFSIZE]; 208 cc=count*8/BUFSIZE+1; 233 printf("Doing RC4 on %ld byte blocks for 10 seconds\n",BUFSIZE); 236 printf("Doing RC4 %ld times on %ld byte blocks\n",cc,BUFSIZE); 240 RC4(&sch,BUFSIZE,buf,buf); 243 count,BUFSIZE,d); 244 c=((double)COUNT(cc)*BUFSIZE)/d;
|
| /onnv/onnv-gate/usr/src/common/openssl/crypto/rc5/ |
| rc5speed.c | 113 #define BUFSIZE ((long)1024) 177 static unsigned char buf[BUFSIZE]; 209 cc=count*8/BUFSIZE+1; 255 BUFSIZE); 259 BUFSIZE); 263 RC5_32_cbc_encrypt(buf,buf,BUFSIZE,&sch, 267 count,BUFSIZE,d); 268 c=((double)COUNT(cc)*BUFSIZE)/d;
|
| /onnv/onnv-gate/usr/src/cmd/adbgen/common/ |
| adbgen4.c | 42 #define BUFSIZE 1024 /* gross enough to never be exceeded (we hope) */ 44 char buf1[BUFSIZE], buf2[BUFSIZE];
|
| /onnv/onnv-gate/usr/src/common/openssl/crypto/md2/ |
| md2.c | 63 #define BUFSIZE 1024*16 103 static unsigned char buf[BUFSIZE]; 109 i=read(fd,buf,BUFSIZE);
|
| /onnv/onnv-gate/usr/src/common/openssl/crypto/md5/ |
| md5.c | 63 #define BUFSIZE 1024*16 105 static unsigned char buf[BUFSIZE]; 111 i=read(fd,buf,BUFSIZE);
|
| /onnv/onnv-gate/usr/src/common/openssl/crypto/ripemd/ |
| rmd160.c | 63 #define BUFSIZE 1024*16 105 static unsigned char buf[BUFSIZE]; 111 i=read(fd,buf,BUFSIZE);
|
| /onnv/onnv-gate/usr/src/common/openssl/crypto/sha/ |
| sha.c | 63 #define BUFSIZE 1024*16 102 unsigned char buf[BUFSIZE]; 108 i=read(fd,buf,BUFSIZE);
|
| sha1.c | 63 #define BUFSIZE 1024*16 105 unsigned char buf[BUFSIZE]; 111 i=read(fd,buf,BUFSIZE);
|
| /onnv/onnv-gate/usr/src/cmd/cdrw/ |
| util.h | 42 #define BUFSIZE 32
|
| /onnv/onnv-gate/usr/src/cmd/lp/filter/postscript/postcomm/ |
| postcomm.h | 189 * used for reading the input files (changed with the -B option). BUFSIZE is 197 #define BUFSIZE 512
|
| /onnv/onnv-gate/usr/src/cmd/ldap/ns_ldap/ |
| standalone.c | 125 char passwdBuf[BUFSIZE]; 132 if (fgets(passwdBuf, BUFSIZE, f) == NULL) {
|
| /onnv/onnv-gate/usr/src/common/openssl/crypto/idea/ |
| idea_spd.c | 113 #define BUFSIZE ((long)1024) 177 static unsigned char buf[BUFSIZE]; 210 cc=count*8/BUFSIZE+1; 275 BUFSIZE); 279 BUFSIZE); 283 idea_cbc_encrypt(buf,buf,BUFSIZE,&sch, 287 count,BUFSIZE,d); 288 c=((double)COUNT(cc)*BUFSIZE)/d;
|
| /onnv/onnv-gate/usr/src/common/openssl/crypto/md4/ |
| md4.c | 63 #define BUFSIZE 1024*16 105 static unsigned char buf[BUFSIZE];
|