Home
last modified time | relevance | path

Searched refs:uint64 (Results 1 – 25 of 49) sorted by relevance

12

/freebsd/crypto/openssl/test/recipes/04-test_params_conversion_data/
H A Dnative_types.txt5 uint64=0
12 uint64=6
19 uint64=invalid
27 uint64=0
34 uint64=6
42 uint64=2147483647
50 uint64=2147483648
58 uint64=6
65 uint64=invalid
73 uint64=2147483647
[all …]
/freebsd/contrib/bc/tests/bc/
H A Dlib2_uint.txt67 uint64(0)
78 uint64(1)
90 uint64(127)
102 uint64(128)
114 uint64(129)
126 uint64(255)
138 uint64(256)
147 uint64(32767)
156 uint64(32768)
165 uint64(32769)
[all …]
/freebsd/contrib/llvm-project/lldb/source/Utility/
H A DTraceIntelPTGDBRemotePackets.cpp25 json::Value toJSON(const JSONUINT64 &uint64, bool hex) { in toJSON() argument
27 return json::Value(formatv("{0:x+}", uint64.value)); in toJSON()
29 return json::Value(formatv("{0}", uint64.value)); in toJSON()
32 bool fromJSON(const json::Value &value, JSONUINT64 &uint64, Path path) { in fromJSON() argument
34 uint64.value = *val; in fromJSON()
37 if (!val->getAsInteger(/*radix=*/0, uint64.value)) in fromJSON()
/freebsd/contrib/jemalloc/src/
H A Dstats.c324 COL_HDR(row, allocated, NULL, right, 13, uint64) in stats_arena_bins_print()
325 COL_HDR(row, nmalloc, NULL, right, 13, uint64) in stats_arena_bins_print()
326 COL_HDR(row, nmalloc_ps, "(#/sec)", right, 8, uint64) in stats_arena_bins_print()
327 COL_HDR(row, ndalloc, NULL, right, 13, uint64) in stats_arena_bins_print()
328 COL_HDR(row, ndalloc_ps, "(#/sec)", right, 8, uint64) in stats_arena_bins_print()
329 COL_HDR(row, nrequests, NULL, right, 13, uint64) in stats_arena_bins_print()
330 COL_HDR(row, nrequests_ps, "(#/sec)", right, 10, uint64) in stats_arena_bins_print()
336 COL_HDR_INIT(row, prof_live_requested, NULL, right, 21, uint64) in stats_arena_bins_print()
337 COL_HDR_INIT(row, prof_live_count, NULL, right, 17, uint64) in stats_arena_bins_print()
338 COL_HDR_INIT(row, prof_accum_requested, NULL, right, 21, uint64) in stats_arena_bins_print()
[all...]
/freebsd/sys/contrib/openzfs/module/zfs/
H A Dspa_history.c203 uint64_t uint64; in spa_history_log_notify() local
230 if (nvlist_lookup_uint64(nvl, ZPOOL_HIST_DSID, &uint64) == 0) in spa_history_log_notify()
231 fnvlist_add_uint64(hist_nvl, ZFS_EV_HIST_DSID, uint64); in spa_history_log_notify()
233 if (nvlist_lookup_uint64(nvl, ZPOOL_HIST_TXG, &uint64) == 0) in spa_history_log_notify()
234 fnvlist_add_uint64(hist_nvl, ZFS_EV_HIST_TXG, uint64); in spa_history_log_notify()
236 if (nvlist_lookup_uint64(nvl, ZPOOL_HIST_TIME, &uint64) == 0) in spa_history_log_notify()
237 fnvlist_add_uint64(hist_nvl, ZFS_EV_HIST_TIME, uint64); in spa_history_log_notify()
239 if (nvlist_lookup_uint64(nvl, ZPOOL_HIST_WHO, &uint64) == 0) in spa_history_log_notify()
240 fnvlist_add_uint64(hist_nvl, ZFS_EV_HIST_WHO, uint64); in spa_history_log_notify()
242 if (nvlist_lookup_uint64(nvl, ZPOOL_HIST_INT_EVENT, &uint64) == 0) in spa_history_log_notify()
[all …]
/freebsd/crypto/krb5/src/util/support/
H A Dipc_stream.c437 uint64_t uint64 = 0; in krb5int_ipc_stream_read_uint64() local
443 err = krb5int_ipc_stream_read (io_stream, &uint64, sizeof (uint64)); in krb5int_ipc_stream_read_uint64()
447 *out_uint64 = ntohll (uint64); in krb5int_ipc_stream_read_uint64()
459 int64_t uint64 = htonll (in_uint64); in krb5int_ipc_stream_write_uint64() local
464 err = krb5int_ipc_stream_write (io_stream, &uint64, sizeof (uint64)); in krb5int_ipc_stream_write_uint64()
/freebsd/crypto/openssh/
H A DPROTOCOL.krl10 uint64 KRL_MAGIC
12 uint64 krl_version
13 uint64 generated_date
14 uint64 flags
76 uint64 revoked_cert_serial
77 uint64 ...
86 uint64 serial_min
87 uint64 serial_max
99 uint64 serial_offset
H A DPROTOCOL.certkeys82 uint64 serial
86 uint64 valid after
87 uint64 valid before
102 uint64 serial
106 uint64 valid after
107 uint64 valid before
122 uint64 serial
126 uint64 valid after
127 uint64 valid before
139 uint64 serial
[all …]
H A DPROTOCOL532 uint64 f_bsize /* file system block size */
533 uint64 f_frsize /* fundamental fs block size */
534 uint64 f_blocks /* number of blocks (unit f_frsize) */
535 uint64 f_bfree /* free blocks in file system */
536 uint64 f_bavail /* free blocks for non-root */
537 uint64 f_files /* total file inodes */
538 uint64 f_ffree /* free file inodes */
539 uint64 f_favail /* free file inodes for to non-root */
540 uint64 f_fsid /* file system id */
541 uint64 f_flag /* bit mask of f_flag values */
[all …]
H A DPROTOCOL.u2f104 uint64 serial
108 uint64 valid after
109 uint64 valid before
122 uint64 serial
126 uint64 valid after
127 uint64 valid before
H A Dsntrup761.sh33 for t in int8 uint8 int16 uint16 int32 uint32 int64 uint64; do
H A Ded25519.sh39 for t in int8 uint8 int16 uint16 int32 uint32 int64 uint64; do
/freebsd/lib/libutil/tests/
H A Dexpand_number_test.c252 uint64_t uint64; in ATF_TC_BODY() local
259 ATF_REQUIRE_EQ(0, expand_number("18446744073709551615", &uint64)); in ATF_TC_BODY()
260 ATF_REQUIRE_EQ(UINT64_MAX, uint64); in ATF_TC_BODY()
261 ATF_REQUIRE_EQ(-1, expand_number("-1", &uint64)); in ATF_TC_BODY()
/freebsd/contrib/llvm-project/lldb/include/lldb/Utility/
H A DTraceIntelPTGDBRemotePackets.h76 llvm::json::Value toJSON(const JSONUINT64 &uint64, bool hex);
78 bool fromJSON(const llvm::json::Value &value, JSONUINT64 &uint64,
/freebsd/include/rpcsvc/
H A Dnfs_prot.x301 typedef unsigned hyper uint64; typedef
307 typedef uint64 fileid3;
308 typedef uint64 cookie3;
314 typedef uint64 size3;
315 typedef uint64 offset3;
400 uint64 fsid; /* device # */
/freebsd/sys/contrib/xen/
H A Dsysctl.h223 XEN_GUEST_HANDLE_64(uint64) trans_pt; /* Px transition table */
231 XEN_GUEST_HANDLE_64(uint64) triggers; /* Cx trigger counts */
232 XEN_GUEST_HANDLE_64(uint64) residencies; /* Cx residencies */
242 XEN_GUEST_HANDLE_64(uint64) pc;
243 XEN_GUEST_HANDLE_64(uint64) cc;
/freebsd/contrib/libcbor/examples/
H A Dcjson2cbor.c31 .uint64 = &cbor_builder_uint64_callback, in cjson_cbor_load()
77 callbacks->uint64(context, source->valueint); in cjson_cbor_stream_decode()
/freebsd/lib/libsdp/
H A Dutil.c294 uint64_t uint64; in sdp_print() member
326 SDP_GET64(value.uint64, start); in sdp_print()
327 printf("uint64 %ju\n", value.uint64); in sdp_print()
/freebsd/contrib/libpcap/
H A Dpcap-dos.h57 typedef unsigned long long uint64; typedef
62 typedef unsigned __int64 uint64; typedef
/freebsd/lib/libc/powerpc64/softfloat/
H A Dpowerpc-gcc.h36 typedef unsigned long long int uint64; typedef
/freebsd/lib/libc/riscv/softfloat/
H A Driscv-gcc.h36 typedef unsigned long long int uint64; typedef
/freebsd/lib/libc/powerpc/softfloat/
H A Dpowerpc-gcc.h40 typedef unsigned long long int uint64; typedef
/freebsd/lib/libc/arm/softfloat/
H A Darm-gcc.h40 typedef unsigned long long int uint64; typedef
/freebsd/usr.sbin/bluetooth/sdpcontrol/
H A Dsearch.c172 uint64_t uint64; in print_protocol_descriptor()
242 SDP_GET64(value.uint64, start); in print_protocol_descriptor()
243 fprintf(stdout, "u/int64 %ju\n", value.uint64); in print_protocol_descriptor()
171 uint64_t uint64; print_protocol_descriptor() member
/freebsd/sys/netpfil/pf/
H A Dpf_nv.h70 PF_NV_DEF_UINT(uint64, uint64_t, UINT64_MAX);

12