Home
last modified time | relevance | path

Searched refs:getDigit (Results 1 – 2 of 2) sorted by relevance

/netbsd-src/external/gpl3/gcc/dist/libphobos/src/std/
H A Dbigint.d1421 T getDigit(T = ulong)(size_t n) const
1441 assert(a.getDigit(0) == 1000);
1444 assert(a.getDigit!uint(0) == 1000);
1448 assert(b.getDigit(0) == 4584946418820579328);
1449 assert(b.getDigit(1) == 108420217);
1452 assert(b.getDigit!uint(0) == 3489660928);
1453 assert(b.getDigit!uint(1) == 1067516025);
1454 assert(b.getDigit!uint(2) == 108420217);
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Support/
H A DAPInt.cpp50 inline static unsigned getDigit(char cdigit, uint8_t radix) { in getDigit() function
2148 unsigned digit = getDigit(*p, radix); in fromString()