Home
last modified time | relevance | path

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

/system/chre/external/flatbuffers/include/flatbuffers/
Dstl_emulation.h145 template <typename T> using is_unsigned = std::is_unsigned<T>; variable
158 template <typename T> using is_unsigned = std::tr1::is_unsigned<T>; variable
162 static_assert(is_unsigned<T>::value, "Specialization not implemented!");
182 template <typename T> struct is_unsigned : public std::is_unsigned<T> {};
/system/update_engine/scripts/update_payload/
Dcommon.py86 def IntPackingFmtStr(size, is_unsigned): argument
111 if is_unsigned:
Dpayload.py38 def _ReadInt(file_obj, size, is_unsigned, hasher=None): argument
57 return struct.unpack(common.IntPackingFmtStr(size, is_unsigned),
Dtest_utils.py56 def _WriteInt(file_obj, size, is_unsigned, val): argument
73 file_obj.write(struct.pack(common.IntPackingFmtStr(size, is_unsigned), val))
/system/libbase/include/android-base/
Dparseint.h37 static_assert(std::is_unsigned<T>::value, "ParseUint can only be used with unsigned types");