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

  /external/tensorflow/tensorflow/core/lib/io/
block_builder.cc 102 const size_t non_shared = key.size() - shared; local
105 CHECK_LE(non_shared, std::numeric_limits<uint32_t>::max());
108 // Add "<shared><non_shared><value_size>" to buffer_
110 core::PutVarint32(&buffer_, static_cast<uint32_t>(non_shared));
114 buffer_.append(key.data() + shared, non_shared);
119 last_key_.append(key.data() + shared, non_shared);
block.cc 58 // storing the number of shared key bytes, non_shared key bytes,
59 // and the length of the value in "*shared", "*non_shared", and
65 uint32* shared, uint32* non_shared,
69 *non_shared = reinterpret_cast<const unsigned char*>(p)[1];
71 if ((*shared | *non_shared | *value_length) < 128) {
76 if ((p = core::GetVarint32Ptr(p, limit, non_shared)) == nullptr)
82 if (static_cast<uint32>(limit - p) < (*non_shared + *value_length)) {
159 uint32 shared, non_shared, value_length; variable
162 &non_shared, &value_length);
167 StringPiece mid_key(key_ptr, non_shared);
217 uint32 shared, non_shared, value_length; local
    [all...]

Completed in 59 milliseconds