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

  /frameworks/base/telephony/java/com/android/internal/telephony/uicc/
IccUtils.java 814 public static byte countTrailingZeros(byte b) {
  /external/llvm/include/llvm/Support/
MathExtras.h 111 std::size_t countTrailingZeros(T Val, ZeroBehavior ZB = ZB_Width) {
198 return countTrailingZeros(Val, ZB_Undefined);
434 return countTrailingZeros(~Value, ZB);
  /external/swiftshader/third_party/llvm-subzero/include/llvm/Support/
MathExtras.h 111 std::size_t countTrailingZeros(T Val, ZeroBehavior ZB = ZB_Width) {
198 return countTrailingZeros(Val, ZB_Undefined);
456 return countTrailingZeros(~Value, ZB);
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/Support/
MathExtras.h 111 std::size_t countTrailingZeros(T Val, ZeroBehavior ZB = ZB_Width) {
198 return countTrailingZeros(Val, ZB_Undefined);
456 return countTrailingZeros(~Value, ZB);
  /prebuilts/clang/host/darwin-x86/clang-4393122/include/llvm/Support/
MathExtras.h 112 std::size_t countTrailingZeros(T Val, ZeroBehavior ZB = ZB_Width) {
199 return countTrailingZeros(Val, ZB_Undefined);
474 return countTrailingZeros(~Value, ZB);
  /prebuilts/clang/host/darwin-x86/clang-4479392/include/llvm/Support/
MathExtras.h 112 std::size_t countTrailingZeros(T Val, ZeroBehavior ZB = ZB_Width) {
199 return countTrailingZeros(Val, ZB_Undefined);
474 return countTrailingZeros(~Value, ZB);
  /prebuilts/clang/host/darwin-x86/clang-4579689/include/llvm/Support/
MathExtras.h 112 std::size_t countTrailingZeros(T Val, ZeroBehavior ZB = ZB_Width) {
199 return countTrailingZeros(Val, ZB_Undefined);
474 return countTrailingZeros(~Value, ZB);
  /prebuilts/clang/host/darwin-x86/clang-4630689/include/llvm/Support/
MathExtras.h 112 std::size_t countTrailingZeros(T Val, ZeroBehavior ZB = ZB_Width) {
199 return countTrailingZeros(Val, ZB_Undefined);
474 return countTrailingZeros(~Value, ZB);
  /prebuilts/clang/host/darwin-x86/clang-4639204/include/llvm/Support/
MathExtras.h 112 std::size_t countTrailingZeros(T Val, ZeroBehavior ZB = ZB_Width) {
199 return countTrailingZeros(Val, ZB_Undefined);
474 return countTrailingZeros(~Value, ZB);
  /prebuilts/clang/host/darwin-x86/clang-4691093/include/llvm/Support/
MathExtras.h 112 std::size_t countTrailingZeros(T Val, ZeroBehavior ZB = ZB_Width) {
199 return countTrailingZeros(Val, ZB_Undefined);
474 return countTrailingZeros(~Value, ZB);
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/llvm/include/llvm/Support/
MathExtras.h 111 std::size_t countTrailingZeros(T Val, ZeroBehavior ZB = ZB_Width) {
198 return countTrailingZeros(Val, ZB_Undefined);
456 return countTrailingZeros(~Value, ZB);
  /prebuilts/clang/host/linux-x86/clang-4393122/include/llvm/Support/
MathExtras.h 112 std::size_t countTrailingZeros(T Val, ZeroBehavior ZB = ZB_Width) {
199 return countTrailingZeros(Val, ZB_Undefined);
474 return countTrailingZeros(~Value, ZB);
  /prebuilts/clang/host/linux-x86/clang-4479392/include/llvm/Support/
MathExtras.h 112 std::size_t countTrailingZeros(T Val, ZeroBehavior ZB = ZB_Width) {
199 return countTrailingZeros(Val, ZB_Undefined);
474 return countTrailingZeros(~Value, ZB);
  /prebuilts/clang/host/linux-x86/clang-4579689/include/llvm/Support/
MathExtras.h 112 std::size_t countTrailingZeros(T Val, ZeroBehavior ZB = ZB_Width) {
199 return countTrailingZeros(Val, ZB_Undefined);
474 return countTrailingZeros(~Value, ZB);
  /prebuilts/clang/host/linux-x86/clang-4630689/include/llvm/Support/
MathExtras.h 112 std::size_t countTrailingZeros(T Val, ZeroBehavior ZB = ZB_Width) {
199 return countTrailingZeros(Val, ZB_Undefined);
474 return countTrailingZeros(~Value, ZB);
  /prebuilts/clang/host/linux-x86/clang-4639204/include/llvm/Support/
MathExtras.h 112 std::size_t countTrailingZeros(T Val, ZeroBehavior ZB = ZB_Width) {
199 return countTrailingZeros(Val, ZB_Undefined);
474 return countTrailingZeros(~Value, ZB);
  /prebuilts/clang/host/linux-x86/clang-4691093/include/llvm/Support/
MathExtras.h 112 std::size_t countTrailingZeros(T Val, ZeroBehavior ZB = ZB_Width) {
199 return countTrailingZeros(Val, ZB_Undefined);
474 return countTrailingZeros(~Value, ZB);
  /external/llvm/lib/Support/
APInt.cpp 725 unsigned APInt::countTrailingZeros() const {
727 return std::min(unsigned(llvm::countTrailingZeros(VAL)), BitWidth);
733 Count += llvm::countTrailingZeros(pVal[i]);
    [all...]
  /external/swiftshader/third_party/llvm-subzero/lib/Support/
APInt.cpp 703 unsigned APInt::countTrailingZeros() const {
705 return std::min(unsigned(llvm::countTrailingZeros(VAL)), BitWidth);
711 Count += llvm::countTrailingZeros(pVal[i]);
    [all...]

Completed in 1153 milliseconds