Home
last modified time | relevance | path

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

/thrift-3.4.0/lib/cpp/src/thrift/protocol/
DTBinaryProtocol.tcc374 } theBytes; in readI16() local
375 this->trans_->readAll(theBytes.b, 2); in readI16()
376 i16 = (int16_t)ByteOrder_::fromWire16(theBytes.all); in readI16()
385 } theBytes; in readI32() local
386 this->trans_->readAll(theBytes.b, 4); in readI32()
387 i32 = (int32_t)ByteOrder_::fromWire32(theBytes.all); in readI32()
396 } theBytes; in readI64() local
397 this->trans_->readAll(theBytes.b, 8); in readI64()
398 i64 = (int64_t)ByteOrder_::fromWire64(theBytes.all); in readI64()
410 } theBytes; in readDouble() local
[all …]