Home
last modified time | relevance | path

Searched refs:hex_digits (Results 1 - 8 of 8) sorted by relevance

/third_party/mbedtls/scripts/mbedtls_dev/
H A Decp.py80 return super().format_arg('{:x}'.format(self.int_a)).zfill(2 * self.hex_digits)
158 hex_digits = bignum_common.hex_digits_for_limb(limbs, self.bits_in_limb)
159 return super().format_arg('{:x}'.format(self.int_a)).zfill(hex_digits)
244 return super().format_arg('{:x}'.format(self.int_a)).zfill(2 * self.hex_digits)
367 return super().format_arg('{:x}'.format(self.int_a)).zfill(2 * self.hex_digits)
473 return super().format_arg('{:x}'.format(self.int_a)).zfill(2 * self.hex_digits)
545 return super().format_arg('{:x}'.format(self.int_a)).zfill(2 * self.hex_digits)
618 hex_digits = bignum_common.hex_digits_for_limb(limbs, self.bits_in_limb)
619 return super().format_arg('{:x}'.format(self.int_a)).zfill(hex_digits)
695 return super().format_arg('{:x}'.format(self.int_a)).zfill(2 * self.hex_digits)
[all...]
H A Dbignum_common.py160 def hex_digits(self) -> int: member in OperationCommon
169 return val.zfill(self.hex_digits)
335 return super().format_arg(val).zfill(self.hex_digits)
H A Dbignum_core.py304 hex_digits = bignum_common.hex_digits_for_limb(a_limbs + b_limbs, self.bits_in_limb)
305 return bignum_common.quote_str(self.format_arg(res_str).zfill(hex_digits))
/third_party/ninja/src/
H A Djson.cc21 static const char* hex_digits = "0123456789abcdef"; in EncodeJSONString() local
38 out += hex_digits[c >> 4]; in EncodeJSONString()
39 out += hex_digits[c & 0xf]; in EncodeJSONString()
/third_party/mesa3d/src/util/
H A Dmesa-sha1.c44 static const char hex_digits[] = "0123456789abcdef"; in _mesa_sha1_format() local
48 buf[i] = hex_digits[sha1[i >> 1] >> 4]; in _mesa_sha1_format()
49 buf[i + 1] = hex_digits[sha1[i >> 1] & 0x0f]; in _mesa_sha1_format()
H A Ddisk_cache.h84 static const char hex_digits[] = "0123456789abcdef"; in disk_cache_format_hex_id() local
88 buf[i] = hex_digits[hex_id[i >> 1] >> 4]; in disk_cache_format_hex_id()
89 buf[i + 1] = hex_digits[hex_id[i >> 1] & 0x0f]; in disk_cache_format_hex_id()
/third_party/jerryscript/jerry-core/ecma/builtin-objects/
H A Decma-builtin-global.c717 ecma_char_t hex_digits = 0; in ecma_builtin_global_object_unescape() local
739 hex_digits = (ecma_char_t) (hex_digits * 16 + (ecma_char_t) lit_char_hex_to_int (chr)); in ecma_builtin_global_object_unescape()
754 chr = hex_digits; in ecma_builtin_global_object_unescape()
755 hex_digits = 0; in ecma_builtin_global_object_unescape()
/third_party/googletest/googlemock/scripts/generator/cpp/
H A Dtokenize.py127 hex_digits = HEX_DIGITS
197 while source[i] in hex_digits:

Completed in 6 milliseconds