io.netty.buffer.ByteBuf.getLongLE()方法的使用及代码示例

x33g5p2x  于2022-01-16 转载在 其他  
字(4.4k)|赞(0)|评价(0)|浏览(243)

本文整理了Java中io.netty.buffer.ByteBuf.getLongLE()方法的一些代码示例,展示了ByteBuf.getLongLE()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。ByteBuf.getLongLE()方法的具体详情如下:
包路径:io.netty.buffer.ByteBuf
类名称:ByteBuf
方法名:getLongLE

ByteBuf.getLongLE介绍

[英]Gets a 64-bit long integer at the specified absolute index in this buffer in Little Endian Byte Order. This method does not modify readerIndex or writerIndex of this buffer.
[中]获取此缓冲区中指定绝对索引处的64位长整数(以小尾数字节顺序)。此方法不修改此缓冲区的readerIndex或writerIndex。

代码示例

代码示例来源:origin: netty/netty

@Override
public long getLongLE(int index) {
  return buf.getLongLE(index);
}

代码示例来源:origin: eclipse-vertx/vert.x

public long getLongLE(int pos) {
 return buffer.getLongLE(pos);
}

代码示例来源:origin: netty/netty

/**
 * Gets a 64-bit floating point number at the specified absolute
 * {@code index} in this buffer in Little Endian Byte Order.
 * This method does not modify {@code readerIndex} or
 * {@code writerIndex} of this buffer.
 *
 * @throws IndexOutOfBoundsException
 *         if the specified {@code index} is less than {@code 0} or
 *         {@code index + 8} is greater than {@code this.capacity}
 */
public double getDoubleLE(int index) {
  return Double.longBitsToDouble(getLongLE(index));
}

代码示例来源:origin: redisson/redisson

/**
 * Gets a 64-bit floating point number at the specified absolute
 * {@code index} in this buffer in Little Endian Byte Order.
 * This method does not modify {@code readerIndex} or
 * {@code writerIndex} of this buffer.
 *
 * @throws IndexOutOfBoundsException
 *         if the specified {@code index} is less than {@code 0} or
 *         {@code index + 8} is greater than {@code this.capacity}
 */
public double getDoubleLE(int index) {
  return Double.longBitsToDouble(getLongLE(index));
}

代码示例来源:origin: netty/netty

@Override
public long getLongLE(int index) {
  checkIndex(index, 8);
  return buffer.getLongLE(index);
}

代码示例来源:origin: netty/netty

@Override
public long getLongLE(int index) {
  return unwrap().getLongLE(index);
}

代码示例来源:origin: netty/netty

@Override
public long getLongLE(int index) {
  return unwrap().getLongLE(index);
}

代码示例来源:origin: netty/netty

@Override
protected long _getLongLE(int index) {
  return unwrap().getLongLE(index);
}

代码示例来源:origin: netty/netty

@Override
protected long _getLongLE(int index) {
  return unwrap().getLongLE(index);
}

代码示例来源:origin: redisson/redisson

@Override
public long getLongLE(int index) {
  checkIndex(index, 8);
  return buffer.getLongLE(index);
}

代码示例来源:origin: redisson/redisson

@Override
protected long _getLongLE(int index) {
  return unwrap().getLongLE(index);
}

代码示例来源:origin: redisson/redisson

@Override
protected long _getLongLE(int index) {
  return unwrap().getLongLE(index);
}

代码示例来源:origin: netty/netty

@Override
protected long _getLongLE(int index) {
  return unwrap().getLongLE(idx(index));
}

代码示例来源:origin: redisson/redisson

@Override
protected long _getLongLE(int index) {
  return unwrap().getLongLE(idx(index));
}

代码示例来源:origin: netty/netty

@Override
public long getLongLE(int index) {
  checkIndex0(index, 8);
  return unwrap().getLongLE(idx(index));
}

代码示例来源:origin: redisson/redisson

@Override
public long getLongLE(int index) {
  checkIndex0(index, 8);
  return unwrap().getLongLE(idx(index));
}

代码示例来源:origin: netty/netty

@Override
protected long _getLongLE(int index) {
  Component c = findComponent(index);
  if (index + 8 <= c.endOffset) {
    return c.buf.getLongLE(index - c.offset);
  } else if (order() == ByteOrder.BIG_ENDIAN) {
    return _getIntLE(index) & 0xffffffffL | (_getIntLE(index + 4) & 0xffffffffL) << 32;
  } else {
    return (_getIntLE(index) & 0xffffffffL) << 32 | _getIntLE(index + 4) & 0xffffffffL;
  }
}

代码示例来源:origin: netty/netty

@Override
protected long _getLongLE(int index) {
  Component c = findComponent0(index);
  if (index + 8 <= c.endOffset) {
    return c.buf.getLongLE(c.idx(index));
  } else if (order() == ByteOrder.BIG_ENDIAN) {
    return _getIntLE(index) & 0xffffffffL | (_getIntLE(index + 4) & 0xffffffffL) << 32;
  } else {
    return (_getIntLE(index) & 0xffffffffL) << 32 | _getIntLE(index + 4) & 0xffffffffL;
  }
}

代码示例来源:origin: redisson/redisson

@Override
protected long _getLongLE(int index) {
  Component c = findComponent(index);
  if (index + 8 <= c.endOffset) {
    return c.buf.getLongLE(index - c.offset);
  } else if (order() == ByteOrder.BIG_ENDIAN) {
    return _getIntLE(index) & 0xffffffffL | (_getIntLE(index + 4) & 0xffffffffL) << 32;
  } else {
    return (_getIntLE(index) & 0xffffffffL) << 32 | _getIntLE(index + 4) & 0xffffffffL;
  }
}

代码示例来源:origin: redisson/redisson

@Override
protected long _getLongLE(int index) {
  Component c = findComponent0(index);
  if (index + 8 <= c.endOffset) {
    return c.buf.getLongLE(c.idx(index));
  } else if (order() == ByteOrder.BIG_ENDIAN) {
    return _getIntLE(index) & 0xffffffffL | (_getIntLE(index + 4) & 0xffffffffL) << 32;
  } else {
    return (_getIntLE(index) & 0xffffffffL) << 32 | _getIntLE(index + 4) & 0xffffffffL;
  }
}

相关文章

微信公众号

最新文章

更多

ByteBuf类方法