Searched refs:new_digit (Results 1 – 3 of 3) sorted by relevance
/external/libchrome/base/strings/ |
D | string_number_conversions.cc | 190 uint8_t new_digit = 0; in Invoke() local 192 if (!CharToDigit<traits::kBase>(*current, &new_digit)) { in Invoke() 197 if (!Sign::CheckBounds(output, new_digit)) { in Invoke() 203 Sign::Increment(new_digit, output); in Invoke() 211 static bool CheckBounds(value_type* output, uint8_t new_digit) { in CheckBounds() argument 214 new_digit > traits::max() % traits::kBase)) { in CheckBounds() 227 static bool CheckBounds(value_type* output, uint8_t new_digit) { in CheckBounds() argument 230 new_digit > 0 - traits::min() % traits::kBase)) { in CheckBounds()
|
/external/valgrind/VEX/priv/ |
D | guest_ppc_helpers.c | 286 ULong carry, digit, new_digit; in increment_BCDstring32_helper() local 300 new_digit = digit + carry; in increment_BCDstring32_helper() 302 if ( new_digit > 10 ) { in increment_BCDstring32_helper() 304 new_digit = new_digit - 10; in increment_BCDstring32_helper() 309 result = result | (new_digit << (i*4) ); in increment_BCDstring32_helper()
|
/external/llvm/test/CodeGen/PowerPC/ |
D | ctrloop-intrin.ll | 296 %new_digit.0.in = select i1 %cmp125, i32 %sub128, i32 %add122 297 %add133 = add nsw i32 %new_digit.0.in, 48
|