Searched refs:floathelper (Results 1 – 2 of 2) sorted by relevance
/external/flatbuffers/net/FlatBuffers/ |
D | ByteBuffer.cs | 67 private float[] floathelper = new[] { 0.0f }; field in FlatBuffers.ByteBuffer 297 floathelper[0] = value; in PutFloat() 298 Buffer.BlockCopy(floathelper, 0, inthelper, 0, sizeof(float)); in PutFloat() 443 Buffer.BlockCopy(inthelper, 0, floathelper, 0, sizeof(float)); in GetFloat() 444 return floathelper[0]; in GetFloat()
|
/external/flatbuffers/php/ |
D | ByteBuffer.php | 298 $floathelper = pack("f", $value); 299 $v = unpack("V", $floathelper); 311 $floathelper = pack("d", $value); 312 $v = unpack("V*", $floathelper);
|