Returns the offset of the given value in memory from the given offset, or -1 if the value is not found.
(long offset, byte value)
| 124 | * or -1 if the value is not found. |
| 125 | */ |
| 126 | public long indexOf(long offset, byte value) { |
| 127 | return Native.indexOf(this, this.peer, offset, value); |
| 128 | } |
| 129 | |
| 130 | /** |
| 131 | * Indirect the native pointer, copying <em>from</em> memory pointed to by |