Searched refs:buf (Results 126 - 150 of 6143) sorted by relevance

1234567891011>>

/macosx-10.10/libiconv-42/libiconv/lib/
H A Deuc_cn.h39 unsigned char buf[2]; local
40 buf[0] = c-0x80; buf[1] = c2-0x80;
41 return gb2312_mbtowc(conv,pwc,buf,2);
52 unsigned char buf[2]; local
61 ret = gb2312_wctomb(conv,buf,wc,2);
66 r[0] = buf[0]+0x80;
67 r[1] = buf[1]+0x80;
H A Deuc_kr.h41 unsigned char buf[2]; local
42 buf[0] = c-0x80; buf[1] = c2-0x80;
43 return ksc5601_mbtowc(conv,pwc,buf,2);
54 unsigned char buf[2]; local
63 ret = ksc5601_wctomb(conv,buf,wc,2);
68 r[0] = buf[0]+0x80;
69 r[1] = buf[1]+0x80;
/macosx-10.10/ppp-786.1.1/Helpers/pppd/
H A Dmagic.h71 void random_bytes __P((unsigned char *buf, int len));
/macosx-10.10/tcl-105/tcl_ext/tcllib/tcllib/modules/md4/
H A Dmd4_check.c20 md4(const char *buf, size_t len, unsigned char *res) argument
24 MD4_Update(&ctx, buf, len);
31 char buf[80], *p; local
34 for (cn = 0, p = buf; cn < len; cn++, p += 2) {
37 puts(buf);
44 char buf[256]; local
47 memset(buf, 'a', 256);
50 md4(buf, cn, r);
/macosx-10.10/tcpdump-61/tcpdump/
H A Ddecode_prefix.h36 extern int decode_prefix4(const u_char *pptr, u_int itemlen, char *buf, u_int buflen);
38 extern int decode_prefix6(const u_char *pd, u_int itemlen, char *buf, u_int buflen);
/macosx-10.10/postfix-255/postfix/src/util/
H A Dmac_parse.c11 /* int (*action)(int type, VSTRING *buf, char *context);
76 #define MAC_PARSE_ACTION(status, type, buf, context) \
78 VSTRING_TERMINATE(buf); \
79 status |= action((type), (buf), (context)); \
80 VSTRING_RESET(buf); \
88 VSTRING *buf = vstring_alloc(1); /* result buffer */ local
107 VSTRING_ADDCH(buf, *vp);
110 VSTRING_ADDCH(buf, *vp);
113 if (VSTRING_LEN(buf) > 0)
114 MAC_PARSE_ACTION(status, MAC_PARSE_LITERAL, buf, contex
169 mac_parse_print(int type, VSTRING *buf, char *unused_context) argument
189 VSTRING *buf = vstring_alloc(1); local
[all...]
/macosx-10.10/dyld-353.2.1/unit-tests/test-cases/rpath-dlopen-rm-executable/
H A Dmain.c34 char buf[2048]; local
35 uint32_t bufSize = sizeof(buf);
36 if ( _NSGetExecutablePath(buf, &bufSize) ) {
41 unlink(buf);
/macosx-10.10/Libc-1044.1.2/stdio/FreeBSD/
H A Dsetbuffer.c42 setbuffer(fp, buf, size)
44 char *buf;
48 (void)setvbuf(fp, buf, buf ? _IOFBF : _IONBF, (size_t)size);
H A Dsetbuf.c43 setbuf(FILE * __restrict fp, char * __restrict buf) argument
45 (void) setvbuf(fp, buf, buf ? _IOFBF : _IONBF, BUFSIZ);
/macosx-10.10/OpenSSH-189/openssh/
H A Droaming_dummy.c39 roaming_write(int fd, const void *buf, size_t count, int *cont) argument
41 return write(fd, buf, count);
45 roaming_read(int fd, void *buf, size_t count, int *cont) argument
49 return read(fd, buf, count);
/macosx-10.10/Security-57031.1.35/Security/libsecurity_apple_csp/lib/
H A DYarrowConnection.cpp39 void cspGetRandomBytes(void *buf, unsigned len) argument
41 yarrowConnection().random(buf, len);
44 void cspAddEntropy(const void *buf, unsigned len) argument
47 yarrowConnection().addEntropy(buf, len);
/macosx-10.10/gnutar-453/gnutar/lib/
H A Dargp-fmtstream.c75 fs->buf = (char *) malloc (INIT_BUF_SIZE);
76 if (! fs->buf)
83 fs->p = fs->buf;
84 fs->end = fs->buf + INIT_BUF_SIZE;
102 if (fs->p > fs->buf)
105 __fxprintf (fs->stream, "%.*s", (int) (fs->p - fs->buf), fs->buf);
107 fwrite_unlocked (fs->buf, 1, fs->p - fs->buf, fs->stream);
110 free (fs->buf);
124 char *buf, *nl; local
[all...]
H A Dsafe-write.h25 extern size_t safe_write (int fd, const void *buf, size_t count);
/macosx-10.10/groff-38/groff/src/libs/libgroff/
H A Dgetcwd.c28 char *getcwd(buf, size)
29 char *buf;
51 strcpy(buf, mybuf);
52 return buf;
H A Ditoa.c31 static char buf[INT_DIGITS + 2]; local
32 char *p = buf + INT_DIGITS + 1; /* points to terminating '\0' */
53 static char buf[UINT_DIGITS + 1]; local
54 char *p = buf + UINT_DIGITS; /* points to terminating '\0' */
/macosx-10.10/ntp-92/libntp/
H A Dnumtoa.c23 register char *buf; local
26 LIB_GETBUF(buf);
27 snprintf(buf, LIB_BUFLENGTH, "%lu.%lu.%lu.%lu",
32 return buf;
/macosx-10.10/xnu-2782.1.97/libsyscall/mach/
H A Dmach_error.c74 char buf[1024]; local
80 _mach_snprintf(buf, sizeof(buf), "%s %s (%x)", mach_error_type(err), err_str, err);
81 err_str = buf;
/macosx-10.10/emacs-93/emacs/src/
H A Dbuffer.h109 #define BUF_BEG(buf) (BEG)
110 #define BUF_BEG_BYTE(buf) (BEG_BYTE)
113 #define BUF_BEGV(buf) ((buf)->begv)
114 #define BUF_BEGV_BYTE(buf) ((buf)->begv_byte)
117 #define BUF_PT(buf) ((buf)->pt)
118 #define BUF_PT_BYTE(buf) ((buf)
[all...]
/macosx-10.10/Libc-1044.1.2/compat-43/FreeBSD/
H A Dgetwd.c43 getwd(char *buf) argument
47 if ( (p = getcwd(buf, MAXPATHLEN)) )
49 (void)strerror_r(errno, buf, MAXPATHLEN);
/macosx-10.10/Security-57031.1.35/securityd/libsecurity_agent/lib/
H A Dutils.c22 uuid_to_string(const uuid_t uuid, char *buf) argument
24 uuid_unparse_lower(uuid, buf);
25 return buf;
/macosx-10.10/Security-57031.1.35/securityd/libsecurity_agent/security_agent_client/
H A Dutils.c22 uuid_to_string(const uuid_t uuid, char *buf) argument
24 uuid_unparse_lower(uuid, buf);
25 return buf;
/macosx-10.10/Security-57031.1.35/securityd/security_agent_client/
H A Dutils.c22 uuid_to_string(const uuid_t uuid, char *buf) argument
24 uuid_unparse_lower(uuid, buf);
25 return buf;
/macosx-10.10/Security-57031.1.35/securityd/security_agent_server/
H A Dutils.c22 uuid_to_string(const uuid_t uuid, char *buf) argument
24 uuid_unparse_lower(uuid, buf);
25 return buf;
/macosx-10.10/apr-32/apr/apr/test/
H A Dproc_child.c13 char buf[256]; local
16 bytes = (int)read(STDIN_FILENO, buf, 256);
18 write(STDOUT_FILENO, buf, (unsigned int)bytes);
/macosx-10.10/curl-83.1.2/curl/lib/
H A Dinet_ntop.h27 char *Curl_inet_ntop(int af, const void *addr, char *buf, size_t size);
33 #define Curl_inet_ntop(af,addr,buf,size) \
34 inet_ntop(af,addr,buf,(curl_socklen_t)size)

Completed in 390 milliseconds

1234567891011>>