Searched defs:exponent (Results 1 - 13 of 13) sorted by relevance

/vbox/src/VBox/Devices/PC/ipxe/src/crypto/
H A Drsa.c169 bigint_t ( exponent_size ) *exponent;
170 size_t tmp_len = bigint_mod_exp_tmp_len ( modulus, exponent );
173 bigint_t ( exponent_size ) exponent;
192 context->exponent0 = &dynamic->exponent.element[0];
246 struct asn1_cursor exponent; local
291 /* Skip public exponent, if applicable */
296 if ( ( rc = rsa_parse_integer ( context, &exponent, &cursor ) ) != 0 )
301 DBGC ( context, "RSA %p exponent:\n", context );
302 DBGC_HDA ( context, 0, exponent.data, exponent
[all...]
/vbox/src/VBox/RDP/client-1.8.3/
H A Dssl.c97 uint8 * exponent)
105 reverse(exponent, SEC_EXPONENT_SIZE);
116 BN_bin2bn(exponent, SEC_EXPONENT_SIZE, &exp);
208 rdssl_rkey_get_exp_mod(RDSSL_RKEY * rkey, uint8 * exponent, uint32 max_exp_len, uint8 * modulus, argument
218 len = BN_bn2bin(rkey->e, exponent);
219 reverse(exponent, len);
227 rdssl_sig_ok(uint8 * exponent, uint32 exp_len, uint8 * modulus, uint32 mod_len, argument
96 rdssl_rsa_encrypt(uint8 * out, uint8 * in, int len, uint32 modulus_size, uint8 * modulus, uint8 * exponent) argument
H A Dsecure.c318 uint8 * exponent)
320 rdssl_rsa_encrypt(out, in, len, modulus_size, modulus, exponent);
505 sec_parse_public_key(STREAM s, uint8 * modulus, uint8 * exponent) argument
525 in_uint8a(s, exponent, SEC_EXPONENT_SIZE);
535 sec_parse_public_sig(STREAM s, uint32 len, uint8 * modulus, uint8 * exponent) argument
547 return rdssl_sig_ok(exponent, SEC_EXPONENT_SIZE, modulus, g_server_public_key_len,
554 uint8 ** server_random, uint8 * modulus, uint8 * exponent)
603 if (!sec_parse_public_key(s, modulus, exponent))
610 if (!sec_parse_public_sig(s, length, modulus, exponent))
704 if (rdssl_rkey_get_exp_mod(server_public_key, exponent, SEC_EXPONENT_SIZ
317 sec_rsa_encrypt(uint8 * out, uint8 * in, int len, uint32 modulus_size, uint8 * modulus, uint8 * exponent) argument
553 sec_parse_crypt_info(STREAM s, uint32 * rc4_key_size, uint8 ** server_random, uint8 * modulus, uint8 * exponent) argument
723 uint8 exponent[SEC_EXPONENT_SIZE]; local
[all...]
/vbox/src/libs/libpng-1.2.8/contrib/gregbook/
H A Dwpng.c152 /* First get the default value for our display-system exponent, i.e.,
153 * the product of the CRT exponent and the exponent corresponding to
162 /* third-party utilities can modify the default LUT exponent */
202 double exponent = atof(p); local
204 if (exponent > 0.0)
205 default_gamma = 1.0 / exponent;
370 " exp \ttransfer-function exponent (``gamma'') of the image in\n"
373 "\t\t inverse of display-system exponent, i.e., 1 / (LUT * CRT)\n"
374 "\t\t (where LUT = lookup-table exponent an
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/StdLib/BsdSocketLib/
H A Dres_debug.c574 int mantissa, exponent; local
577 exponent = (int)((prec >> 0) & 0x0f) % 10;
579 val = mantissa * poweroften[exponent];
594 int exponent; local
613 for (exponent = 0; exponent < 9; exponent++)
614 if (cmval < poweroften[exponent+1])
617 mantissa = cmval / poweroften[exponent];
621 retval = (u_int8_t)((mantissa << 4) | exponent);
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/StdLib/LibC/Stdio/
H A Dvfwprintf.c573 static int exponent(CHAR_T *, int, int);
638 * D: expchar holds this character; '\0' if no exponent, e.g. %f
654 int expt = 0; /* integer value of exponent */
655 char expchar; /* exponent character: [eEpP\0] */
659 CHAR_T expstr[MAXEXPDIG+2]; /* buffer for exponent string: e+ZZZ */
1255 expsize = exponent(expstr, expt - 1, expchar);
1256 size = expsize + prec + 1; /* Leading digit + exponent string + precision */
2019 exponent(CHAR_T *p0, int expo, int fmtch) function
/vbox/src/VBox/Devices/EFI/Firmware/AppPkg/Applications/Enquire/
H A DEnquire.c507 Fixed exponent(): thanks Christophe BINOT
665 #define D_FLT_RADIX "Radix of exponent representation"
721 int exponent ARGS((Long_double x, Long_double *fract, int *exp));
1345 exponent(Long_double x, Long_double *fract, int *exp) function
2706 if (!exponent((Long_double)val, &rem, &e)) {
3008 /* Size of and minimum normalised exponent ************************/
3055 Vprintf("%sNumber of bits used for exponent = %d%s\n", co, iexp, oc);
3056 Vprintf("%sMinimum normalised exponent = %d%s\n", co, f_min_exp-1, oc);
3096 /* Minimum exponent ************************************************/
3125 /* Maximum exponent ************************************************/
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/AppPkg/Applications/Python/PyMod-2.7.2/Objects/
H A Dlongobject.c32 * unless the exponent contains more than FIVEARY_CUTOFF digits.
2202 If a == 0, return 0.0 and set *e = 0. If the resulting exponent
2227 /* Special case for 0: significand 0.0, exponent 0. */
2317 /* exponent > PY_SSIZE_T_MAX */
2330 Py_ssize_t exponent; local
2337 x = _PyLong_Frexp((PyLongObject *)v, &exponent);
2338 if ((x == -1.0 && PyErr_Occurred()) || exponent > DBL_MAX_EXP) {
2343 return ldexp(x, (int)exponent);
3403 /* 5-ary values. If the exponent is large enough, table is
3429 if (Py_SIZE(b) < 0) { /* if exponent i
[all...]
/vbox/src/libs/libxml2-2.6.31/
H A Dtrio.c1048 * Calculate pow(base, exponent), where number and exponent are integers.
1052 TRIO_ARGS2((number, exponent),
1054 int exponent)
1060 switch (exponent)
1095 (trio_long_double_t)exponent);
1101 return powl((trio_long_double_t)number, (trio_long_double_t)exponent);
2619 int exponent = 0; local
2770 exponent = 0;
2777 exponent
1051 TrioPower(number, exponent), int number, int exponent argument
[all...]
H A Dxpath.c9974 int exponent = 0; local
10041 exponent = exponent * 10 + (*cur - '0');
10048 if (is_exponent_negative) exponent = -exponent;
10049 ret *= pow(10.0, (double)exponent);
10070 int exponent = 0; local
10123 exponent = exponent * 10 + (CUR - '0');
10127 exponent
[all...]
/vbox/src/VBox/Devices/Graphics/shaderlib/
H A Dwined3d_private.h223 * bit shifting the exponent and mantissa. There are also some SSE-based
1357 float exponent; member in struct:wined3d_light_info
/vbox/src/VBox/Additions/WINNT/Graphics/Wine/wined3d/
H A Dwined3d_private.h212 * bit shifting the exponent and mantissa. There are also some SSE-based
1329 float exponent; member in struct:wined3d_light_info
/vbox/src/VBox/Additions/WINNT/Graphics/Wine_new/wined3d/
H A Dwined3d_private.h235 * bit shifting the exponent and mantissa. There are also some SSE-based
1405 float exponent; member in struct:wined3d_light_info

Completed in 141 milliseconds