Symbol: i64
crypto/krb5/src/lib/krb5/krb/init_ctx.c
169
uint64_t i64;
crypto/krb5/src/lib/krb5/krb/init_ctx.c
170
assert(sizeof(i64) == 8);
crypto/krb5/src/lib/krb5/krb/init_ctx.c
171
i64 = 0, i64--, i64 >>= 62;
crypto/krb5/src/lib/krb5/krb/init_ctx.c
172
assert(i64 == 3);
crypto/krb5/src/lib/krb5/krb/init_ctx.c
173
i64 = 1, i64 <<= 31, i64 <<= 31, i64 <<= 1;
crypto/krb5/src/lib/krb5/krb/init_ctx.c
174
assert(i64 != 0);
crypto/krb5/src/lib/krb5/krb/init_ctx.c
175
i64 <<= 1;
crypto/krb5/src/lib/krb5/krb/init_ctx.c
176
assert(i64 == 0);
crypto/openssl/crypto/params.c
1179
int64_t i64;
crypto/openssl/crypto/params.c
1215
i64 = *(const int64_t *)p->data;
crypto/openssl/crypto/params.c
1216
u64 = i64 < 0 ? -i64 : i64;
crypto/openssl/crypto/params.c
1218
*val = 0.0 + i64;
crypto/openssl/crypto/params.c
406
int64_t i64;
crypto/openssl/crypto/params.c
413
i64 = *(const int64_t *)p->data;
crypto/openssl/crypto/params.c
414
if (i64 >= INT32_MIN && i64 <= INT32_MAX) {
crypto/openssl/crypto/params.c
415
*val = (int32_t)i64;
crypto/openssl/crypto/params.c
580
int64_t i64;
crypto/openssl/crypto/params.c
592
i64 = *(const int64_t *)p->data;
crypto/openssl/crypto/params.c
593
if (i64 >= 0 && i64 <= UINT32_MAX) {
crypto/openssl/crypto/params.c
594
*val = (uint32_t)i64;
crypto/openssl/crypto/params.c
597
if (i64 < 0)
crypto/openssl/crypto/params.c
886
int64_t i64;
crypto/openssl/crypto/params.c
898
i64 = *(const int64_t *)p->data;
crypto/openssl/crypto/params.c
899
if (i64 >= 0) {
crypto/openssl/crypto/params.c
900
*val = (uint64_t)i64;
crypto/openssl/test/json_test.c
560
#define GET_I64() (GET_WORD().i64)
crypto/openssl/test/json_test.c
61
int64_t i64;
crypto/openssl/test/param_build_test.c
164
|| !TEST_true(OSSL_PARAM_get_int64(p, &i64))
crypto/openssl/test/param_build_test.c
165
|| !TEST_long_eq((long)i64, -9999999)
crypto/openssl/test/param_build_test.c
244
uint64_t i64;
crypto/openssl/test/param_build_test.c
322
|| !TEST_true(OSSL_PARAM_get_uint64(p, &i64))
crypto/openssl/test/param_build_test.c
323
|| !TEST_ulong_eq((unsigned long)i64, 9999999)
crypto/openssl/test/param_build_test.c
451
uint64_t i64;
crypto/openssl/test/param_build_test.c
502
|| !TEST_true(OSSL_PARAM_get_uint64(p, &i64))
crypto/openssl/test/param_build_test.c
503
|| !TEST_ulong_eq((unsigned long)i64, 9999999)
crypto/openssl/test/param_build_test.c
96
int64_t i64;
crypto/openssl/test/params_api_test.c
122
int64_t i64;
crypto/openssl/test/params_api_test.c
136
|| !TEST_true(OSSL_PARAM_get_int64(param, &i64)))
crypto/openssl/test/params_api_test.c
141
|| !TEST_true(OSSL_PARAM_get_uint64(param, (uint64_t *)&i64))
crypto/openssl/test/params_api_test.c
155
le_copy(buf, sizeof(i64), &i64, sizeof(i64));
crypto/openssl/test/params_api_test.c
156
sz = sizeof(i64) < width ? sizeof(i64) : width;
crypto/openssl/test/params_api_test.c
170
|| !TEST_true(OSSL_PARAM_get_int64(param, &i64))
crypto/openssl/test/params_api_test.c
171
|| !TEST_size_t_eq((size_t)i64, 12345))
crypto/openssl/test/params_api_test.c
175
|| !TEST_true(OSSL_PARAM_get_uint64(param, (uint64_t *)&i64))
crypto/openssl/test/params_api_test.c
176
|| !TEST_size_t_eq((size_t)i64, 12345))
crypto/openssl/test/params_api_test.c
617
int64_t i64;
crypto/openssl/test/params_api_test.c
628
params[n++] = OSSL_PARAM_construct_int64("int64", &i64);
crypto/openssl/test/params_api_test.c
664
|| !TEST_true(OSSL_PARAM_get_int64(cp, &i64))
crypto/openssl/test/params_api_test.c
666
|| !TEST_size_t_eq((size_t)i64, 3 + j)) {
crypto/openssl/test/params_conversion_test.c
146
datum_i64 = ref_i64 = pc->i64;
crypto/openssl/test/params_conversion_test.c
187
int64_t i64;
crypto/openssl/test/params_conversion_test.c
214
if (!TEST_false(OSSL_PARAM_get_int64(pc->param, &i64))
crypto/openssl/test/params_conversion_test.c
220
if (!TEST_true(OSSL_PARAM_get_int64(pc->param, &i64))
crypto/openssl/test/params_conversion_test.c
221
|| !TEST_true(i64 == pc->i64)) {
crypto/openssl/test/params_conversion_test.c
226
if (!TEST_true(OSSL_PARAM_set_int64(pc->param, i64))
crypto/openssl/test/params_conversion_test.c
26
int64_t i64;
crypto/openssl/test/params_conversion_test.c
87
pc->i64 = (int64_t)strtoimax(pp->value, &p, 10);
stand/ficl/math64.c
215
void i64Push(FICL_STACK *pStack, DPINT i64)
stand/ficl/math64.c
217
stackPushINT(pStack, i64.lo);
stand/ficl/math64.c
218
stackPushINT(pStack, i64.hi);
stand/ficl/math64.h
57
void i64Push(FICL_STACK *pStack, DPINT i64);
stand/ficl/math64.h
74
#define i64Extend(i64) (i64).hi = ((i64).lo < 0) ? -1L : 0
stand/ficl/math64.h
75
#define m64CastIU(i64) (*(DPUNS *)(&(i64)))
sys/amd64/amd64/bpf_jit_machdep.h
140
#define MOViq(i64, r64) do { \
sys/amd64/amd64/bpf_jit_machdep.h
143
emitm(&stream, i64, 4); \
sys/amd64/amd64/bpf_jit_machdep.h
144
emitm(&stream, (i64 >> 32), 4); \
sys/dev/bhnd/nvram/bhnd_nvram_value.c
1055
int64_t i64;
sys/dev/bhnd/nvram/bhnd_nvram_value.c
1112
intv.i64 = *(const int8_t *)inp;
sys/dev/bhnd/nvram/bhnd_nvram_value.c
1120
intv.i64 = *(const int16_t *)inp;
sys/dev/bhnd/nvram/bhnd_nvram_value.c
1128
intv.i64 = *(const int32_t *)inp;
sys/dev/bhnd/nvram/bhnd_nvram_value.c
1136
intv.i64 = *(const int32_t *)inp;
sys/dev/bhnd/nvram/bhnd_nvram_value.c
1145
if (intv.i64 < 0) {
sys/dev/bhnd/nvram/bhnd_nvram_value.c
1148
intv.i64, bhnd_nvram_type_name(otype));
sys/dev/bhnd/nvram/bhnd_nvram_value.c
1154
intv.u64 = intv.i64;
sys/dev/bhnd/nvram/bhnd_nvram_value.c
1166
intv.i64 = intv.u64;
sys/dev/bhnd/nvram/bhnd_nvram_value.c
1234
if (intv.i64 < INT8_MIN || intv.i64 > INT8_MAX)
sys/dev/bhnd/nvram/bhnd_nvram_value.c
1239
*((int8_t *)outp) = (int8_t)intv.i64;
sys/dev/bhnd/nvram/bhnd_nvram_value.c
1244
if (intv.i64 < INT16_MIN || intv.i64 > INT16_MAX)
sys/dev/bhnd/nvram/bhnd_nvram_value.c
1249
*((int16_t *)outp) = (int16_t)intv.i64;
sys/dev/bhnd/nvram/bhnd_nvram_value.c
1254
if (intv.i64 < INT32_MIN || intv.i64 > INT32_MAX)
sys/dev/bhnd/nvram/bhnd_nvram_value.c
1259
*((int32_t *)outp) = (int32_t)intv.i64;
sys/dev/bhnd/nvram/bhnd_nvram_value.c
1266
*((int64_t *)outp) = intv.i64;
sys/dev/bhnd/nvram/bhnd_nvram_value.c
1275
len = snprintf(outp, limit, "%" PRId64, intv.i64);
sys/dev/bhnd/nvram/bhnd_nvram_value.h
233
int64_t i64[1]; /**< 64-bit signed data */
sys/dev/bhnd/nvram/bhnd_nvram_value_prf.c
627
int64_t i64;