Home
last modified time | relevance | path

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

/external/vixl/test/
Dtest-api.cc164 VIXL_CHECK(IsIntN(test_vector[i].n, test_vector[i].x)); \ in TEST()
166 VIXL_CHECK(!IsIntN(test_vector[i].n, test_vector[i].x)); \ in TEST()
/external/vixl/src/
Dutils-vixl.h70 inline bool IsIntN(unsigned n, uint32_t x) { in IsIntN() function
75 inline bool IsIntN(unsigned n, int32_t x) { in IsIntN() function
80 inline bool IsIntN(unsigned n, uint64_t x) { in IsIntN() function
85 inline bool IsIntN(unsigned n, int64_t x) { in IsIntN() function
91 return IsIntN(n, x); in is_intn()
143 inline bool IsInt##N(int64_t x) { return IsIntN(N, x); } \
145 return IsIntN(N, x); \
/external/vixl/src/aarch64/
Dinstructions-aarch64.cc285 return IsIntN(GetImmBranchRangeBitwidth(branch_type), offset); in IsValidImmPCOffset()
Dsimulator-aarch64.cc42 VIXL_ASSERT(IsUintN(width, bits) || IsIntN(width, bits)); in SetBits()