OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:GetUshort
(Results
1 - 4
of
4
) sorted by null
/external/flatbuffers/net/FlatBuffers/
ByteBuffer.cs
328
return (short)
GetUshort
(offset);
331
public unsafe ushort
GetUshort
(int offset)
414
public ushort
GetUshort
(int index)
/external/flatbuffers/tests/FlatBuffers.Test/
TestTable.cs
84
return t.bb.
GetUshort
(t.bb_pos + off);
/external/flatbuffers/tests/MyGame/Example/
Stat.cs
24
public ushort Count { get { int o = __p.__offset(8); return o != 0 ? __p.bb.
GetUshort
(o + __p.bb_pos) : (ushort)0; } }
TypeAliases.cs
26
public ushort U16 { get { int o = __p.__offset(10); return o != 0 ? __p.bb.
GetUshort
(o + __p.bb_pos) : (ushort)0; } }
Completed in 857 milliseconds