HomeSort by relevance Sort by last modified time
    Searched refs:bytewidth (Results 1 - 10 of 10) sorted by null

  /external/flatbuffers/python/flatbuffers/
number_types.py 30 bytewidth = 1 variable in class:BoolFlags
39 bytewidth = 1 variable in class:Uint8Flags
48 bytewidth = 2 variable in class:Uint16Flags
57 bytewidth = 4 variable in class:Uint32Flags
66 bytewidth = 8 variable in class:Uint64Flags
75 bytewidth = 1 variable in class:Int8Flags
84 bytewidth = 2 variable in class:Int16Flags
93 bytewidth = 4 variable in class:Int32Flags
102 bytewidth = 8 variable in class:Int64Flags
111 bytewidth = variable in class:Float32Flags
120 bytewidth = 8 variable in class:Float64Flags
    [all...]
util.py 28 return buf, offset + number_types.Int32Flags.bytewidth
builder.py 213 metadata = VtableMetadataFields * N.VOffsetTFlags.bytewidth
249 vBytes *= N.VOffsetTFlags.bytewidth
349 self.Prep(N.SOffsetTFlags.bytewidth, 0)
353 off2 = self.Offset() - off + N.SOffsetTFlags.bytewidth
363 self.Prep(N.UOffsetTFlags.bytewidth, 0)
367 off2 = self.Offset() - off + N.UOffsetTFlags.bytewidth
382 self.Prep(N.Uint32Flags.bytewidth, elemSize*numElems)
413 self.Prep(N.UOffsetTFlags.bytewidth, (len(x)+1)*N.Uint8Flags.bytewidth)
435 self.Prep(N.UOffsetTFlags.bytewidth, len(x)*N.Uint8Flags.bytewidth
    [all...]
table.py 52 start = off + N.UOffsetTFlags.bytewidth
74 x += N.UOffsetTFlags.bytewidth
112 length = self.VectorLen(off) # TODO: length accounts for bytewidth, right?
  /external/flatbuffers/lua/flatbuffers/
numTypes.lua 42 assert(self.bytewidth == otherType.bytewidth, "Cannot convert between types of different widths")
51 bytewidth = 1,
61 bytewidth = 1,
71 bytewidth = 2,
81 bytewidth = 4,
91 bytewidth = 8,
101 bytewidth = 1,
111 bytewidth = 2,
121 bytewidth = 4
    [all...]
builder.lua 32 if (#a * VOffsetT.bytewidth) ~= #b then
37 local x = string.unpack(VOffsetT.packFmt, b, 1 + (i - 1) * VOffsetT.bytewidth)
107 local metadata = VtableMetadataFields * VOffsetT.bytewidth
136 vBytes = vBytes * VOffsetT.bytewidth
181 -- pads are 8-bit, so skip the bytewidth lookup
211 self:Prep(SOffsetT.bytewidth, 0)
213 local off2 = self:Offset() - off + SOffsetT.bytewidth
218 self:Prep(UOffsetT.bytewidth, 0)
221 local off2 = soffset - off + UOffsetT.bytewidth
231 self:Prep(Uint32.bytewidth, elemSize * numElements
    [all...]
view.lua 40 local start = off + N.UOffsetT.bytewidth
57 x = x + N.UOffsetT.bytewidth
  /external/zopfli/src/zopflipng/lodepng/
lodepng.cpp 4096 size_t bytewidth = (bpp + 7) \/ 8; local
4137 size_t bytewidth = bpp \/ 8; local
5244 size_t bytewidth = (bpp + 7) \/ 8; local
    [all...]
  /external/flatbuffers/tests/
py_test.py 302 N.VOffsetTFlags.bytewidth)
397 b.StartVector(flatbuffers.number_types.Uint8Flags.bytewidth, 1, 1)
406 b.StartVector(flatbuffers.number_types.Uint8Flags.bytewidth, 2, 1)
417 b.StartVector(flatbuffers.number_types.Uint16Flags.bytewidth, 1, 1)
426 b.StartVector(flatbuffers.number_types.Uint16Flags.bytewidth, 2, 1)
828 b.StartVector(flatbuffers.number_types.Uint8Flags.bytewidth, 0, 1)
844 b.StartVector(flatbuffers.number_types.Uint8Flags.bytewidth, 0, 1)
864 b.StartVector(flatbuffers.number_types.Int16Flags.bytewidth, 2, 1)
    [all...]
luatest.lua 15 offset = offset + flatbuffers.N.Int32.bytewidth

Completed in 272 milliseconds