Searched refs:buf (Results 1 - 25 of 5867) sorted by relevance

1234567891011>>

/macosx-10.9.5/ntp-88/libntp/
H A Dinttoa.c15 register char *buf; local
17 LIB_GETBUF(buf);
18 snprintf(buf, sizeof(buf), "%ld", val);
20 return buf;
H A Duinttoa.c14 register char *buf; local
16 LIB_GETBUF(buf);
18 (void) sprintf(buf, "%lu", (u_long)uval);
19 return buf;
/macosx-10.9.5/curl-78.94.1/curl/tests/server/
H A Dbase64.pl5 my $buf;
6 while(read(STDIN, $buf, 60*57)) {
7 my $enc = encode_base64($buf);
/macosx-10.9.5/Heimdal-323.92.1/lib/roken/
H A Dxfree.c39 rk_xfree (void *buf) argument
41 free(buf);
/macosx-10.9.5/ruby-104/ruby/ext/digest/rmd160/
H A Drmd160ossl.c6 void RMD160_Finish(RMD160_CTX *ctx, char *buf) { argument
7 RIPEMD160_Final((unsigned char *)buf, ctx);
/macosx-10.9.5/ruby-104/ruby/ext/digest/sha1/
H A Dsha1ossl.c7 SHA1_Finish(SHA1_CTX *ctx, char *buf) argument
9 SHA1_Final((unsigned char *)buf, ctx);
/macosx-10.9.5/xnu-2422.115.4/bsd/crypto/cast128/
H A Dcast128_subkey.h42 #define x0x1x2x3 buf[0]
43 #define x4x5x6x7 buf[1]
44 #define x8x9xAxB buf[2]
45 #define xCxDxExF buf[3]
46 #define z0z1z2z3 buf[4]
47 #define z4z5z6z7 buf[5]
48 #define z8z9zAzB buf[6]
49 #define zCzDzEzF buf[7]
56 #define x0 byte0(buf[0])
57 #define x1 byte1(buf[
[all...]
/macosx-10.9.5/tidy-15.12/tidy/src/
H A Dbuffio.c27 TidyBuffer* buf = (TidyBuffer*) appData; local
28 return tidyBufGetByte( buf );
32 TidyBuffer* buf = (TidyBuffer*) appData; local
33 return tidyBufEndOfInput( buf );
37 TidyBuffer* buf = (TidyBuffer*) appData; local
38 tidyBufUngetByte( buf, bv );
41 void TIDY_CALL tidyInitInputBuffer( TidyInputSource* inp, TidyBuffer* buf )
46 inp->sourceData = buf;
51 TidyBuffer* buf = (TidyBuffer*) appData; local
52 tidyBufPutByte( buf, b
68 tidyBufAlloc( TidyBuffer* buf, uint allocSize ) argument
97 tidyBufCheckAlloc( TidyBuffer* buf, uint allocSize, uint chunkSize ) argument
122 tidyBufAttach( TidyBuffer* buf, byte* bp, uint size ) argument
141 tidyBufAppend( TidyBuffer* buf, void* vp, uint size ) argument
152 tidyBufPutByte( TidyBuffer* buf, byte bv ) argument
186 tidyBufUngetByte( TidyBuffer* buf, byte bv ) argument
[all...]
/macosx-10.9.5/cxxfilt-11/cxxfilt/libiberty/
H A Dspaces.c51 static char *buf; local
56 if (buf)
58 free (buf);
60 buf = (char *) malloc (count + 1);
61 if (buf == (char *) 0)
63 for (t = buf + count ; t != buf ; )
68 buf[count] = '\0';
70 return (const char *) (buf + maxsize - count);
H A Dvsnprintf.c28 @deftypefn Supplemental int vsnprintf (char *@var{buf}, size_t @var{n}, const char *@var{format}, va_list @var{ap})
59 char *buf = 0; local
60 int result = vasprintf (&buf, format, ap);
62 if (!buf)
66 free (buf);
70 result = strlen (buf);
74 memcpy (s, buf, result+1);
77 memcpy (s, buf, n-1);
81 free (buf);
108 char buf[12 local
[all...]
/macosx-10.9.5/Heimdal-323.92.1/lib/hcrypto/
H A Dpasswd_dlg.h44 int pwd_dialog(char *buf, int size);
/macosx-10.9.5/Security-55471.14.18/libsecurity_ssl/Security/
H A DsslRand.h36 int sslRand(SSLBuffer *buf);
/macosx-10.9.5/Security-55471.14.18/libsecurity_ssl/lib/
H A DsslRand.h36 int sslRand(SSLBuffer *buf);
/macosx-10.9.5/Security-55471.14.18/libsecurity_ssl/security_ssl/
H A DsslRand.h36 int sslRand(SSLBuffer *buf);
/macosx-10.9.5/ksh-20/ksh/src/lib/libast/string/
H A Dfmttime.c35 char* buf; local
38 buf = fmtbuf(z = 80);
39 tmfmt(buf, z, format, &clock);
40 return buf;
H A Dfmtsignal.c37 char* buf; local
43 buf = sig_info.text[sig];
46 buf = fmtbuf(z = 20);
47 sfsprintf(buf, z, "Signal %d", sig);
54 buf = sig_info.name[sig];
57 buf = fmtbuf(z = 20);
58 sfsprintf(buf, z, "%d", sig);
61 return buf;
/macosx-10.9.5/xnu-2422.115.4/tools/tests/libMicro/
H A Dtimes.c56 struct tms buf; local
59 (void) times(&buf);
60 (void) times(&buf);
61 (void) times(&buf);
62 (void) times(&buf);
63 (void) times(&buf);
64 (void) times(&buf);
65 (void) times(&buf);
66 (void) times(&buf);
67 (void) times(&buf);
[all...]
/macosx-10.9.5/Security-55471.14.18/libsecurity_apple_csp/lib/
H A DYarrowConnection.h35 extern void cspGetRandomBytes(void *buf, unsigned len);
40 extern void cspAddEntropy(const void *buf, unsigned len);
/macosx-10.9.5/passwordserver_sasl-170/cyrus_sasl/mac/libdes/src/
H A Dpasswd_dlg.h49 /* * Copyright (c) 1995, 1996, 1997 Kungliga Tekniska H�gskolan * (Royal Institute of Technology, Stockholm, Sweden). * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * * 3. All advertising materials mentioning features or use of this software * must display the following acknowledgement: * This product includes software developed by the Kungliga Tekniska * H�gskolan and its contributors. * * 4. Neither the name of the Institute nor the names of its contributors * may be used to endorse or promote products derived from this software * without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE INSTITUTE AND CONTRIBUTORS ``AS IS'' AND * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE * ARE DISCLAIMED. IN NO EVENT SHALL THE INSTITUTE OR CONTRIBUTORS BE LIABLE * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. */ /* passwd_dlg.h - Dialog boxes for Windows95/NT * Author: J�rgen Karlsson - d93-jka@nada.kth.se * Date: June 1996 */ /* $Id: passwd_dlg.h,v 1.4 2005/01/10 19:09:07 snsimon Exp $ */ #ifndef PASSWD_DLG_H #define PASSWD_DLG_H int pwd_dialog(char *buf, int size); #endif /* PASSWD_DLG_H */
/macosx-10.9.5/smb-697.95.1/lib/librpc/
H A Dmemory.cpp47 void * buf,
51 if (buf == NULL) {
53 buf = ::malloc(nbytes);
55 buf = ::valloc(nbytes);
58 buf = ::realloc(buf, nbytes);
61 if (UNLIKELY(buf == NULL)) {
66 return buf;
46 allocate( void * buf, std::size_t nbytes) argument
/macosx-10.9.5/rsync-42/rsync/
H A Dbyteorder.h33 #define CVAL(buf,pos) (((unsigned char *)(buf))[pos])
34 #define PVAL(buf,pos) ((unsigned)CVAL(buf,pos))
35 #define SCVAL(buf,pos,val) (CVAL(buf,pos) = (val))
39 #define SVAL(buf,pos) (PVAL(buf,pos)|PVAL(buf,(pos)+1)<<8)
40 #define IVAL(buf,po
[all...]
/macosx-10.9.5/libxml2-26/libxml2/
H A Dbuf.c2 * buf.c: memory buffers for libxml2
30 #include "buf.h"
39 * directly the input->buf->buffer structures.
59 #define UPDATE_COMPAT(buf) \
60 if (buf->size < INT_MAX) buf->compat_size = buf->size; \
61 else buf->compat_size = INT_MAX; \
62 if (buf->use < INT_MAX) buf
91 xmlBufMemoryError(xmlBufPtr buf, const char *extra) argument
106 xmlBufOverflowError(xmlBufPtr buf, const char *extra) argument
195 xmlBufDetach(xmlBufPtr buf) argument
266 xmlBufGetAllocationScheme(xmlBufPtr buf) argument
287 xmlBufSetAllocationScheme(xmlBufPtr buf, xmlBufferAllocationScheme scheme) argument
327 xmlBufFree(xmlBufPtr buf) argument
353 xmlBufEmpty(xmlBufPtr buf) argument
386 xmlBufShrink(xmlBufPtr buf, size_t len) argument
435 xmlBufGrowInternal(xmlBufPtr buf, size_t len) argument
495 xmlBufGrow(xmlBufPtr buf, int len) argument
517 xmlBufInflate(xmlBufPtr buf, size_t len) argument
534 xmlBufDump(FILE *file, xmlBufPtr buf) argument
568 xmlBufContent(const xmlBufPtr buf) argument
586 xmlBufEnd(const xmlBufPtr buf) argument
607 xmlBufAddLen(xmlBufPtr buf, size_t len) argument
632 xmlBufErase(xmlBufPtr buf, size_t len) argument
654 xmlBufLength(const xmlBufPtr buf) argument
673 xmlBufUse(const xmlBufPtr buf) argument
694 xmlBufAvail(const xmlBufPtr buf) argument
712 xmlBufIsEmpty(const xmlBufPtr buf) argument
731 xmlBufResize(xmlBufPtr buf, size_t size) argument
845 xmlBufAdd(xmlBufPtr buf, const xmlChar *str, int len) argument
896 xmlBufAddHead(xmlBufPtr buf, const xmlChar *str, int len) argument
966 xmlBufCat(xmlBufPtr buf, const xmlChar *str) argument
986 xmlBufCCat(xmlBufPtr buf, const char *str) argument
1026 xmlBufWriteCHAR(xmlBufPtr buf, const xmlChar *string) argument
1047 xmlBufWriteChar(xmlBufPtr buf, const char *string) argument
1070 xmlBufWriteQuotedString(xmlBufPtr buf, const xmlChar *string) argument
1163 xmlBufBackToBuffer(xmlBufPtr buf) argument
1216 xmlBufMergeBuffer(xmlBufPtr buf, xmlBufferPtr buffer) argument
1242 xmlBufResetInput(xmlBufPtr buf, xmlParserInputPtr input) argument
1261 xmlBufGetInputBase(xmlBufPtr buf, xmlParserInputPtr input) argument
1292 xmlBufSetInputBaseCur(xmlBufPtr buf, xmlParserInputPtr input, size_t base, size_t cur) argument
[all...]
/macosx-10.9.5/tcl-102/tcl_ext/expect/expect/example/
H A Dpasswd.cgi40 proc cgi2ascii {buf} {
41 regsub -all {\+} $buf { } buf
42 regsub -all {([\\["$])} $buf {\\\1} buf
43 regsub -all -nocase "%0d%0a" $buf "\n" buf
44 regsub -all -nocase {%([a-f0-9][a-f0-9])} $buf {[format %c 0x\1]} buf
45 eval return \"$buf\"
[all...]
/macosx-10.9.5/apache-786.1/httpd/srclib/apr/test/
H A Dtestfmt.c24 char buf[100]; local
27 sprintf(buf, "%" APR_SSIZE_T_FMT, var);
28 ABTS_STR_EQUAL(tc, "0", buf);
29 apr_snprintf(buf, sizeof(buf), "%" APR_SSIZE_T_FMT, var);
30 ABTS_STR_EQUAL(tc, "0", buf);
35 char buf[100]; local
38 sprintf(buf, "%" APR_SIZE_T_FMT, var);
39 ABTS_STR_EQUAL(tc, "0", buf);
40 apr_snprintf(buf, sizeo
46 char buf[100]; local
57 char buf[100]; local
68 char buf[100]; local
79 char buf[100]; local
90 char buf[100]; local
101 char buf[100]; local
[all...]
/macosx-10.9.5/apr-30/apr/apr/test/
H A Dtestfmt.c24 char buf[100]; local
27 sprintf(buf, "%" APR_SSIZE_T_FMT, var);
28 ABTS_STR_EQUAL(tc, "0", buf);
29 apr_snprintf(buf, sizeof(buf), "%" APR_SSIZE_T_FMT, var);
30 ABTS_STR_EQUAL(tc, "0", buf);
35 char buf[100]; local
38 sprintf(buf, "%" APR_SIZE_T_FMT, var);
39 ABTS_STR_EQUAL(tc, "0", buf);
40 apr_snprintf(buf, sizeo
46 char buf[100]; local
57 char buf[100]; local
68 char buf[100]; local
79 char buf[100]; local
90 char buf[100]; local
101 char buf[100]; local
[all...]

Completed in 150 milliseconds

1234567891011>>