/art/runtime/interpreter/mterp/mips/ |
op_iput.S | 10 FETCH(a0, 1) # a0 <- field ref CCCC
|
op_iput_wide.S | 4 FETCH(a0, 1) # a0 <- field ref CCCC
|
op_sget.S | 10 FETCH(a0, 1) # a0 <- field ref BBBB
|
op_sget_wide.S | 7 FETCH(a0, 1) # a0 <- field ref BBBB
|
op_sput.S | 9 FETCH(a0, 1) # a0 <- field ref BBBB
|
op_sput_wide.S | 7 FETCH(a0, 1) # a0 <- field ref CCCC
|
/art/runtime/interpreter/mterp/mips64/ |
op_array_length.S | 5 GET_VREG_U a0, a1 # a0 <- vB (object ref)
|
op_iput.S | 10 lhu a0, 2(rPC) # a0 <- field ref CCCC
|
op_iput_wide.S | 4 lhu a0, 2(rPC) # a0 <- field ref CCCC
|
op_sget.S | 10 lhu a0, 2(rPC) # a0 <- field ref BBBB
|
op_sget_wide.S | 8 lhu a0, 2(rPC) # a0 <- field ref BBBB
|
/art/runtime/interpreter/mterp/x86/ |
op_sget.S | 11 movl %eax, OUT_ARG0(%esp) # field ref CCCC
|
op_sget_wide.S | 9 movl %eax, OUT_ARG0(%esp) # field ref CCCC
|
op_sput.S | 11 movl %eax, OUT_ARG0(%esp) # field ref BBBB
|
op_sput_wide.S | 9 movl %eax, OUT_ARG0(%esp) # field ref BBBB
|
sseBinop.S | 8 movs${suff} %xmm0, VREG_REF_ADDRESS(rINST) # clear ref
|
sseBinop2Addr.S | 9 movs${suff} %xmm0, VREG_REF_ADDRESS(rINST) # clear ref
|
/art/runtime/interpreter/mterp/x86_64/ |
op_iput.S | 10 movzwl 2(rPC), OUT_32_ARG0 # field ref <- 0000CCCC
|
op_iput_wide.S | 4 movzwq 2(rPC), OUT_ARG0 # field ref CCCC
|
op_sget.S | 10 movzwq 2(rPC), OUT_ARG0 # field ref CCCC
|
sseBinop.S | 8 movs${suff} %xmm0, VREG_REF_ADDRESS(rINSTq) # clear ref
|
sseBinop2Addr.S | 9 movs${suff} %xmm0, VREG_REF_ADDRESS(rINSTq) # clear ref
|
/bionic/libc/kernel/uapi/xen/ |
gntdev.h | 25 __u32 ref; member in struct:ioctl_gntdev_grant_ref 70 grant_ref_t ref; member in struct:gntdev_grant_copy_segment::__anon1295::__anon1296
|
/external/clang/test/SemaCXX/ |
constant-expression-cxx1y.cpp | 211 constexpr int ref() { // expected-error {{never produces a constant expression}} function in namespace:potential_const_expr 267 template<typename T> constexpr T &ref(T &&r) { return r; } function in namespace:incdec 271 static_assert(++ref(0) == 1, ""); 272 static_assert(ref(0)++ == 0, ""); 274 static_assert(--ref(0) == -1, ""); 275 static_assert(ref(0)-- == 0, ""); 278 constexpr int overflow_int_inc_1 = ref(0x7fffffff)++; // expected-error {{constant}} expected-note {{2147483648}} 279 constexpr int overflow_int_inc_1_ok = ref(0x7ffffffe)++; 280 constexpr int overflow_int_inc_2 = ++ref(0x7fffffff); // expected-error {{constant}} expected-note {{2147483648}} 281 constexpr int overflow_int_inc_2_ok = ++ref(0x7ffffffe) [all...] |
/external/clang/test/SemaTemplate/ |
attributes.cpp | 44 extern const void *CFRetain(const void *ref); 50 extern void CFRelease(const void *ref);
|