HomeSort by relevance Sort by last modified time
    Searched refs:len64 (Results 1 - 4 of 4) sorted by null

  /external/boringssl/src/crypto/bytestring/
cbs.c 294 uint64_t len64; local
310 if (!cbs_get_u(&header, &len64, num_bytes)) {
315 if (len64 < 128) {
319 if ((len64 >> ((num_bytes-1)*8)) == 0) {
323 len = len64;
  /external/python/cpython3/Lib/email/
charset.py 373 len64 = email.base64mime.header_length(header_bytes)
375 if len64 < lenqp:
  /external/dng_sdk/source/
dng_stream.cpp 164 uint64 len64 = Length (); local
166 if (len64 > 0xFFFFFFFF)
171 uint32 len = (uint32) len64;
  /external/tensorflow/tensorflow/c/
c_api.cc 354 tensorflow::uint64 len64 = 0; local
355 const char* p = tensorflow::core::GetVarint64Ptr(src, src + src_len, &len64);
359 if (len64 > std::numeric_limits<size_t>::max()) {
360 return InvalidArgument("encoded string is ", len64,
364 *dst_len = static_cast<size_t>(len64);
    [all...]

Completed in 986 milliseconds