Home
last modified time | relevance | path

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

/external/vixl/src/
Dutils-vixl.h76 inline bool IsIntN(unsigned n, uint32_t x) { in IsIntN() function
81 inline bool IsIntN(unsigned n, int32_t x) { in IsIntN() function
86 inline bool IsIntN(unsigned n, uint64_t x) { in IsIntN() function
91 inline bool IsIntN(unsigned n, int64_t x) { in IsIntN() function
97 return IsIntN(n, x); in is_intn()
149 inline bool IsInt##N(int64_t x) { return IsIntN(N, x); } \
151 return IsIntN(N, x); \
/external/vixl/test/
Dtest-api.cc174 VIXL_CHECK(IsIntN(test_vector[i].n, test_vector[i].x)); \ in TEST()
176 VIXL_CHECK(!IsIntN(test_vector[i].n, test_vector[i].x)); \ in TEST()
/external/vixl/src/aarch64/
Dinstructions-aarch64.cc288 return IsIntN(GetImmBranchRangeBitwidth(branch_type), offset); in IsValidImmPCOffset()
Dsimulator-aarch64.cc44 VIXL_ASSERT(IsUintN(width, bits) || IsIntN(width, bits)); in SetBits()