HomeSort by relevance Sort by last modified time
    Searched refs:kPageMask (Results 1 - 15 of 15) sorted by null

  /frameworks/minikin/include/minikin/
SparseBitSet.h 53 uint32_t index = ch & kPageMask;
73 static const int kPageMask = (1 << kLogValuesPerPage) - 1;
FontCollection.h 64 static const int kPageMask = (1 << kLogCharsPerPage) - 1;
  /frameworks/minikin/libs/minikin/
SparseBitSet.cpp 63 mIndices.reset(new uint16_t[(mMaxVal + kPageMask) >> kLogValuesPerPage]);
88 ((start & kPageMask) >> kLogBitsPerEl);
118 uint32_t offset = (fromIndex & kPageMask) >> kLogBitsPerEl;
126 return (fromIndex & ~kPageMask) + (j << kLogBitsPerEl) + CountLeadingZeros(e);
129 uint32_t maxPage = (mMaxVal + kPageMask) >> kLogValuesPerPage;
FontCollection.cpp 88 size_t nPages = (mMaxChar + kPageMask) >> kLogCharsPerPage;
  /bionic/linker/
linker_utils.cpp 172 constexpr off64_t kPageMask = ~static_cast<off64_t>(PAGE_SIZE-1);
175 return offset & kPageMask;
  /external/v8/src/arm/
simulator-arm.cc 555 DCHECK((reinterpret_cast<intptr_t>(one) & CachePage::kPageMask) == 0);
556 DCHECK((reinterpret_cast<intptr_t>(two) & CachePage::kPageMask) == 0);
567 intptr_t start_page = (start & ~CachePage::kPageMask);
568 intptr_t end_page = ((start + size) & ~CachePage::kPageMask);
585 int offset = (start & CachePage::kPageMask);
591 DCHECK_EQ(0, start & CachePage::kPageMask);
617 void* page = reinterpret_cast<void*>(start & (~CachePage::kPageMask));
618 int offset = (start & CachePage::kPageMask);
627 void* page = reinterpret_cast<void*>(address & (~CachePage::kPageMask));
629 int offset = (address & CachePage::kPageMask);
    [all...]
simulator-arm.h 83 static const int kPageMask = kPageSize - 1;
  /external/v8/src/mips/
simulator-mips.cc 788 DCHECK((reinterpret_cast<intptr_t>(one) & CachePage::kPageMask) == 0);
789 DCHECK((reinterpret_cast<intptr_t>(two) & CachePage::kPageMask) == 0);
800 intptr_t start_page = (start & ~CachePage::kPageMask);
801 intptr_t end_page = ((start + size) & ~CachePage::kPageMask);
818 int offset = (start & CachePage::kPageMask);
824 DCHECK_EQ(0, start & CachePage::kPageMask);
851 void* page = reinterpret_cast<void*>(start & (~CachePage::kPageMask));
852 int offset = (start & CachePage::kPageMask);
861 void* page = reinterpret_cast<void*>(address & (~CachePage::kPageMask));
863 int offset = (address & CachePage::kPageMask);
    [all...]
simulator-mips.h 93 static const int kPageMask = kPageSize - 1;
  /external/v8/src/ppc/
simulator-ppc.cc 638 DCHECK((reinterpret_cast<intptr_t>(one) & CachePage::kPageMask) == 0);
639 DCHECK((reinterpret_cast<intptr_t>(two) & CachePage::kPageMask) == 0);
650 intptr_t start_page = (start & ~CachePage::kPageMask);
651 intptr_t end_page = ((start + size) & ~CachePage::kPageMask);
668 int offset = (start & CachePage::kPageMask);
674 DCHECK_EQ(0, static_cast<int>(start & CachePage::kPageMask));
700 void* page = reinterpret_cast<void*>(start & (~CachePage::kPageMask));
701 int offset = (start & CachePage::kPageMask);
710 void* page = reinterpret_cast<void*>(address & (~CachePage::kPageMask));
712 int offset = (address & CachePage::kPageMask);
    [all...]
simulator-ppc.h 82 static const int kPageMask = kPageSize - 1;
  /external/v8/src/mips64/
simulator-mips64.h 102 static const int kPageMask = kPageSize - 1;
simulator-mips64.cc 721 DCHECK((reinterpret_cast<intptr_t>(one) & CachePage::kPageMask) == 0);
722 DCHECK((reinterpret_cast<intptr_t>(two) & CachePage::kPageMask) == 0);
733 intptr_t start_page = (start & ~CachePage::kPageMask);
734 intptr_t end_page = ((start + size) & ~CachePage::kPageMask);
751 int offset = (start & CachePage::kPageMask);
757 DCHECK_EQ((int64_t)0, start & CachePage::kPageMask);
783 void* page = reinterpret_cast<void*>(start & (~CachePage::kPageMask));
784 int offset = (start & CachePage::kPageMask);
793 void* page = reinterpret_cast<void*>(address & (~CachePage::kPageMask));
795 int offset = (address & CachePage::kPageMask);
    [all...]
  /external/v8/src/s390/
simulator-s390.h 80 static const int kPageMask = kPageSize - 1;
simulator-s390.cc 643 DCHECK((reinterpret_cast<intptr_t>(one) & CachePage::kPageMask) == 0);
644 DCHECK((reinterpret_cast<intptr_t>(two) & CachePage::kPageMask) == 0);
653 intptr_t start_page = (start & ~CachePage::kPageMask);
654 intptr_t end_page = ((start + size) & ~CachePage::kPageMask);
670 int offset = (start & CachePage::kPageMask);
676 DCHECK_EQ(0, static_cast<int>(start & CachePage::kPageMask));
701 void* page = reinterpret_cast<void*>(start & (~CachePage::kPageMask));
702 int offset = (start & CachePage::kPageMask);
711 void* page = reinterpret_cast<void*>(address & (~CachePage::kPageMask));
713 int offset = (address & CachePage::kPageMask);
    [all...]

Completed in 590 milliseconds