Set value at location being pointed to. This is equivalent to the expression ((long )((char )Pointer + offset)) = value . @param offset byte offset from pointer at which value must be set @param value long value to set
(long offset, NativeLong value)
| 1055 | * @param value <code>long</code> value to set |
| 1056 | */ |
| 1057 | public void setNativeLong(long offset, NativeLong value) { |
| 1058 | if (NativeLong.SIZE == 8) { |
| 1059 | setLong(offset, value.longValue()); |
| 1060 | } else { |
| 1061 | setInt(offset, value.intValue()); |
| 1062 | } |
| 1063 | } |
| 1064 | |
| 1065 | /** |
| 1066 | * Set <code>value</code> at location being pointed to. This is equivalent |