HomeSort by relevance Sort by last modified time
    Searched refs:pokeInt (Results 1 - 12 of 12) sorted by null

  /libcore/luni/src/main/java/java/io/
DataOutputStream.java 179 Memory.pokeInt(scratch, 0, val, ByteOrder.BIG_ENDIAN);
RandomAccessFile.java 827 Memory.pokeInt(scratch, 0, val, ByteOrder.BIG_ENDIAN);
  /libcore/luni/src/main/java/java/nio/
MemoryBlock.java 219 public final void pokeInt(int offset, int value, ByteOrder order) {
220 Memory.pokeInt(address + offset, value, order.needsSwap);
DirectByteBuffer.java 401 this.block.pokeInt(offset + position, Float.floatToRawIntBits(value), order);
411 this.block.pokeInt(offset + index, Float.floatToRawIntBits(value), order);
423 this.block.pokeInt(offset + position, value, order);
433 this.block.pokeInt(offset + index, value, order);
ByteArrayBuffer.java 354 Memory.pokeInt(backingArray, arrayOffset + position, value, order);
364 Memory.pokeInt(backingArray, arrayOffset + index, value, order);
  /libcore/luni/src/main/java/libcore/io/
Memory.java 91 public static void pokeInt(byte[] dst, int offset, int value, ByteOrder order) {
167 public static native void pokeInt(long address, int value, boolean swap);
  /external/okhttp/src/main/java/com/squareup/okhttp/internal/spdy/
SpdyStream.java 29 import static com.squareup.okhttp.internal.Util.pokeInt;
692 pokeInt(buffer, 0, id & 0x7fffffff, BIG_ENDIAN);
693 pokeInt(buffer, 4, (flags & 0xff) << 24 | length & 0xffffff, BIG_ENDIAN);
  /external/okhttp/src/main/java/com/squareup/okhttp/internal/
Util.java 84 public static void pokeInt(byte[] dst, int offset, int value, ByteOrder order) {
  /libcore/luni/src/main/java/java/net/
InetAddress.java     [all...]
PlainSocketImpl.java 417 Memory.pokeInt(replyBytes, 0, reply.getIP(), ByteOrder.BIG_ENDIAN);
  /frameworks/base/core/java/android/os/
ParcelFileDescriptor.java 687 Memory.pokeInt(buf, writePtr, status, ByteOrder.BIG_ENDIAN);
    [all...]
  /libcore/luni/src/main/native/
libcore_io_Memory.cpp 392 NATIVE_METHOD(Memory, pokeInt, "!(JIZ)V"),

Completed in 270 milliseconds