Searched refs:buffer32 (Results 1 – 4 of 4) sorted by relevance
/external/protobuf/src/google/protobuf/util/internal/ |
D | protostream_objectsource.cc | 285 uint32 buffer32; in RenderMap() local 286 stream_->ReadVarint32(&buffer32); // message length in RenderMap() 287 int old_limit = stream_->PushLimit(buffer32); in RenderMap() 421 uint32 buffer32 = 0; // default value of Float wrapper value in RenderFloat() local 423 os->stream_->ReadLittleEndian32(&buffer32); in RenderFloat() 426 ow->RenderFloat(field_name, bit_cast<float>(buffer32)); in RenderFloat() 463 uint32 buffer32 = 0; // default value of Int32 wrapper value in RenderInt32() local 465 os->stream_->ReadVarint32(&buffer32); in RenderInt32() 468 ow->RenderInt32(field_name, bit_cast<int32>(buffer32)); in RenderInt32() 477 uint32 buffer32 = 0; // default value of UInt32 wrapper value in RenderUInt32() local [all …]
|
/external/tensorflow/tensorflow/lite/kernels/parse_example/ |
D | example_proto_fast_parsing.h | 245 uint32 buffer32; in ParseFloatList() local 246 if (!stream.ReadLittleEndian32(&buffer32)) return false; in ParseFloatList() 248 float_list->data()[index] = absl::bit_cast<float>(buffer32); in ParseFloatList() 265 uint32 buffer32; in ParseFloatList() local 266 if (!stream.ReadLittleEndian32(&buffer32)) return false; in ParseFloatList() 267 float_list->data()[index] = absl::bit_cast<float>(buffer32); in ParseFloatList() 519 uint32 buffer32; in ParseFloatFeature() local 520 if (!stream->ReadLittleEndian32(&buffer32)) { in ParseFloatFeature() 524 *out++ = absl::bit_cast<float>(buffer32); in ParseFloatFeature() 531 uint32 buffer32; in ParseFloatFeature() local [all …]
|
/external/tpm2-tss/src/tss2-esys/ |
D | esys_crypto.c | 260 uint8_t buffer32[sizeof(uint32_t)]; in iesys_crypto_KDFaHmac() local 269 r = Tss2_MU_UINT32_Marshal(counter, &buffer32[0], sizeof(UINT32), in iesys_crypto_KDFaHmac() 272 r = iesys_crypto_hmac_update(cryptoContext, &buffer32[0], buffer32_size); in iesys_crypto_KDFaHmac() 288 r = Tss2_MU_UINT32_Marshal(bitlength, &buffer32[0], sizeof(UINT32), in iesys_crypto_KDFaHmac() 291 r = iesys_crypto_hmac_update(cryptoContext, &buffer32[0], buffer32_size); in iesys_crypto_KDFaHmac()
|
/external/tensorflow/tensorflow/core/util/ |
D | example_proto_fast_parsing.cc | 251 uint32 buffer32; in ParseFloatList() local 252 if (!stream.ReadLittleEndian32(&buffer32)) return false; in ParseFloatList() 254 float_list->data()[index] = absl::bit_cast<float>(buffer32); in ParseFloatList() 271 uint32 buffer32; in ParseFloatList() local 272 if (!stream.ReadLittleEndian32(&buffer32)) return false; in ParseFloatList() 273 float_list->data()[index] = absl::bit_cast<float>(buffer32); in ParseFloatList() 1909 uint32 buffer32; in ParseFloatFeature() local 1910 if (!stream->ReadLittleEndian32(&buffer32)) { in ParseFloatFeature() 1914 *out++ = absl::bit_cast<float>(buffer32); in ParseFloatFeature() 1921 uint32 buffer32; in ParseFloatFeature() local [all …]
|