OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:Log2Floor
(Results
1 - 3
of
3
) sorted by null
/external/chromium/base/
bits.h
18
inline int
Log2Floor
(uint32 n) {
40
//
Log2Floor
returns -1 for 0, so the following works correctly for n=1.
41
return 1 +
Log2Floor
(n - 1);
/external/chromium_org/base/
bits.h
17
inline int
Log2Floor
(uint32 n) {
39
//
Log2Floor
returns -1 for 0, so the following works correctly for n=1.
40
return 1 +
Log2Floor
(n - 1);
/external/chromium_org/gpu/command_buffer/client/
transfer_buffer.cc
110
static int
Log2Floor
(uint32 n) {
132
//
Log2Floor
returns -1 for 0, so the following works correctly for n=1.
133
return 1 +
Log2Floor
(n - 1);
Completed in 29 milliseconds