Home
last modified time | relevance | path

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

/system/keymint/common/src/
Dtag.rs1372 let mut sum_digits = 0; in luhn_checksum() localVariable
1377 sum_digits += (digit_multiplied % 10) + (digit_multiplied / 10); in luhn_checksum()
1381 (10 - (sum_digits % 10)) % 10 in luhn_checksum()