Searched defs:IsUintN (Results 1 - 1 of 1) sorted by relevance

/external/vixl/src/
H A Dutils-vixl.h94 inline bool IsUintN(unsigned n, uint32_t x) { function in namespace:vixl
98 inline bool IsUintN(unsigned n, int32_t x) { function in namespace:vixl
103 inline bool IsUintN(unsigned n, uint64_t x) { function in namespace:vixl
107 inline bool IsUintN(unsigned n, int64_t x) { function in namespace:vixl
112 VIXL_DEPRECATED("IsUintN", inline bool is_uintn(unsigned n, int64_t x)) {
113 return IsUintN(n, x);
149 inline bool IsUint##N(int64_t x) { return IsUintN(N, x); } \
151 return IsUintN(N, x); \

Completed in 93 milliseconds