Home
last modified time | relevance | path

Searched refs:bit_cast (Results 1 – 4 of 4) sorted by relevance

/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/src/google/protobuf/util/internal/
Dprotostream_objectsource.cc389 ow->RenderDouble(field_name, bit_cast<double>(buffer64)); in RenderDouble()
403 ow->RenderFloat(field_name, bit_cast<float>(buffer32)); in RenderFloat()
417 ow->RenderInt64(field_name, bit_cast<int64>(buffer64)); in RenderInt64()
431 ow->RenderUint64(field_name, bit_cast<uint64>(buffer64)); in RenderUInt64()
445 ow->RenderInt32(field_name, bit_cast<int32>(buffer32)); in RenderInt32()
459 ow->RenderUint32(field_name, bit_cast<uint32>(buffer32)); in RenderUInt32()
788 ow->RenderInt32(field_name, bit_cast<int32>(buffer32)); in RenderNonMessageField()
793 ow->RenderInt64(field_name, bit_cast<int64>(buffer64)); in RenderNonMessageField()
798 ow->RenderUint32(field_name, bit_cast<uint32>(buffer32)); in RenderNonMessageField()
803 ow->RenderUint64(field_name, bit_cast<uint64>(buffer64)); in RenderNonMessageField()
[all …]
Dprotostream_objectsource_test.cc131 ->RenderUint32("", bit_cast<uint32>(3201)) in PrepareExpectingObjectWriterForRepeatedPrimitive()
132 ->RenderUint32("", bit_cast<uint32>(0)) in PrepareExpectingObjectWriterForRepeatedPrimitive()
133 ->RenderUint32("", bit_cast<uint32>(3202)) in PrepareExpectingObjectWriterForRepeatedPrimitive()
136 ->RenderUint32("", bit_cast<uint32>(3203)) in PrepareExpectingObjectWriterForRepeatedPrimitive()
137 ->RenderUint32("", bit_cast<uint32>(0)) in PrepareExpectingObjectWriterForRepeatedPrimitive()
154 ->RenderUint64("", bit_cast<uint64>(6401LL)) in PrepareExpectingObjectWriterForRepeatedPrimitive()
155 ->RenderUint64("", bit_cast<uint64>(0LL)) in PrepareExpectingObjectWriterForRepeatedPrimitive()
158 ->RenderUint64("", bit_cast<uint64>(0LL)) in PrepareExpectingObjectWriterForRepeatedPrimitive()
159 ->RenderUint64("", bit_cast<uint64>(6402LL)) in PrepareExpectingObjectWriterForRepeatedPrimitive()
160 ->RenderUint64("", bit_cast<uint64>(6403LL)) in PrepareExpectingObjectWriterForRepeatedPrimitive()
[all …]
/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/src/google/protobuf/stubs/
Dcasts.h115 inline To bit_cast(const From& from) { in bit_cast() function
129 using internal::bit_cast;
/frameworks/base/libs/protoutil/src/
DProtoOutputStream.cpp523 inline To bit_cast(From const &from) { in bit_cast() function
533 mBuffer->writeRawFixed64(bit_cast<double, uint64_t>(val)); in writeDoubleImpl()
540 mBuffer->writeRawFixed32(bit_cast<float, uint32_t>(val)); in writeFloatImpl()