HomeSort by relevance Sort by last modified time
    Searched defs:ByteAs32 (Results 1 - 3 of 3) sorted by null

  /external/libtextclassifier/lang_id/common/math/
hash.cc 36 static inline uint32 ByteAs32(char c) { return static_cast<uint32>(c) & 0xff; }
63 h ^= ByteAs32(data[2]) << 16;
66 h ^= ByteAs32(data[1]) << 8;
69 h ^= ByteAs32(data[0]);
  /external/libtextclassifier/util/hash/
hash.cc 34 static inline uint32 ByteAs32(char c) { return static_cast<uint32>(c) & 0xff; }
61 h ^= ByteAs32(data[2]) << 16;
64 h ^= ByteAs32(data[1]) << 8;
67 h ^= ByteAs32(data[0]);
  /external/tensorflow/tensorflow/core/lib/hash/
hash.cc 27 static inline uint32 ByteAs32(char c) { return static_cast<uint32>(c) & 0xff; }
59 h ^= ByteAs32(data[2]) << 16;
62 h ^= ByteAs32(data[1]) << 8;
65 h ^= ByteAs32(data[0]);

Completed in 3591 milliseconds