HomeSort by relevance Sort by last modified time
    Searched defs:pokeLong (Results 1 - 7 of 7) sorted by null

  /libcore/luni/src/main/java/java/io/
DataOutputStream.java 185 Memory.pokeLong(scratch, 0, val, ByteOrder.BIG_ENDIAN);
RandomAccessFile.java 845 Memory.pokeLong(scratch, 0, val, ByteOrder.BIG_ENDIAN);
ObjectOutputStream.java     [all...]
  /libcore/luni/src/main/java/java/nio/
ReadWriteHeapByteBuffer.java 211 Memory.pokeLong(backingArray, offset + index, value, order);
221 Memory.pokeLong(backingArray, offset + position, value, order);
MemoryBlock.java 228 public final void pokeLong(int offset, long value, ByteOrder order) {
229 Memory.pokeLong(address + offset, value, order.needsSwap);
  /libcore/luni/src/main/java/java/security/
SecureRandom.java 259 Memory.pokeLong(byteSeed, 0, seed, ByteOrder.BIG_ENDIAN);
  /libcore/luni/src/main/java/libcore/io/
Memory.java 105 public static void pokeLong(byte[] dst, int offset, long value, ByteOrder order) {
168 public static native void pokeLong(int address, long value, boolean swap);

Completed in 610 milliseconds