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

  /src/external/bsd/unbound/dist/dnstap/
dnstap.c 62 size_t len_buf; member in struct:dt_msg
115 dt_send(const struct dt_env *env, void *buf, size_t len_buf)
117 dt_msg_queue_submit(env->msgqueue, buf, len_buf);
483 if (dt_pack(&dm.d, &dm.buf, &dm.len_buf))
484 dt_send(env, dm.buf, dm.len_buf);
521 if (dt_pack(&dm.d, &dm.buf, &dm.len_buf))
522 dt_send(env, dm.buf, dm.len_buf);
575 if (dt_pack(&dm.d, &dm.buf, &dm.len_buf))
576 dt_send(env, dm.buf, dm.len_buf);
637 if (dt_pack(&dm.d, &dm.buf, &dm.len_buf))
    [all...]
  /src/external/bsd/wpa/dist/src/crypto/
aes-gcm.c 194 u8 len_buf[16]; local
208 WPA_PUT_BE64(len_buf, 0);
209 WPA_PUT_BE64(len_buf + 8, iv_len * 8);
210 ghash(H, len_buf, sizeof(len_buf), J0);
232 u8 len_buf[16]; local
243 WPA_PUT_BE64(len_buf, aad_len * 8);
244 WPA_PUT_BE64(len_buf + 8, crypt_len * 8);
245 ghash(H, len_buf, sizeof(len_buf), S)
    [all...]
  /src/external/bsd/nsd/dist/dnstap/
dnstap.c 70 size_t len_buf; member in struct:dt_msg
98 dt_send(const struct dt_env *env, void *buf, size_t len_buf)
103 res = fstrm_iothr_submit(env->iothr, env->ioq, buf, len_buf,
867 if (dt_pack(&dm.d, &dm.buf, &dm.len_buf))
868 dt_send(env, dm.buf, dm.len_buf);
912 if (dt_pack(&dm.d, &dm.buf, &dm.len_buf))
913 dt_send(env, dm.buf, dm.len_buf);
  /src/external/bsd/wpa/dist/src/wps/
wps_upnp_web.c 315 char len_buf[10]; local
405 os_snprintf(len_buf, 10, "%d", body_length);
406 os_memcpy(put_length_here, len_buf, os_strlen(len_buf));
852 char len_buf[10]; local
853 os_snprintf(len_buf, sizeof(len_buf), "%d", body_length);
854 os_memcpy(put_length_here, len_buf, os_strlen(len_buf));
wps_er.c 953 char len_buf[10]; local
956 os_snprintf(len_buf, sizeof(len_buf), "%d",
958 os_memcpy(len_ptr, len_buf, os_strlen(len_buf));
  /src/usr.bin/xlint/lint1/
lex.c 1402 buffer *len_buf = xcalloc(1, sizeof(*len_buf)); local
1403 len_buf->len = wide_length(&str);
1404 yylval.y_string = len_buf;
  /src/external/bsd/libarchive/dist/libarchive/
archive_write_set_format_zip.c 221 size_t len_buf; member in struct:zip
753 zip->len_buf = 65536;
754 zip->buf = malloc(zip->len_buf);
1338 zip->stream.deflate.avail_out = (uInt)zip->len_buf;
1351 zip->stream.bzip2.avail_out = (unsigned int)zip->len_buf;
1379 zip->stream.zstd.out.size = zip->len_buf;
1411 zip->stream.lzma.context.avail_out = (unsigned int)zip->len_buf;
1466 zip->stream.lzma.context.avail_out = (unsigned int)zip->len_buf;
1526 zip->buf, zip->len_buf);
1528 l = zip->len_buf;
    [all...]

Completed in 24 milliseconds