Home
last modified time | relevance | path

Searched refs:toByteWidth (Results 1 – 6 of 6) sorted by relevance

/third_party/flatbuffers/ts/flexbuffers/
Dreference-util.ts2 import { toByteWidth, fromByteWidth } from './bit-width-util'
9 if (dataView.byteLength <= offset + width || (offset & (toByteWidth(width) - 1)) !== 0) {
Dbit-width-util.ts3 export function toByteWidth(bitWidth: BitWidth): number { function
Dbuilder.ts2 import { paddingSize, iwidth, uwidth, fwidth, toByteWidth, fromByteWidth } from './bit-width-util'
35 const byteWidth = toByteWidth(width);
/third_party/flatbuffers/dart/lib/src/
Dtypes.dart12 static int toByteWidth(BitWidth self) {
Dreference.dart319 …buffer.lengthInBytes <= offset + width.index || offset & (BitWidthUtil.toByteWidth(width) - 1) != …
Dbuilder.dart435 final byteWidth = BitWidthUtil.toByteWidth(width);