Home
last modified time | relevance | path

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

/external/python/cpython2/Lib/
Ddecimal.py2029 last_digit = xc % 10
2030 if last_digit in (2,4,6,8):
2076 elif last_digit == 5:
/external/v8/src/profiler/
Dheap-snapshot-generator.cc2772 int last_digit = static_cast<int>(value % 10); in utoa_impl() local
2773 buffer[--buffer_pos] = '0' + last_digit; in utoa_impl()