HomeSort by: relevance | last modified time | path
    Searched defs:buf4 (Results 1 - 21 of 21) sorted by relevancy

  /src/sys/lib/libkern/
crc32.c 36 #define DOLIT4 c ^= *buf4++; \
45 register const u4 *buf4; local
56 buf4 = (const u4 *)(const void *)buf;
65 buf = (const unsigned char *)buf4;
77 #define DOBIG4 c ^= *++buf4; \
86 register const u4 *buf4; local
97 buf4 = (const u4 *)(const void *)buf;
98 buf4--;
107 buf4++;
108 buf = (const unsigned char *)buf4;
    [all...]
  /src/sys/external/isc/libsodium/dist/test/default/
codecs.c 9 unsigned char buf4[4]; local
25 sodium_hex2bin(buf4, sizeof buf4, hex, strlen(hex), ": ", &bin_len,
28 buf4[0], buf4[1], buf4[2], buf4[3]);
32 sodium_hex2bin(buf4, sizeof buf4, hex, strlen(hex), ": ", &bin_len, NULL);
34 buf4[0], buf4[1], buf4[2], buf4[3])
    [all...]
  /src/sys/netinet6/
in6_print.c 54 char buf4[INET_ADDRSTRLEN]; local
56 in_print(buf4, sizeof(buf4), &ia);
57 return snprintf(buf, len, "::ffff:%s", buf4);
  /src/usr.sbin/eeprom/
prephandlers.c 186 char buf1[BUFSIZE], buf2[BUFSIZE], buf3[BUFSIZE], buf4[BUFSIZE]; local
205 memset(buf4, 0, sizeof(buf4));
209 nvio2.pnv_buf = buf4;
227 memset(nvio2.pnv_buf, 0, sizeof(buf4));
228 nvio2.pnv_buflen = sizeof(buf4);
ofhandlers.c 214 char buf1[BUFSIZE], buf2[BUFSIZE], buf3[BUFSIZE], buf4[BUFSIZE]; local
235 ofio2.of_buf = buf4;
272 memset(ofio2.of_buf, 0, sizeof(buf4));
273 ofio2.of_buflen = sizeof(buf4);
ophandlers.c 206 char buf1[BUFSIZE], buf2[BUFSIZE], buf3[BUFSIZE], buf4[BUFSIZE]; local
227 opio2.op_buf = buf4;
261 memset(opio2.op_buf, 0, sizeof(buf4));
262 opio2.op_buflen = sizeof(buf4);
  /src/external/cddl/osnet/dist/uts/common/zmod/
crc32.c 261 #define DOLIT4 c ^= *buf4++; \
273 register const u4 FAR *buf4; local
282 buf4 = (const u4 FAR *)(const void FAR *)buf;
291 buf = (const unsigned char FAR *)buf4;
301 #define DOBIG4 c ^= *++buf4; \
313 register const u4 FAR *buf4; local
322 buf4 = (const u4 FAR *)(const void FAR *)buf;
323 buf4--;
332 buf4++;
333 buf = (const unsigned char FAR *)buf4;
    [all...]
  /src/external/bsd/ntp/dist/libntp/lib/isc/win32/
interfaceiter.c 63 INTERFACE_INFO *buf4; /* Buffer for WSAIoctl data. */ member in struct:isc_interfaceiter
143 iter->buf4 = NULL;
239 iter->buf4 = isc_mem_get(mctx, iter->buf4size);
240 if (iter->buf4 == NULL) {
246 0, 0, iter->buf4, iter->buf4size,
280 isc_mem_put(mctx, iter->buf4, iter->buf4size);
385 if (iter->buf4 != NULL)
386 isc_mem_put(mctx, iter->buf4, iter->buf4size);
695 iter->pos4 = (INTERFACE_INFO *)(iter->buf4 + (iter->v4IF));
698 if (&(iter->pos4) < &(iter->buf4))
    [all...]
  /src/external/lgpl3/mpfr/dist/tests/
tsprintf.c 1639 char buf1[4] = "xxx", buf2[4] = "xxx", buf3[4] = "xxx", buf4[4] = "xxx"; local
1669 r = mpfr_sprintf (buf4, "%.2147483648Rg\n", x);
1675 MPFR_ASSERTN (buf4[0] == '1' && buf4[1] == '\n' && buf4[2] == 0);
  /src/external/gpl3/gdb/dist/sim/d10v/
interp.c 1051 char buf4[40]; local
1088 cond_size, add_commas (buf4, sizeof (buf4), left_cond),
1096 cond_size, add_commas (buf4, sizeof (buf4), right_cond),
  /src/external/gpl3/gdb.old/dist/sim/d10v/
interp.c 1051 char buf4[40]; local
1088 cond_size, add_commas (buf4, sizeof (buf4), left_cond),
1096 cond_size, add_commas (buf4, sizeof (buf4), right_cond),
  /src/external/gpl3/gcc/dist/libgfortran/io/
transfer.c 3925 GFC_INTEGER_4 buf4; local
3943 buf4 = buf;
3944 return swrite (dtp->u.p.current_unit->s, &buf4, len);
3964 buf4 = buf;
3965 memcpy (&u32, &buf4, sizeof (u32));
  /src/external/gpl3/gcc.old/dist/libgfortran/io/
transfer.c 3868 GFC_INTEGER_4 buf4; local
3886 buf4 = buf;
3887 return swrite (dtp->u.p.current_unit->s, &buf4, len);
3907 buf4 = buf;
3908 memcpy (&u32, &buf4, sizeof (u32));
  /src/external/gpl3/gdb/dist/gdb/
hppa-tdep.c 1973 gdb_byte buf4[4];
1976 if (!safe_frame_unwind_memory (this_frame, pc, buf4))
1983 inst = extract_unsigned_integer (buf4, sizeof buf4, byte_order);
1970 gdb_byte buf4[4]; local
  /src/external/gpl3/gdb/dist/gdbserver/
linux-s390-low.cc 1780 static const unsigned char buf4[] = { local
1796 add_insns (buf4, sizeof buf4);
2489 static const unsigned char buf4[] = { local
2504 add_insns (buf4, sizeof buf4);
  /src/external/gpl3/gdb.old/dist/gdb/
hppa-tdep.c 1974 gdb_byte buf4[4];
1977 if (!safe_frame_unwind_memory (this_frame, pc, buf4))
1984 inst = extract_unsigned_integer (buf4, sizeof buf4, byte_order);
1971 gdb_byte buf4[4]; local
  /src/external/gpl3/gdb.old/dist/gdbserver/
linux-s390-low.cc 1784 static const unsigned char buf4[] = { local
1800 add_insns (buf4, sizeof buf4);
2493 static const unsigned char buf4[] = { local
2508 add_insns (buf4, sizeof buf4);
  /src/crypto/external/bsd/netpgp/dist/bindings/perl/
netpgpperl_wrap.c 2504 char *buf4 = 0 ; local
2527 res4 = SWIG_AsCharPtrAndSize(ST(3), &buf4, NULL, &alloc4);
2531 arg4 = (char *)(buf4);
2537 if (alloc4 == SWIG_NEWOBJ) free((char*)buf4);
2543 if (alloc4 == SWIG_NEWOBJ) free((char*)buf4);
3057 char *buf4 = 0 ; local
3082 res4 = SWIG_AsCharPtrAndSize(ST(3), &buf4, NULL, &alloc4);
3086 arg4 = (char *)(buf4);
3097 if (alloc4 == SWIG_NEWOBJ) free((char*)buf4);
3104 if (alloc4 == SWIG_NEWOBJ) free((char*)buf4);
3190 char *buf4 = 0 ; local
3600 char *buf4 = 0 ; local
    [all...]
  /src/crypto/external/bsd/netpgp/dist/bindings/tcl/
netpgptcl_wrap.c 2370 char *buf4 = 0 ; local
2389 res4 = SWIG_AsCharPtrAndSize(objv[4], &buf4, NULL, &alloc4);
2393 arg4 = (char *)(buf4);
2397 if (alloc4 == SWIG_NEWOBJ) free((char*)buf4);
2401 if (alloc4 == SWIG_NEWOBJ) free((char*)buf4);
2719 char *buf4 = 0 ; local
2740 res4 = SWIG_AsCharPtrAndSize(objv[4], &buf4, NULL, &alloc4);
2744 arg4 = (char *)(buf4);
2754 if (alloc4 == SWIG_NEWOBJ) free((char*)buf4);
2759 if (alloc4 == SWIG_NEWOBJ) free((char*)buf4);
2834 char *buf4 = 0 ; local
    [all...]
  /src/crypto/external/bsd/netpgp/dist/bindings/python/
netpgppython_wrap.c 3416 char *buf4 = 0 ; variable
3439 res4 = SWIG_AsCharPtrAndSize(obj3, &buf4, NULL, &alloc4);
3443 arg4 = (char *)(buf4);
3447 if (alloc4 == SWIG_NEWOBJ) free((char*)buf4);
3451 if (alloc4 == SWIG_NEWOBJ) free((char*)buf4);
3907 char *buf4 = 0 ; variable
3933 res4 = SWIG_AsCharPtrAndSize(obj3, &buf4, NULL, &alloc4);
3937 arg4 = (char *)(buf4);
3947 if (alloc4 == SWIG_NEWOBJ) free((char*)buf4);
3952 if (alloc4 == SWIG_NEWOBJ) free((char*)buf4);
4031 char *buf4 = 0 ; variable
4404 char *buf4 = 0 ; variable
    [all...]
  /src/external/bsd/ntp/dist/ntpd/
refclock_ripencc.c 2447 unsigned char *buf, *buf4; local
2469 buf4 = &buf[4];
2475 alminfo->t_oa_raw = buf4[0];
2476 alminfo->SV_health = buf4[1];
2477 alminfo->e = bGetSingle(&buf4[2]);
2478 alminfo->t_oa = bGetSingle(&buf4[6]);
2479 alminfo->i_0 = bGetSingle(&buf4[10]);
2480 alminfo->OMEGADOT = bGetSingle(&buf4[14]);
2481 alminfo->sqrt_A = bGetSingle(&buf4[18]);
2482 alminfo->OMEGA_0 = bGetSingle(&buf4[22])
    [all...]

Completed in 68 milliseconds