Home
last modified time | relevance | path

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

/external/tensorflow/tensorflow/core/platform/
Draw_coding.h41 inline uint32 DecodeFixed32(const char* ptr) { in DecodeFixed32() function
62 uint64 lo = DecodeFixed32(ptr); in DecodeFixed64()
63 uint64 hi = DecodeFixed32(ptr + 4); in DecodeFixed64()
Dhash.cc42 uint32 k = core::DecodeFixed32(data); in Hash32()
/external/libtextclassifier/native/lang_id/common/math/
Dhash.cc28 inline uint32 DecodeFixed32(const char *ptr) { in DecodeFixed32() function
50 uint32 k = DecodeFixed32(data); in Hash32()
/external/tensorflow/tensorflow/core/lib/io/
Dformat.cc60 const uint32 magic_lo = core::DecodeFixed32(magic_ptr); in DecodeFrom()
61 const uint32 magic_hi = core::DecodeFixed32(magic_ptr + 4); in DecodeFrom()
111 const uint32 crc = crc32c::Unmask(core::DecodeFixed32(data + n + 1)); in ReadBlock()
Dblock.cc31 return core::DecodeFixed32(data_ + size_ - sizeof(uint32)); in NumRestarts()
112 return core::DecodeFixed32(data_ + restarts_ + index * sizeof(uint32)); in GetRestartPoint()
Dcache_test.cc35 return core::DecodeFixed32(k.data()); in DecodeKey()
Drecord_reader.cc109 const uint32 masked_crc = core::DecodeFixed32(result->data() + n); in ReadChecksummed()
Dcache.cc419 uint32_t w = core::DecodeFixed32(data); in Hash()
/external/tensorflow/tensorflow/core/lib/hash/
Dcrc32c.cc209 return core::DecodeFixed32(reinterpret_cast<const char *>(p)); in LE_LOAD32()
/external/tensorflow/tensorflow/core/lib/core/
Dcoding_test.cc54 uint32 actual = DecodeFixed32(p); in TEST()
/external/golang-protobuf/proto/
Ddecode.go223 func (p *Buffer) DecodeFixed32() (x uint64, err error) { func
Dlib.go562 u, err = p.DecodeFixed32()
Dtext.go640 x, err = b.DecodeFixed32()
Dall_test.go231 x, e = o.DecodeFixed32()