HomeSort by relevance Sort by last modified time
    Searched defs:Log2_64 (Results 1 - 2 of 2) sorted by null

  /external/swiftshader/third_party/LLVM/include/llvm/Support/
MathExtras.h 315 /// Log2_64 - This function returns the floor log base 2 of the specified value,
317 inline unsigned Log2_64(uint64_t Value) {
  /external/llvm/include/llvm/Support/
MathExtras.h 495 /// Log2_64 - This function returns the floor log base 2 of the specified value,
497 inline unsigned Log2_64(uint64_t Value) {
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);

Completed in 857 milliseconds