Lines Matching defs:unsafe

159     public static boolean unsafeCompareAndSwapInt(Unsafe unsafe, Object obj, long offset) {  in unsafeCompareAndSwapInt()
164 public static boolean unsafeCompareAndSwapLong(Unsafe unsafe, Object obj, long offset) { in unsafeCompareAndSwapLong()
169 public static boolean unsafeCompareAndSwapObject(Unsafe unsafe, Object obj, long offset) { in unsafeCompareAndSwapObject()
174 public static boolean unsafeGetBoolean(Unsafe unsafe, Object obj, long offset) { in unsafeGetBoolean()
179 public static int unsafeGetByte(Unsafe unsafe, Object obj, long offset) { in unsafeGetByte()
184 public static int unsafeGetShort(Unsafe unsafe, Object obj, long offset) { in unsafeGetShort()
189 public static int unsafeGetChar(Unsafe unsafe, Object obj, long offset) { in unsafeGetChar()
194 public static int unsafeGetInt(Unsafe unsafe, Object obj, long offset) { in unsafeGetInt()
199 public static long unsafeGetLong(Unsafe unsafe, Object obj, long offset) { in unsafeGetLong()
204 public static float unsafeGetFloat(Unsafe unsafe, Object obj, long offset) { in unsafeGetFloat()
209 public static double unsafeGetDouble(Unsafe unsafe, Object obj, long offset) { in unsafeGetDouble()
214 public static boolean unsafeGetObject(Unsafe unsafe, Object obj, long offset) { in unsafeGetObject()
219 public static int unsafePutBoolean(Unsafe unsafe, Object obj, long offset, boolean value) { in unsafePutBoolean()
229 public static int unsafePutByte(Unsafe unsafe, Object obj, long offset, byte value) { in unsafePutByte()
239 public static int unsafePutShort(Unsafe unsafe, Object obj, long offset, short value) { in unsafePutShort()
249 public static int unsafePutChar(Unsafe unsafe, Object obj, long offset, char value) { in unsafePutChar()
259 public static int unsafePutInt(Unsafe unsafe, Object obj, long offset, int value) { in unsafePutInt()
271 public static long unsafePutLong(Unsafe unsafe, Object obj, long offset, long value) { in unsafePutLong()
283 public static float unsafePutFloat(Unsafe unsafe, Object obj, long offset, float value) { in unsafePutFloat()
293 public static double unsafePutDouble(Unsafe unsafe, Object obj, long offset, double value) { in unsafePutDouble()
303 …public static Object[] unsafePutObject(Unsafe unsafe, Object obj, long offset, Object value1, Obje… in unsafePutObject()
315 public static long unsafeGetAddress(Unsafe unsafe, long offset) { in unsafeGetAddress()
320 public static long unsafePutAddress(Unsafe unsafe, long offset, long value) { in unsafePutAddress()
328 public static double unsafeDirectMemoryRead(Unsafe unsafe, long address) { in unsafeDirectMemoryRead()
342 public static double unsafeDirectMemoryWrite(Unsafe unsafe, long address, long value) { in unsafeDirectMemoryWrite()
372 public static String unsafeAllocateInstance(Unsafe unsafe) throws InstantiationException { in unsafeAllocateInstance()