HomeSort by relevance Sort by last modified time
    Searched refs:IsIntN (Results 1 - 4 of 4) sorted by null

  /external/vixl/test/
test-api.cc 37 // Describe the result of a test. Should IsUintN() and IsIntN() return true or
47 // Test IsUintN() and IsIntN() against various values and integral types.
196 VIXL_CHECK(IsIntN(test_vector[i].n, test_vector[i].x)); \
198 VIXL_CHECK(!IsIntN(test_vector[i].n, test_vector[i].x)); \
  /external/vixl/src/
utils-vixl.h 70 inline bool IsIntN(unsigned n, uint32_t x) {
75 inline bool IsIntN(unsigned n, int32_t x) {
80 inline bool IsIntN(unsigned n, uint64_t x) {
85 inline bool IsIntN(unsigned n, int64_t x) {
90 VIXL_DEPRECATED("IsIntN", inline bool is_intn(unsigned n, int64_t x)) {
91 return IsIntN(n, x);
143 inline bool IsInt##N(int64_t x) { return IsIntN(N, x); } \
145 return IsIntN(N, x); \
  /external/vixl/src/aarch64/
instructions-aarch64.cc 285 return IsIntN(GetImmBranchRangeBitwidth(branch_type), offset);
simulator-aarch64.cc 42 VIXL_ASSERT(IsUintN(width, bits) || IsIntN(width, bits));
    [all...]

Completed in 1258 milliseconds