本文整理汇总了Java中org.apache.ignite.internal.util.GridUnsafe.getDouble方法的典型用法代码示例。如果您正苦于以下问题:Java GridUnsafe.getDouble方法的具体用法?Java GridUnsafe.getDouble怎么用?Java GridUnsafe.getDouble使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类org.apache.ignite.internal.util.GridUnsafe
的用法示例。
在下文中一共展示了GridUnsafe.getDouble方法的8个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: readDouble
import org.apache.ignite.internal.util.GridUnsafe; //导入方法依赖的package包/类
/** {@inheritDoc} */
@Override public double readDouble() {
lastFinished = buf.remaining() >= 8;
if (lastFinished) {
int pos = buf.position();
buf.position(pos + 8);
long off = baseOff + pos;
return BIG_ENDIAN ? GridUnsafe.getDoubleLE(heapArr, off) : GridUnsafe.getDouble(heapArr, off);
}
else
return 0;
}
示例2: readDouble
import org.apache.ignite.internal.util.GridUnsafe; //导入方法依赖的package包/类
/** {@inheritDoc} */
@Override public double readDouble() {
lastFinished = buf.remaining() >= 8;
if (lastFinished) {
int pos = buf.position();
buf.position(pos + 8);
return GridUnsafe.getDouble(heapArr, baseOff + pos);
}
else
return 0;
}
示例3: get
import org.apache.ignite.internal.util.GridUnsafe; //导入方法依赖的package包/类
/** {@inheritDoc} */
@Override public double get(int x, int y) {
return GridUnsafe.getDouble(pointerOffset(x, y));
}
示例4: get
import org.apache.ignite.internal.util.GridUnsafe; //导入方法依赖的package包/类
/** {@inheritDoc} */
@Override public double get(int i) {
return GridUnsafe.getDouble(pointerOffset(i));
}
示例5: getDouble
import org.apache.ignite.internal.util.GridUnsafe; //导入方法依赖的package包/类
/** {@inheritDoc} */
@Override public double getDouble(int idx) {
ensure(idx, 8);
return GridUnsafe.getDouble(ptr + idx);
}
示例6: readDouble
import org.apache.ignite.internal.util.GridUnsafe; //导入方法依赖的package包/类
/** {@inheritDoc} */
@Override public double readDouble() throws IOException {
checkRange(8);
double res = GridUnsafe.getDouble(buf, BYTE_ARR_OFF + pos);
pos += 8;
return res;
}
示例7: readDouble
import org.apache.ignite.internal.util.GridUnsafe; //导入方法依赖的package包/类
/** {@inheritDoc} */
@Override public double readDouble() {
ensureEnoughData(8);
double res = GridUnsafe.getDouble(data + pos);
shift(8);
return res;
}
示例8: readDouble
import org.apache.ignite.internal.util.GridUnsafe; //导入方法依赖的package包/类
/**
* @param ptr Pointer.
* @return Double value.
*/
public double readDouble(long ptr) {
return GridUnsafe.getDouble(ptr);
}