Home
last modified time | relevance | path

Searched refs:dig (Results 1 – 8 of 8) sorted by relevance

/device/linaro/bootloader/edk2/StdLib/LibC/gdtoa/
Dgdtoa.c167 int bbits, b2, b5, be0, dig, i, ieps, ilim = 0, ilim0, ilim1 = 0, inex; in gdtoa() local
671 dig = quorem(b,S) + '0'; in gdtoa()
683 if (dig == '9') in gdtoa()
690 dig++; in gdtoa()
693 *s++ = dig; in gdtoa()
708 *s++ = dig; in gdtoa()
718 dig = quorem(b,S) + '0'; in gdtoa()
720 if (dig++ == '9') in gdtoa()
730 if ((jj1 > 0 || (jj1 == 0 && dig & 1)) in gdtoa()
731 && dig++ == '9') in gdtoa()
[all …]
Ddtoa.c127 int bbits, b2, b5, be, dig, i, ieps, ilim0, local
653 dig = quorem(b,S) + '0';
669 if (dig == '9')
672 dig++;
677 *s++ = (char)dig;
704 if ((jj1 > 0 || (jj1 == 0 && dig & 1))
705 && dig++ == '9')
709 *s++ = (char)dig;
717 if (dig == '9') { /* possible if i == 1 */
722 *s++ = (char)(dig + 1);
[all …]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
Dtest_hmac.py265 dig = h.digest()
266 dig = h.hexdigest()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Python/
Ddtoa.c2351 int bbits, b2, b5, be, dig, i, ieps, ilim, ilim0, ilim1, in _Py_dg_dtoa() local
2786 dig = quorem(b,S) + '0'; in _Py_dg_dtoa()
2798 if (dig == '9') in _Py_dg_dtoa()
2801 dig++; in _Py_dg_dtoa()
2802 *s++ = dig; in _Py_dg_dtoa()
2816 if ((j1 > 0 || (j1 == 0 && dig & 1)) in _Py_dg_dtoa()
2817 && dig++ == '9') in _Py_dg_dtoa()
2821 *s++ = dig; in _Py_dg_dtoa()
2825 if (dig == '9') { /* possible if i == 1 */ in _Py_dg_dtoa()
2830 *s++ = dig + 1; in _Py_dg_dtoa()
[all …]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Python/
Ddtoa.c2382 int bbits, b2, b5, be, dig, i, ieps, ilim, ilim0, ilim1, in _Py_dg_dtoa() local
2817 dig = quorem(b,S) + '0'; in _Py_dg_dtoa()
2829 if (dig == '9') in _Py_dg_dtoa()
2832 dig++; in _Py_dg_dtoa()
2833 *s++ = dig; in _Py_dg_dtoa()
2847 if ((j1 > 0 || (j1 == 0 && dig & 1)) in _Py_dg_dtoa()
2848 && dig++ == '9') in _Py_dg_dtoa()
2852 *s++ = dig; in _Py_dg_dtoa()
2856 if (dig == '9') { /* possible if i == 1 */ in _Py_dg_dtoa()
2861 *s++ = dig + 1; in _Py_dg_dtoa()
[all …]
/device/linaro/bootloader/edk2/AppPkg/Applications/Enquire/
DEnquire.c840 unsigned mode=0, dig;
845 if (c>='0' && c<='9') dig= c-'0';
846 else if (c>='a' && c<='f') dig= c-'a'+10;
847 else if (c>='A' && c<='F') dig= c-'A'+10;
849 mode= mode<<4 | dig;
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
Durllib2.py977 dig = hashlib.sha1("%s:%s:%s:%s" % (self.nonce_count, nonce, time.ctime(),
979 return dig[:16]
Ddecimal.py3230 for dig in self._int:
3231 if dig not in '01':