Searched refs:pokeInt (Results 1 - 8 of 8) sorted by relevance

/libcore/luni/src/main/java/java/io/
H A DDataOutputStream.java179 Memory.pokeInt(scratch, 0, val, ByteOrder.BIG_ENDIAN);
H A DRandomAccessFile.java826 Memory.pokeInt(scratch, 0, val, ByteOrder.BIG_ENDIAN);
/libcore/luni/src/main/java/java/nio/
H A DMemoryBlock.java241 public final void pokeInt(int offset, int value, ByteOrder order) { method in class:MemoryBlock
242 Memory.pokeInt(address + offset, value, order.needsSwap);
H A DDirectByteBuffer.java461 this.block.pokeInt(offset + position, Float.floatToRawIntBits(value), order);
472 this.block.pokeInt(offset + index, Float.floatToRawIntBits(value), order);
485 this.block.pokeInt(offset + position, value, order);
496 this.block.pokeInt(offset + index, value, order);
H A DByteArrayBuffer.java354 Memory.pokeInt(backingArray, arrayOffset + position, value, order);
364 Memory.pokeInt(backingArray, arrayOffset + index, value, order);
/libcore/luni/src/main/java/libcore/io/
H A DMemory.java91 public static void pokeInt(byte[] dst, int offset, int value, ByteOrder order) { method in class:Memory
192 public static void pokeInt(long address, int value, boolean swap) { method in class:Memory
/libcore/luni/src/main/java/java/net/
H A DInetAddress.java876 Memory.pokeInt(ipaddress, 0, addr, ByteOrder.BIG_ENDIAN);
H A DPlainSocketImpl.java414 Memory.pokeInt(replyBytes, 0, reply.getIP(), ByteOrder.BIG_ENDIAN);

Completed in 182 milliseconds