Home
last modified time | relevance | path

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

/external/tensorflow/tensorflow/core/lib/core/
Dbits.h68 const uint32 topbits = static_cast<uint32>(n >> 32); in Log2Floor64() local
69 if (topbits == 0) { in Log2Floor64()
73 return 32 + Log2Floor(topbits); in Log2Floor64()
/external/tensorflow/tensorflow/core/lib/strings/
Dordered_code.cc436 const uint32 topbits = static_cast<uint32>(n >> 32); in Log2Floor64() local
437 if (topbits == 0) { in Log2Floor64()
441 return 32 + Log2Floor32_Portable(topbits); in Log2Floor64()
/external/protobuf/src/google/protobuf/stubs/
Dport.h361 const uint32 topbits = static_cast<uint32>(n >> 32); in Log2FloorNonZero64_Portable() local
362 if (topbits == 0) { in Log2FloorNonZero64_Portable()
366 return 32 + static_cast<int>(Log2FloorNonZero(topbits)); in Log2FloorNonZero64_Portable()
/external/vixl/src/aarch64/
Dsimulator-aarch64.cc2924 uint64_t topbits = (diff == 63) ? 0 : (~UINT64_C(0) << (diff + 1)); in VisitBitfield() local
2925 uint64_t signbits = extend && ((src >> S) & 1) ? topbits : 0; in VisitBitfield()