Searched defs:Log2_64 (Results 1 - 3 of 3) sorted by relevance

/external/swiftshader/third_party/LLVM/include/llvm/Support/
H A DMathExtras.h315 /// Log2_64 - This function returns the floor log base 2 of the specified value,
317 inline unsigned Log2_64(uint64_t Value) { function in namespace:llvm
/external/llvm/include/llvm/Support/
H A DMathExtras.h495 /// Log2_64 - This function returns the floor log base 2 of the specified value,
497 inline unsigned Log2_64(uint64_t Value) { function in namespace:llvm
729 // Special case: if X or Y is 0, Log2_64 gives -1, and Log2Z
731 int Log2Z = Log2_64(X) + Log2_64(Y);
733 int Log2Max = Log2_64(Max);
/external/swiftshader/third_party/llvm-subzero/include/llvm/Support/
H A DMathExtras.h517 /// Log2_64 - This function returns the floor log base 2 of the specified value,
519 inline unsigned Log2_64(uint64_t Value) { function
787 // Special case: if X or Y is 0, Log2_64 gives -1, and Log2Z
789 int Log2Z = Log2_64(X) + Log2_64(Y);
791 int Log2Max = Log2_64(Max);

Completed in 155 milliseconds