Home
last modified time | relevance | path

Searched refs:topbits (Results 1 – 3 of 3) 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/vixl/src/aarch64/
Dsimulator-aarch64.cc2723 uint64_t topbits = (diff == 63) ? 0 : (~UINT64_C(0) << (diff + 1)); in VisitBitfield() local
2724 uint64_t signbits = extend && ((src >> S) & 1) ? topbits : 0; in VisitBitfield()