Symbol: exponent
games/random/random.c
114
int exponent = -64;
games/random/random.c
123
exponent -= 64;
games/random/random.c
131
if (__predict_false(exponent < -1074))
games/random/random.c
145
exponent -= shift;
games/random/random.c
163
return ldexp((double)significand, exponent);
lib/libc/stdio/vfprintf.c
231
static int exponent(char *, int, int);
lib/libc/stdio/vfprintf.c
796
expsize = exponent(expstr, expt - 1, expchar);
lib/libc/stdio/vfwprintf.c
237
static int exponent(wchar_t *, int, int);
lib/libc/stdio/vfwprintf.c
762
expsize = exponent(expstr, expt - 1, expchar);
lib/libfido2/src/tpm.c
111
uint32_t exponent; /* zero (meaning 2^16 + 1) */
lib/libfido2/src/tpm.c
248
expected.param.exponent = 0; /* meaning 2^16+1 */
regress/lib/libcrypto/rsa/rsa_method_test.c
118
generate_rsa_keypair(int bits, int exponent, RSA **out_priv, RSA **out_pub)
regress/lib/libcrypto/rsa/rsa_method_test.c
128
if (!BN_set_word(e, exponent))
sbin/unwind/libunbound/sldns/keyraw.c
424
BIGNUM* exponent = NULL;
sbin/unwind/libunbound/sldns/keyraw.c
426
if(!sldns_key_rsa_buf_bignum(key, len, &modulus, &exponent))
sbin/unwind/libunbound/sldns/keyraw.c
430
BN_free(exponent);
sbin/unwind/libunbound/sldns/keyraw.c
438
rsa->e = exponent;
sbin/unwind/libunbound/sldns/keyraw.c
442
if (!RSA_set0_key(rsa, modulus, exponent, NULL)) {
sbin/unwind/libunbound/sldns/keyraw.c
443
BN_free(exponent);
sbin/unwind/libunbound/sldns/wire2str.c
1702
loc_cm_print(char** str, size_t* sl, uint8_t mantissa, uint8_t exponent)
sbin/unwind/libunbound/sldns/wire2str.c
1707
if(exponent < 2) {
sbin/unwind/libunbound/sldns/wire2str.c
1708
if(exponent == 1)
sbin/unwind/libunbound/sldns/wire2str.c
1714
for(i=0; i<exponent-2; i++)
sbin/unwind/libunbound/validator/val_secalgo.c
1186
SECItem exponent = {siBuffer, NULL, 0};
sbin/unwind/libunbound/validator/val_secalgo.c
1205
exponent.data = key+offset;
sbin/unwind/libunbound/validator/val_secalgo.c
1206
exponent.len = exp;
sbin/unwind/libunbound/validator/val_secalgo.c
1218
if(SECITEM_CopyItem(pk->arena, &pk->u.rsa.publicExponent, &exponent)) {
sys/arch/hppa/spmath/cnv_float.h
180
#define Dbl_isinexact_to_fix(dbl_valueA,dbl_valueB,exponent) \
sys/arch/hppa/spmath/cnv_float.h
181
(exponent < (DBL_P-33) ? \
sys/arch/hppa/spmath/cnv_float.h
182
Dallp2(dbl_valueB) || Dallp1(dbl_valueA) << (DBL_EXP_LENGTH+1+exponent) : \
sys/arch/hppa/spmath/cnv_float.h
183
(exponent < (DBL_P-1) ? Dallp2(dbl_valueB) << (exponent + (33-DBL_P)) : \
sys/arch/hppa/spmath/cnv_float.h
186
#define Dbl_isoverflow_to_int(exponent,dbl_valueA,dbl_valueB) \
sys/arch/hppa/spmath/cnv_float.h
187
((exponent > SGL_FX_MAX_EXP + 1) || Dsign(dbl_valueA)==0 || \
sys/arch/hppa/spmath/cnv_float.h
190
#define Dbl_isone_roundbit(dbl_valueA,dbl_valueB,exponent) \
sys/arch/hppa/spmath/cnv_float.h
191
((exponent < (DBL_P - 33) ? \
sys/arch/hppa/spmath/cnv_float.h
192
Dallp1(dbl_valueA) >> ((30 - DBL_EXP_LENGTH) - exponent) : \
sys/arch/hppa/spmath/cnv_float.h
193
Dallp2(dbl_valueB) >> ((DBL_P - 2) - exponent)) & 1)
sys/arch/hppa/spmath/cnv_float.h
195
#define Dbl_isone_stickybit(dbl_valueA,dbl_valueB,exponent) \
sys/arch/hppa/spmath/cnv_float.h
196
(exponent < (DBL_P-34) ? \
sys/arch/hppa/spmath/cnv_float.h
197
(Dallp2(dbl_valueB) || Dallp1(dbl_valueA)<<(DBL_EXP_LENGTH+2+exponent)) : \
sys/arch/hppa/spmath/cnv_float.h
198
(exponent<(DBL_P-2) ? (Dallp2(dbl_valueB) << (exponent + (34-DBL_P))) : \
sys/arch/hppa/spmath/cnv_float.h
204
#define Int_from_sgl_mantissa(sgl_value,exponent) \
sys/arch/hppa/spmath/cnv_float.h
206
(unsigned)(Sall(sgl_value) << SGL_EXP_LENGTH)>>(31 - exponent)
sys/arch/hppa/spmath/cnv_float.h
208
#define Int_from_dbl_mantissa(dbl_valueA,dbl_valueB,exponent) \
sys/arch/hppa/spmath/cnv_float.h
210
if (exponent < 31) Dallp1(dbl_valueA) >>= 30 - exponent; \
sys/arch/hppa/spmath/cnv_float.h
218
#define Dint_from_sgl_mantissa(sgl_value,exponent,dresultA,dresultB) \
sys/arch/hppa/spmath/cnv_float.h
220
if (exponent <= 31) { \
sys/arch/hppa/spmath/cnv_float.h
222
Dintp2(dresultB) = (unsigned)Sall(sgl_value) >> (31 - exponent); \
sys/arch/hppa/spmath/cnv_float.h
225
Dintp1(dresultA) = Sall(sgl_value) >> (63 - exponent); \
sys/arch/hppa/spmath/cnv_float.h
226
Dintp2(dresultB) = Sall(sgl_value) << (exponent - 31); \
sys/arch/hppa/spmath/cnv_float.h
230
#define Dint_from_dbl_mantissa(dbl_valueA,dbl_valueB,exponent,destA,destB) \
sys/arch/hppa/spmath/cnv_float.h
231
{if (exponent < 32) { \
sys/arch/hppa/spmath/cnv_float.h
233
if (exponent <= 20) \
sys/arch/hppa/spmath/cnv_float.h
234
Dintp2(destB) = Dallp1(dbl_valueA) >> (20-exponent); \
sys/arch/hppa/spmath/cnv_float.h
236
52-exponent,Dintp2(destB)); \
sys/arch/hppa/spmath/cnv_float.h
239
if (exponent <= 52) { \
sys/arch/hppa/spmath/cnv_float.h
240
Dintp1(destA) = Dallp1(dbl_valueA) >> (52-exponent); \
sys/arch/hppa/spmath/cnv_float.h
241
if (exponent == 52) Dintp2(destB) = Dallp2(dbl_valueB); \
sys/arch/hppa/spmath/cnv_float.h
243
52-exponent,Dintp2(destB)); \
sys/arch/hppa/spmath/cnv_float.h
247
84-exponent,Dintp1(destA)); \
sys/arch/hppa/spmath/cnv_float.h
248
Dintp2(destB) = Dallp2(dbl_valueB) << (exponent-52); \
sys/arch/hppa/spmath/cnv_float.h
48
#define Sgl_isinexact_to_fix(sgl_value,exponent) \
sys/arch/hppa/spmath/cnv_float.h
49
((exponent < (SGL_P - 1)) ? \
sys/arch/hppa/spmath/cnv_float.h
50
(Sall(sgl_value) << (SGL_EXP_LENGTH + 1 + exponent)) : FALSE)
sys/arch/hppa/spmath/cnv_float.h
75
#define Sgl_isone_roundbit(sgl_value,exponent) \
sys/arch/hppa/spmath/cnv_float.h
76
((Sall(sgl_value) << (SGL_EXP_LENGTH + 1 + exponent)) >> 31)
sys/arch/hppa/spmath/cnv_float.h
78
#define Sgl_isone_stickybit(sgl_value,exponent) \
sys/arch/hppa/spmath/cnv_float.h
79
(exponent < (SGL_P - 2) ? \
sys/arch/hppa/spmath/cnv_float.h
80
Sall(sgl_value) << (SGL_EXP_LENGTH + 2 + exponent) : FALSE)
sys/arch/hppa/spmath/dbl_float.h
314
#define Dbl_setwrapped_exponent(dbl_value,exponent,op) \
sys/arch/hppa/spmath/dbl_float.h
315
Deposit_dexponent(dbl_value,(exponent op DBL_WRAP))
sys/arch/hppa/spmath/dbl_float.h
437
#define Dbl_normalize(dbl_opndA,dbl_opndB,exponent) \
sys/arch/hppa/spmath/dbl_float.h
440
exponent -= 8; \
sys/arch/hppa/spmath/dbl_float.h
444
exponent -= 4; \
sys/arch/hppa/spmath/dbl_float.h
448
exponent -= 1; \
sys/arch/hppa/spmath/dbl_float.h
497
#define Dbl_denormalize(opndp1,opndp2,exponent,guard,sticky,inexact) \
sys/arch/hppa/spmath/dbl_float.h
499
if (exponent >= (1-DBL_P)) { \
sys/arch/hppa/spmath/dbl_float.h
500
if (exponent >= -31) { \
sys/arch/hppa/spmath/dbl_float.h
501
guard = (Dallp2(opndp2) >> (-(exponent))) & 1; \
sys/arch/hppa/spmath/dbl_float.h
502
if (exponent < 0) sticky |= Dallp2(opndp2) << (32+exponent); \
sys/arch/hppa/spmath/dbl_float.h
503
if (exponent > -31) { \
sys/arch/hppa/spmath/dbl_float.h
504
Variable_shift_double(opndp1,opndp2,1-exponent,opndp2); \
sys/arch/hppa/spmath/dbl_float.h
505
Dallp1(opndp1) >>= 1-exponent; \
sys/arch/hppa/spmath/dbl_float.h
513
guard = (Dallp1(opndp1) >> (-32-(exponent))) & 1; \
sys/arch/hppa/spmath/dbl_float.h
514
if (exponent == -32) sticky |= Dallp2(opndp2); \
sys/arch/hppa/spmath/dbl_float.h
515
else sticky |= (Dallp2(opndp2) | Dallp1(opndp1) << (64+(exponent))); \
sys/arch/hppa/spmath/dbl_float.h
516
Dallp2(opndp2) = Dallp1(opndp1) >> (-31-(exponent)); \
sys/arch/hppa/spmath/sgl_float.h
191
#define Sgl_setwrapped_exponent(sgl_value,exponent,op) \
sys/arch/hppa/spmath/sgl_float.h
192
Deposit_sexponent(sgl_value,(exponent op SGL_WRAP))
sys/arch/hppa/spmath/sgl_float.h
257
#define Sgl_normalize(sgl_opnd,exponent) \
sys/arch/hppa/spmath/sgl_float.h
260
exponent -= 8; \
sys/arch/hppa/spmath/sgl_float.h
264
exponent -= 4; \
sys/arch/hppa/spmath/sgl_float.h
268
exponent -= 1; \
sys/arch/hppa/spmath/sgl_float.h
297
#define Sgl_denormalize(opnd,exponent,guard,sticky,inexact) \
sys/arch/hppa/spmath/sgl_float.h
299
if (exponent >= (1 - SGL_P)) { \
sys/arch/hppa/spmath/sgl_float.h
300
guard = (Sall(opnd) >> (-(exponent))) & 1; \
sys/arch/hppa/spmath/sgl_float.h
301
if (exponent < 0) sticky |= Sall(opnd) << (32+exponent); \
sys/arch/hppa/spmath/sgl_float.h
303
Sall(opnd) >>= (1-exponent); \
sys/dev/ata/atascsi.c
1263
u_int exponent = 0;
sys/dev/ata/atascsi.c
1268
exponent = (p2l_sect & ATA_ID_P2L_SECT_SIZE);
sys/dev/ata/atascsi.c
1271
return (exponent);
sys/dev/hid/hidmt.c
74
int log_extent, phy_extent, exponent;
sys/dev/hid/hidmt.c
84
exponent = h->unit_exponent;
sys/dev/hid/hidmt.c
85
if (exponent < -8 || exponent > 15) /* See above. */
sys/dev/hid/hidmt.c
87
if (exponent > 7)
sys/dev/hid/hidmt.c
88
exponent -= 16;
sys/dev/hid/hidmt.c
90
for (; exponent < 0 && log_extent <= INT_MAX / 10; exponent++)
sys/dev/hid/hidmt.c
92
for (; exponent > 0 && phy_extent <= INT_MAX / 10; exponent--)
sys/dev/hid/hidmt.c
94
if (exponent != 0)
sys/dev/ic/athn.c
968
athn_get_delta_slope(uint32_t coeff, uint32_t *exponent, uint32_t *mantissa)
sys/dev/ic/athn.c
983
*exponent = exp - 16;
sys/dev/pci/drm/i915/display/intel_color.c
849
unsigned int mantissa, exponent;
sys/dev/pci/drm/i915/display/intel_color.c
856
exponent = 3;
sys/dev/pci/drm/i915/display/intel_color.c
859
exponent--;
sys/dev/pci/drm/i915/display/intel_color.c
862
return (exponent << 6) |
sys/dev/pci/drm/i915/i915_perf.c
3971
static u64 oa_exponent_to_ns(struct i915_perf *perf, int exponent)
sys/dev/pci/drm/i915/i915_perf.c
3973
u64 nom = (2ULL << exponent) * NSEC_PER_SEC;
sys/dev/usb/if_otus.c
1899
otus_get_delta_slope(uint32_t coeff, uint32_t *exponent, uint32_t *mantissa)
sys/dev/usb/if_otus.c
1915
*exponent = exp - 16;
sys/dev/usb/uplcom.c
615
u_int mantissa, exponent;
sys/dev/usb/uplcom.c
657
exponent = 0;
sys/dev/usb/uplcom.c
659
if (exponent < 0x7) {
sys/dev/usb/uplcom.c
661
exponent++;
sys/dev/usb/uplcom.c
669
state->dwDTERate[1] = exponent << 1 | mantissa >> 8;
usr.bin/ssh/ssh-ecdsa.c
277
BIGNUM *exponent = NULL;
usr.bin/ssh/ssh-ecdsa.c
284
if ((r = sshbuf_get_bignum2(b, &exponent)) != 0)
usr.bin/ssh/ssh-ecdsa.c
290
if (EC_KEY_set_private_key(ec, exponent) != 1) {
usr.bin/ssh/ssh-ecdsa.c
303
BN_clear_free(exponent);
usr.bin/ssh/sshkey.c
2758
const BIGNUM *exponent;
usr.bin/ssh/sshkey.c
2763
if ((exponent = EC_KEY_get0_private_key(key)) == NULL)
usr.sbin/nsd/rdata.c
2117
loc_cm_print(struct buffer* output, uint8_t mantissa, uint8_t exponent)
usr.sbin/nsd/rdata.c
2121
if(exponent < 2) {
usr.sbin/nsd/rdata.c
2122
if(exponent == 1)
usr.sbin/nsd/rdata.c
2129
for(i=0; i<exponent-2; i++)
usr.sbin/nsd/simdzone/src/generic/loc.h
237
uint8_t exponent = 0;
usr.sbin/nsd/simdzone/src/generic/loc.h
238
while (exponent < 9 && centimeters >= poweroften[exponent+1])
usr.sbin/nsd/simdzone/src/generic/loc.h
239
exponent++;
usr.sbin/nsd/simdzone/src/generic/loc.h
241
uint8_t mantissa = (uint8_t)(centimeters / poweroften[exponent]);
usr.sbin/nsd/simdzone/src/generic/loc.h
245
*scientific = (uint8_t)(mantissa << 4) | exponent;
usr.sbin/unbound/sldns/keyraw.c
424
BIGNUM* exponent = NULL;
usr.sbin/unbound/sldns/keyraw.c
426
if(!sldns_key_rsa_buf_bignum(key, len, &modulus, &exponent))
usr.sbin/unbound/sldns/keyraw.c
430
BN_free(exponent);
usr.sbin/unbound/sldns/keyraw.c
438
rsa->e = exponent;
usr.sbin/unbound/sldns/keyraw.c
442
if (!RSA_set0_key(rsa, modulus, exponent, NULL)) {
usr.sbin/unbound/sldns/keyraw.c
443
BN_free(exponent);
usr.sbin/unbound/sldns/wire2str.c
1702
loc_cm_print(char** str, size_t* sl, uint8_t mantissa, uint8_t exponent)
usr.sbin/unbound/sldns/wire2str.c
1707
if(exponent < 2) {
usr.sbin/unbound/sldns/wire2str.c
1708
if(exponent == 1)
usr.sbin/unbound/sldns/wire2str.c
1714
for(i=0; i<exponent-2; i++)
usr.sbin/unbound/validator/val_secalgo.c
1186
SECItem exponent = {siBuffer, NULL, 0};
usr.sbin/unbound/validator/val_secalgo.c
1205
exponent.data = key+offset;
usr.sbin/unbound/validator/val_secalgo.c
1206
exponent.len = exp;
usr.sbin/unbound/validator/val_secalgo.c
1218
if(SECITEM_CopyItem(pk->arena, &pk->u.rsa.publicExponent, &exponent)) {