OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:Log2Floor
(Results
1 - 4
of
4
) sorted by null
/external/pdfium/third_party/base/
bits.h
25
inline int
Log2Floor
(uint32_t n) {
47
//
Log2Floor
returns -1 for 0, so the following works correctly for n=1.
48
return 1 +
Log2Floor
(n - 1);
/external/tensorflow/tensorflow/core/lib/core/
bits.h
25
int
Log2Floor
(uint32 n);
39
inline int
Log2Floor
(uint32 n) { return n == 0 ? -1 : 31 ^ __builtin_clz(n); }
49
inline int
Log2Floor
(uint32 n) {
71
return
Log2Floor
(static_cast<uint32>(n));
73
return 32 +
Log2Floor
(topbits);
80
int floor =
Log2Floor
(n);
/external/tensorflow/tensorflow/lite/kernels/internal/
spectrogram.cc
46
inline int
Log2Floor
(uint32_t n) {
62
int floor =
Log2Floor
(n);
/external/brotli/c/dec/
decode.c
460
static BROTLI_INLINE uint32_t
Log2Floor
(uint32_t x) {
476
uint32_t max_bits =
Log2Floor
(alphabet_size - 1);
[
all
...]
Completed in 721 milliseconds