Home
last modified time | relevance | path

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

/system/update_engine/scripts/update_payload/
Dcommon.py90 def IntPackingFmtStr(size, is_unsigned): argument
115 if is_unsigned:
Dpayload.py34 def _ReadInt(file_obj, size, is_unsigned, hasher=None): argument
53 return struct.unpack(common.IntPackingFmtStr(size, is_unsigned),
Dtest_utils.py55 def _WriteInt(file_obj, size, is_unsigned, val): argument
72 file_obj.write(struct.pack(common.IntPackingFmtStr(size, is_unsigned), val))
/system/core/base/include/android-base/
Dparseint.h37 static_assert(std::is_unsigned<T>::value, "ParseUint can only be used with unsigned types");
/system/testing/gtest_extras/
DOptions.cpp92 if constexpr (std::is_unsigned<IntType>::value) { in GetNumeric()