Lines Matching defs:unsafe

43     public static int int_index(Unsafe unsafe, long base, int index) throws Exception {  in int_index()
46 public static int long_index(Unsafe unsafe, long base, long index) throws Exception { in long_index()
49 public static int int_index_back_ashift(Unsafe unsafe, long base, int index) throws Exception { in int_index_back_ashift()
52 public static int int_index_back_lshift(Unsafe unsafe, long base, int index) throws Exception { in int_index_back_lshift()
55 … public static int long_index_back_ashift(Unsafe unsafe, long base, long index) throws Exception { in long_index_back_ashift()
58 … public static int long_index_back_lshift(Unsafe unsafe, long base, long index) throws Exception { in long_index_back_lshift()
61 public static int int_const_12345678_index(Unsafe unsafe, long base) throws Exception { in int_const_12345678_index()
65 public static int long_const_1234567890abcdef_index(Unsafe unsafe, long base) throws Exception { in long_const_1234567890abcdef_index()
69 public static int int_index_mul(Unsafe unsafe, long base, int index) throws Exception { in int_index_mul()
72 public static int long_index_mul(Unsafe unsafe, long base, long index) throws Exception { in long_index_mul()
75 public static int int_index_mul_scale_16(Unsafe unsafe, long base, int index) throws Exception { in int_index_mul_scale_16()
78 … public static int long_index_mul_scale_16(Unsafe unsafe, long base, long index) throws Exception { in long_index_mul_scale_16()
84 Unsafe unsafe = Unsafe.getUnsafe(); in main() local