File tree 3 files changed +5
-5
lines changed
src/jdk.incubator.foreign/share/classes/jdk/incubator/foreign
3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -97,10 +97,10 @@ public interface MemoryAddress {
97
97
98
98
/**
99
99
* Perform bulk copy from source address to target address. More specifically, the bytes at addresses {@code src}
100
- * through {@code src.offset (bytes - 1)} are copied into addresses {@code dst} through {@code dst.offset (bytes - 1)}.
100
+ * through {@code src.addOffset (bytes - 1)} are copied into addresses {@code dst} through {@code dst.addOffset (bytes - 1)}.
101
101
* If the source and address ranges overlap, then the copying is performed as if the bytes at addresses {@code src}
102
- * through {@code src.offset (bytes - 1)} were first copied into a temporary segment with size {@code bytes},
103
- * and then the contents of the temporary segment were copied into the bytes at addresses {@code dst} through {@code dst.offset (bytes - 1)}.
102
+ * through {@code src.addOffset (bytes - 1)} were first copied into a temporary segment with size {@code bytes},
103
+ * and then the contents of the temporary segment were copied into the bytes at addresses {@code dst} through {@code dst.addOffset (bytes - 1)}.
104
104
* @param src the source address.
105
105
* @param dst the target address.
106
106
* @param bytes the number of bytes to be copied.
Original file line number Diff line number Diff line change 110
110
*
111
111
* We can obtain the offset of the member layout named <code>value</code> from <code>seq</code>, as follows:
112
112
* <blockquote><pre>{@code
113
- long valueOffset = seq.offset (PathElement.sequenceElement(), PathElement.groupElement("value"));
113
+ long valueOffset = seq.addOffset (PathElement.sequenceElement(), PathElement.groupElement("value"));
114
114
* }</pre></blockquote>
115
115
*
116
116
* Similarly, we can select the member layout named {@code value}, as follows:
Original file line number Diff line number Diff line change 33
33
try (MemorySegment segment = MemorySegment.allocateNative(10 * 4)) {
34
34
MemoryAddress base = segment.baseAddress();
35
35
for (long i = 0 ; i < 10 ; i++) {
36
- intHandle.set(base.offset (i * 4), (int)i);
36
+ intHandle.set(base.addOffset (i * 4), (int)i);
37
37
}
38
38
}
39
39
* }</pre>
You can’t perform that action at this time.
0 commit comments