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

  /external/vixl/src/aarch64/
cpu-aarch64.h 51 VIXL_ASSERT(IsUintN(kAddressTagWidth, tag));
macro-assembler-aarch64.cc     [all...]
simulator-aarch64.cc 42 VIXL_ASSERT(IsUintN(width, bits) || IsIntN(width, bits));
    [all...]
  /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.
187 VIXL_CHECK(IsUintN(test_vector[i].n, test_vector[i].x)); \
189 VIXL_CHECK(!IsUintN(test_vector[i].n, test_vector[i].x)); \
  /external/vixl/src/
utils-vixl.h 94 inline bool IsUintN(unsigned n, uint32_t x) {
98 inline bool IsUintN(unsigned n, int32_t x) {
103 inline bool IsUintN(unsigned n, uint64_t x) {
107 inline bool IsUintN(unsigned n, int64_t x) {
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); \
  /external/vixl/src/aarch32/
macro-assembler-aarch32.cc 503 if (IsUintN(16, imm)) {
    [all...]

Completed in 103 milliseconds