Searched refs:BUF (Results 1 - 21 of 21) sorted by relevance

/opensolaris-onvv-gate/usr/src/uts/sun4u/daktari/sys/
H A Ddaktari.h69 #define DAK_GET_SBD_APID(BUF, SZ, SLOT) (void) snprintf((BUF), (SZ), "SB%c", \
73 #define DAK_GET_PCI_APID(BUF, SZ, SLOT) (void) snprintf((BUF), \
/opensolaris-onvv-gate/usr/src/cmd/refer/
H A Dsortbib.c22 #define BUF BUFSIZ macro
36 static void parse(char [], char fld[][BUF]);
102 char line[BUF], fld[4][BUF]; /* one line, the sort fields */
105 while (offset = ftell(fp), fgets(line, BUF, fp)) {
123 if (length > BUF*8) {
126 "(%d)\n"), recno, BUF*8, length);
148 if (length > BUF*8) {
151 recno, BUF*8, length);
169 char str[BUF], buf
[all...]
/opensolaris-onvv-gate/usr/src/lib/libast/common/port/
H A Dastlicense.c91 #define BUF(b) ((b)->buf) macro
680 comment(&notice, &buf, BUF(&tmp), USE(&tmp), 0);
685 comment(&notice, &buf, BUF(&tmp), USE(&tmp), 0);
693 comment(&notice, &buf, BUF(&tmp), USE(&tmp), 0);
703 comment(&notice, &buf, BUF(&tmp), USE(&tmp), 0);
723 comment(&notice, &buf, BUF(&tmp), USE(&tmp), 0);
730 comment(&notice, &buf, BUF(&tmp), USE(&tmp), 0);
736 comment(&notice, &buf, BUF(&tmp), USE(&tmp), 0);
749 comment(&notice, &buf, BUF(&tmp), USE(&tmp), 0);
758 comment(&notice, &buf, BUF(
[all...]
/opensolaris-onvv-gate/usr/src/uts/common/gssapi/mechs/krb5/include/
H A Dk5-platform.h524 #define k5_getpwnam_r(NAME, REC, BUF, BUFSIZE, OUT) \
525 (*(OUT) = getpwnam_r(NAME,REC,BUF,BUFSIZE), *(OUT) == NULL ? -1 : 0)
527 #define k5_getpwuid_r(UID, REC, BUF, BUFSIZE, OUT) \
528 (*(OUT) = getpwuid_r(UID,REC,BUF,BUFSIZE), *(OUT) == NULL ? -1 : 0)
/opensolaris-onvv-gate/usr/src/lib/krb5/plugins/kdb/ldap/libkdb_ldap/
H A Dldap_service_stash.c64 # define strerror_r(ERRNUM, BUF, SIZE) (strlcpy((BUF), strerror(ERRNUM), (SIZE)), (BUF)[(SIZE)-1] = 0)
/opensolaris-onvv-gate/usr/src/uts/common/fs/smbsrv/
H A Dsmb_mbuf_util.c300 MBC_ATTACH_BUF(struct mbuf_chain *MBC, unsigned char *BUF, int LEN) argument
305 (MBC)->chain->m_data = (caddr_t)(BUF);
306 (MBC)->chain->m_ext.ext_buf = (caddr_t)(BUF);
/opensolaris-onvv-gate/usr/src/cmd/perl/5.8.4/distrib/lib/Tie/File/t/
H A D31_autodefer.t108 my $BUF = 20;
H A D30_defer.t100 my $BUF = 20;
102 $o = tie @a, 'Tie::File', $file, memory => $MAX, dw_size => $BUF;
/opensolaris-onvv-gate/usr/src/cmd/vi/port/
H A Dex_vget.c350 * Put text from cursor upto wcursor in BUF.
353 setBUF(unsigned char *BUF) argument
360 BUF[0] = 0;
361 BUF[128] = 0;
362 addto(BUF, cursor);
H A Dex_vops2.c113 * in the VBSIZE buffer BUF. Used to save
117 takeout(unsigned char *BUF) argument
132 setBUF(BUF);
133 if ((unsigned char)BUF[128] == 0200)
/opensolaris-onvv-gate/usr/src/uts/common/smbsrv/
H A Dndr.h222 #define NDS_GET_PDU(NDS, PDU_OFFSET, N_BYTES, BUF, SWAP, REF) \
223 (*(NDS)->ndo->ndo_get_pdu)(NDS, PDU_OFFSET, N_BYTES, BUF, SWAP, REF)
224 #define NDS_PUT_PDU(NDS, PDU_OFFSET, N_BYTES, BUF, SWAP, REF) \
225 (*(NDS)->ndo->ndo_put_pdu)(NDS, PDU_OFFSET, N_BYTES, BUF, SWAP, REF)
H A Dsmb_ktypes.h506 void MBC_ATTACH_BUF(struct mbuf_chain *MBC, unsigned char *BUF, int LEN);
/opensolaris-onvv-gate/usr/src/cmd/perl/5.8.4/distrib/ext/IPC/SysV/
H A DMsg.pm88 @_ <= 5 && @_ >= 3 or croak '$msg->rcv( BUF, LEN, TYPE, FLAGS )';
99 @_ <= 4 && @_ >= 3 or croak '$msg->snd( TYPE, BUF, FLAGS )';
161 =item rcv ( BUF, LEN [, TYPE [, FLAGS ]] )
164 See L<msgrcv>. The BUF becomes tainted.
/opensolaris-onvv-gate/usr/src/common/util/
H A Dsscanf.c72 #define BUF 32 /* Maximum length of numeric string. */ macro
127 char buf[BUF]; /* buffer for numeric conversions */
/opensolaris-onvv-gate/usr/src/lib/gss_mechs/mech_krb5/support/
H A Dplugins.c297 #define ERRSTR(ERR, BUF) \
298 (strerror_r (ERR, BUF, sizeof(BUF)) == 0 ? BUF : strerror (ERR))
300 #define ERRSTR(ERR, BUF) \
/opensolaris-onvv-gate/usr/src/cmd/ssh/scp/
H A Dscp.c267 } BUF; typedef in typeref:struct:__anon1973
269 BUF *allocbuf(BUF *, int, int);
587 static BUF buffer;
588 BUF *bp;
761 static BUF buffer;
766 BUF *bp;
1153 BUF *
1155 BUF *bp;
/opensolaris-onvv-gate/usr/src/cmd/sendmail/libsm/
H A Dvfprintf.c140 #define BUF 40 macro
201 char buf[BUF]; /* space for %c, %[diouxX], %[eEfgG] */
669 cp = buf + BUF;
715 size = buf + BUF - cp;
H A Dvfscanf.c33 #define BUF 513 /* Maximum length of numeric string. */ macro
131 char buf[BUF]; /* buffer for numeric conversions */
/opensolaris-onvv-gate/usr/src/cmd/cmd-inet/usr.bin/
H A Drcp.c72 } BUF; typedef in typeref:struct:_buf
109 static BUF *allocbuf(BUF *, int, int);
125 #define NULLBUF (BUF *) 0
1145 static BUF buffer;
1146 BUF *bp;
1412 static BUF buffer;
1415 BUF *bp;
1714 static BUF *
1715 allocbuf(BUF *b
[all...]
/opensolaris-onvv-gate/usr/src/cmd/perl/5.8.4/distrib/ext/IO/lib/IO/
H A DHandle.pm69 $io->read ( BUF, LEN, [OFFSET] )
73 $io->sysread ( BUF, LEN, [OFFSET] )
74 $io->syswrite ( BUF, [LEN, [OFFSET]] )
134 =item $io->write ( BUF, LEN [, OFFSET ] )
430 @_ == 3 || @_ == 4 or croak 'usage: $io->read(BUF, LEN [, OFFSET])';
435 @_ == 3 || @_ == 4 or croak 'usage: $io->sysread(BUF, LEN [, OFFSET])';
440 @_ >= 2 && @_ <= 4 or croak 'usage: $io->write(BUF [, LEN [, OFFSET]])';
447 @_ >= 2 && @_ <= 4 or croak 'usage: $io->syswrite(BUF [, LEN [, OFFSET]])';
/opensolaris-onvv-gate/usr/src/lib/gss_mechs/mech_krb5/krb5/ccache/
H A Dcc_file.c1215 #define setvbuf(FILE,BUF,MODE,SIZE) \
1216 ((SIZE) < BUFSIZE ? (abort(),0) : setbuf(FILE, BUF))

Completed in 235 milliseconds