Searched refs:buf1 (Results 51 - 75 of 95) sorted by relevance

1234

/macosx-10.10/file_cmds-242/install/
H A Dxinstall.c572 char buf1[BUFFER_SIZE]; local
580 n1 = read(from_fd, buf1, sizeof(buf1));
586 rv = memcmp(buf1, buf2, n1);
/macosx-10.10/tcl-105/tcl_ext/tkimg/tkimg/compat/libtiff/tools/
H A Dbmp2tiff.c753 char *buf1 = buf; local
757 *buf1++ = *(buf + 2);
758 *buf1++ = *(buf + 1);
759 *buf1++ = tmp;
/macosx-10.10/bind9-45.101/bind9/bin/tests/names/
H A Dt_names.c1807 isc_buffer_t buf1; local
1818 isc_buffer_init(&buf1, test_name, len);
1819 isc_buffer_add(&buf1, len);
1827 dns_result = dns_name_fromtext(&dns_name1, &buf1, NULL, 0, &buf2);
1837 isc_buffer_invalidate(&buf1);
1838 isc_buffer_init(&buf1, junk1, BUFLEN);
1839 dns_result = dns_name_totext(&dns_name1, omit_final, &buf1);
1851 dns_result = dns_name_fromtext(&dns_name2, &buf1, NULL, 0, &buf3);
1971 unsigned char buf1[BIGBUFLEN]; local
1982 len = getmsg(datafile_name, buf1, BIGBUFLE
[all...]
/macosx-10.10/ncurses-44/ncurses/progs/
H A Dinfocmp.c340 char buf1[MAX_STRING], buf2[MAX_STRING]; local
374 dump_numeric(n1, buf1);
379 (void) printf("\t%s: %s, %s.\n", name, buf1, buf2);
384 (void) printf("\t%s= %s.\n", name, buf1);
400 dump_string(s1, buf1);
402 if (strcmp(buf1, buf2))
403 (void) printf("\t%s: %s, %s.\n", name, buf1, buf2);
/macosx-10.10/ICU-531.30/icuSources/common/
H A Dustring.cpp1143 u_memcmp(const UChar *buf1, const UChar *buf2, int32_t count) { argument
1145 const UChar *limit = buf1 + count;
1148 while (buf1 < limit) {
1149 result = (int32_t)(uint16_t)*buf1 - (int32_t)(uint16_t)*buf2;
1153 buf1++;
/macosx-10.10/apr-32/apr/apr/strings/
H A Dapr_snprintf.c181 char buf1[NDIG]; local
183 p1 = apr_ecvt(number, ndigit, &decpt, &sign, buf1);
524 char buf1[NDIG]; local
527 p = apr_fcvt(num, precision, &decimal_point, is_negative, buf1);
529 p = apr_ecvt(num, precision + 1, &decimal_point, is_negative, buf1);
/macosx-10.10/libresolv-57/
H A Dres_send.c456 * res_queriesmatch(buf1, eom1, buf2, eom2)
458 * in (buf1,eom1) and (buf2,eom2)?
467 res_queriesmatch(const u_char *buf1, const u_char *eom1, const u_char *buf2, const u_char *eom2) argument
469 const u_char *cp = buf1 + NS_HFIXEDSZ;
470 int qdcount = ntohs(((const HEADER*)buf1)->qdcount);
472 if (buf1 + NS_HFIXEDSZ > eom1 || buf2 + NS_HFIXEDSZ > eom2)
479 if ((((const HEADER *)buf1)->opcode == ns_o_update) &&
490 n = dn_expand(buf1, eom1, cp, tname, sizeof tname);
/macosx-10.10/system_cmds-643.1.1/latency.tproj/
H A Dlatency.c2239 log_range(kd_buf *kd_buffer, kd_buf *kd_start, kd_buf *kd_stop, kd_buf *kd_note, char *buf1) argument
2249 clen = strlen(buf1);
2253 fprintf(log_fp, "%s\n\n", buf1);
2304 char buf1[128]; local
2359 sprintf(buf1, "%-19.19s interrupt latency = %.1fus [timestamp %.1f]", ctime(&TOD_secs), i_latency, sample_timestamp);
2361 sprintf(buf1, "%-19.19s interrupt latency = %.1fus [sample %d]", &(ctime(&curr_time)[0]), i_latency, sample_generation);
2364 log_range((kd_buf *)my_buffer, kd_start, kd_stop, 0, buf1);
2379 char buf1[128]; local
2414 sprintf(buf1, "%-19.19s priority = %d, scheduling latency = %.1fus [timestamp %.1f]", ctime(&TOD_secs), s_priority, s_latency, sample_timestamp);
2416 sprintf(buf1, "
[all...]
/macosx-10.10/bind9-45.101/bind9/lib/dns/
H A Ddst_api.c957 unsigned char buf1[DST_KEY_MAXSIZE], buf2[DST_KEY_MAXSIZE]; local
961 isc_buffer_init(&b1, buf1, sizeof(buf1));
966 buf1[0] = buf1[1] = 0;
982 memmove(&buf1[4], &buf1[6], r1.length - 6);
H A Drequest.c1036 isc_buffer_t *buf1 = NULL; local
1051 result = isc_buffer_allocate(mctx, &buf1, 65535);
1066 result = dns_message_renderbegin(message, &cctx, buf1);
1091 isc_buffer_usedregion(buf1, &r);
1110 isc_buffer_free(&buf1);
1116 if (buf1 != NULL)
1117 isc_buffer_free(&buf1);
H A Dnsec3.c966 isc_buffer_t buf1; local
976 isc_buffer_init(&buf1, src->data + 1, src->length - 1);
977 isc_buffer_add(&buf1, src->length - 1);
978 isc_buffer_setactive(&buf1, src->length - 1);
983 &buf1, &dctx, 0, &buf2);
/macosx-10.10/smb-759.0/lib/
H A Dlibtest.c139 char buf1[256]; local
142 buf1[0] = buf2[0] = '\0';
143 CFStringGetCString(test_names[ii].expected, buf1, sizeof(buf1), kCFStringEncodingUTF8);
146 fprintf(stderr, "expected '%s' but received '%s'\n", buf1, buf2);
/macosx-10.10/BerkeleyDB-21/db/btree/
H A Dbt_verify.c869 void *buf1, *buf2, *tmpbuf; local
893 buf1 = buf2 = NULL;
936 tmpbuf = buf1;
937 buf1 = buf2;
1133 if (buf1 != NULL)
1134 __os_ufree(env, buf1);
/macosx-10.10/vim-55/src/
H A Dops.c5082 char_u *buf1; local
5281 * Prepare the leading characters in buf1[].
5285 buf1 = alloc((unsigned)length + NUMBUFLEN);
5286 if (buf1 == NULL)
5288 ptr = buf1;
5327 STRCAT(buf1, buf2);
5328 ins_str(buf1); /* insert the new number */
5329 vim_free(buf1);
6294 char_u buf1[50]; local
6461 vim_snprintf((char *)buf1, sizeo
[all...]
H A Dgui_xmdlg.c256 char buf1[TEMP_BUF_SIZE]; local
261 get_part(font, 13, buf1);
264 if (*buf1 != NUL && *buf2 != NUL)
265 vim_snprintf(buf, TEMP_BUF_SIZE, "%s-%s", buf1, buf2);
/macosx-10.10/Heimdal-398.1.2/lib/krb5/
H A Dinit_creds_pw.c546 char buf1[BUFSIZ], buf2[BUFSIZ]; local
584 password_data[0].data = buf1;
585 password_data[0].length = sizeof(buf1);
604 memset (buf1, 0, sizeof(buf1));
609 if (strcmp (buf1, buf2) == 0)
611 memset (buf1, 0, sizeof(buf1));
617 buf1,
642 strlcpy (newpw, buf1, newpw_s
[all...]
/macosx-10.10/ICU-531.30/icuSources/common/unicode/
H A Dustring.h784 * @param buf1 The first string to compare.
787 * @return When buf1 < buf2, a negative number is returned.
788 * When buf1 == buf2, 0 is returned.
789 * When buf1 > buf2, a positive number is returned.
793 u_memcmp(const UChar *buf1, const UChar *buf2, int32_t count);
/macosx-10.10/JavaScriptCore-7600.1.17/icu/unicode/
H A Dustring.h779 * @param buf1 The first string to compare.
782 * @return When buf1 < buf2, a negative number is returned.
783 * When buf1 == buf2, 0 is returned.
784 * When buf1 > buf2, a positive number is returned.
788 u_memcmp(const UChar *buf1, const UChar *buf2, int32_t count);
/macosx-10.10/WTF-7600.1.24/icu/unicode/
H A Dustring.h779 * @param buf1 The first string to compare.
782 * @return When buf1 < buf2, a negative number is returned.
783 * When buf1 == buf2, 0 is returned.
784 * When buf1 > buf2, a positive number is returned.
788 u_memcmp(const UChar *buf1, const UChar *buf2, int32_t count);
/macosx-10.10/WebCore-7600.1.25/icu/unicode/
H A Dustring.h779 * @param buf1 The first string to compare.
782 * @return When buf1 < buf2, a negative number is returned.
783 * When buf1 == buf2, 0 is returned.
784 * When buf1 > buf2, a positive number is returned.
788 u_memcmp(const UChar *buf1, const UChar *buf2, int32_t count);
/macosx-10.10/WebKit-7600.1.25/mac/icu/unicode/
H A Dustring.h779 * @param buf1 The first string to compare.
782 * @return When buf1 < buf2, a negative number is returned.
783 * When buf1 == buf2, 0 is returned.
784 * When buf1 > buf2, a positive number is returned.
788 u_memcmp(const UChar *buf1, const UChar *buf2, int32_t count);
/macosx-10.10/bootp-298/bootpd.tproj/
H A Dbsdpd.c314 char buf1[256]; local
317 snprintf(buf1, sizeof(buf1), format, 0);
319 if (strcmp(buf1, buf2) == 0) {
/macosx-10.10/rsync-45/rsync/
H A Dproto.h13 uint32 get_checksum1(char *buf1, int32 len);
/macosx-10.10/emacs-93/emacs/src/
H A Dw32.c1124 char buf1[SET_ENV_BUF_SIZE], buf2[SET_ENV_BUF_SIZE];
1127 ExpandEnvironmentStrings ((LPSTR) lpval, buf1, sizeof(buf1));
1129 strcpy (buf1, lpval);
1133 buf1);
1122 char buf1[SET_ENV_BUF_SIZE], buf2[SET_ENV_BUF_SIZE]; local
/macosx-10.10/ruby-106/ruby/
H A Dregparse.c2045 BBuf *buf1, *buf2, *pbuf = 0; local
2051 buf1 = dest->mbuf;
2075 r = or_code_range_buf(enc, buf1, 0, buf2, 0, &pbuf, env);
2078 r = and_code_range_buf(buf1, not1, buf2, not2, &pbuf, env);
2092 bbuf_free(buf1);
2103 BBuf *buf1, *buf2, *pbuf = 0; local
2109 buf1 = dest->mbuf;
2133 r = and_code_range_buf(buf1, 0, buf2, 0, &pbuf, env);
2136 r = or_code_range_buf(enc, buf1, not1, buf2, not2, &pbuf, env);
2150 bbuf_free(buf1);
[all...]

Completed in 411 milliseconds

1234