Searched refs:pokeLong (Results 1 - 9 of 9) sorted by relevance

/libcore/luni/src/main/java/java/nio/
H A DReadWriteDirectByteBuffer.java166 this.block.pokeLong(offset + position, Double.doubleToRawLongBits(value), order);
174 this.block.pokeLong(offset + index, Double.doubleToRawLongBits(value), order);
220 this.block.pokeLong(offset + position, value, order);
228 this.block.pokeLong(offset + index, value, order);
H A DMemoryBlock.java228 public final void pokeLong(int offset, long value, ByteOrder order) { method in class:MemoryBlock
229 Memory.pokeLong(address + offset, value, order.needsSwap);
H A DReadWriteHeapByteBuffer.java211 Memory.pokeLong(backingArray, offset + index, value, order);
221 Memory.pokeLong(backingArray, offset + position, value, order);
/libcore/luni/src/main/java/java/io/
H A DDataOutputStream.java185 Memory.pokeLong(scratch, 0, val, ByteOrder.BIG_ENDIAN);
H A DRandomAccessFile.java845 Memory.pokeLong(scratch, 0, val, ByteOrder.BIG_ENDIAN);
H A DObjectOutputStream.java1445 Memory.pokeLong(buffer, offset, count, ByteOrder.BIG_ENDIAN);
/libcore/luni/src/main/java/libcore/io/
H A DMemory.java105 public static void pokeLong(byte[] dst, int offset, long value, ByteOrder order) { method in class:Memory
168 public static native void pokeLong(int address, long value, boolean swap); method in class:Memory
/libcore/luni/src/main/java/java/security/
H A DSecureRandom.java259 Memory.pokeLong(byteSeed, 0, seed, ByteOrder.BIG_ENDIAN);
/libcore/luni/src/main/native/
H A Dlibcore_io_Memory.cpp394 NATIVE_METHOD(Memory, pokeLong, "!(IJZ)V"),

Completed in 321 milliseconds