Searched refs:N (Results 1 – 7 of 7) sorted by relevance
/art/compiler/sea_ir/types/ |
D | type_inference_visitor_test.cc | 61 int N = 10; // Number of types to merge. in TEST_F() local 66 for (int i = 0; i < N; i++) { in TEST_F() 75 int N = 10; // Number of types to merge. in TEST_F() local 80 for (int i = 0; i < N; i++) { in TEST_F() 89 int N = 10; // Number of types to merge. in TEST_F() local 94 for (int i = 0; i < N; i++) { in TEST_F() 105 int N = 10; // Number of types to merge. in TEST_F() local 111 for (int i = 0; i < N; i++) { in TEST_F()
|
/art/runtime/ |
D | utils.h | 115 static inline bool IsInt(int N, word value) { in IsInt() argument 116 CHECK_LT(0, N); in IsInt() 117 CHECK_LT(N, kBitsPerWord); in IsInt() 118 word limit = static_cast<word>(1) << (N - 1); in IsInt() 122 static inline bool IsUint(int N, word value) { in IsUint() argument 123 CHECK_LT(0, N); in IsUint() 124 CHECK_LT(N, kBitsPerWord); in IsUint() 125 word limit = static_cast<word>(1) << N; in IsUint() 129 static inline bool IsAbsoluteUint(int N, word value) { in IsAbsoluteUint() argument 130 CHECK_LT(0, N); in IsAbsoluteUint() [all …]
|
/art/runtime/base/ |
D | macros.h | 96 template <typename T, size_t N> 97 char (&ArraySizeHelper(T (&array)[N]))[N];
|
/art/compiler/optimizing/ |
D | nodes.h | 731 template<typename T, intptr_t N> 736 intptr_t GetLength() const { return N; } in GetLength() 757 T elements_[N]; 776 template<intptr_t N> 779 HTemplateInstruction<N>() : inputs_() {} in inputs_() 782 virtual size_t InputCount() const { return N; } in InputCount() 791 EmbeddedArray<HInstruction*, N> inputs_; 796 template<intptr_t N> 797 class HExpression: public HTemplateInstruction<N> { 799 explicit HExpression<N>(Primitive::Type type) : type_(type) {} in type_()
|
/art/disassembler/ |
D | disassembler_arm.cc | 203 uint32_t N = (instr >> extra_at_bit) & 1; in FpRegister() local 204 r = (size != 0 ? ((N << 4) | Vn) : ((Vn << 1) | N)); in FpRegister() 210 uint32_t N = (instr >> extra_at_bit) & 1; in FpRegister() local 211 r = (size != 0 ? ((N << 4) | Vn) : ((Vn << 1) | N)); in FpRegister() 1733 uint16_t N = (instr >> 7) & 1; in DumpThumb16() local 1736 ArmRegister N_Rn((N << 3) | Rn); in DumpThumb16()
|
/art/compiler/dex/quick/mips/ |
D | mips_lir.h | 134 #define ENCODE_MIPS_REG_LIST(N) (static_cast<uint64_t>(N)) argument
|
/art/compiler/utils/arm/ |
D | assembler_arm.h | 279 N = 1 << 22, // long (or short) enumerator
|