Home
last modified time | relevance | path

Searched refs:inthelper (Results 1 – 2 of 2) sorted by relevance

/external/flatbuffers/net/FlatBuffers/
DByteBuffer.cs68 private int[] inthelper = new[] { 0 }; field in FlatBuffers.ByteBuffer
298 Buffer.BlockCopy(floathelper, 0, inthelper, 0, sizeof(float)); in PutFloat()
299 WriteLittleEndian(offset, sizeof(float), (ulong)inthelper[0]); in PutFloat()
442 inthelper[0] = i; in GetFloat()
443 Buffer.BlockCopy(inthelper, 0, floathelper, 0, sizeof(float)); in GetFloat()
/external/flatbuffers/php/
DByteBuffer.php474 $inthelper = pack("V", $value);
475 $v = unpack("f", $inthelper);
479 $inthelper = pack("VV", $value, $value2);
480 $v = unpack("d", $inthelper);