HomeSort by relevance Sort by last modified time
    Searched refs:idx (Results 76 - 100 of 1388) sorted by null

1 2 34 5 6 7 8 91011>>

  /prebuilts/ndk/android-ndk-r7/platforms/android-9/arch-x86/usr/include/asm/
fixmap_32.h 38 #define set_fixmap(idx, phys) __set_fixmap(idx, phys, PAGE_KERNEL)
40 #define set_fixmap_nocache(idx, phys) __set_fixmap(idx, phys, PAGE_KERNEL_NOCACHE)
42 #define clear_fixmap(idx) __set_fixmap(idx, 0, __pgprot(0))
  /dalvik/vm/
BitVector.cpp 153 unsigned int idx;
155 for (idx = 0; idx < (numBits >> 5); idx++) {
156 pBits->storage[idx] = -1;
160 pBits->storage[idx] = (1 << remNumBits) - 1;
238 unsigned int idx;
239 for (idx = 0; idx < dest->storageSize; idx++)
    [all...]
  /bionic/libc/kernel/common/linux/
highmem.h 31 #define kmap_atomic(page, idx) page_address(page)
32 #define kunmap_atomic(addr, idx) do { } while (0)
34 #define kmap_atomic_pfn(pfn, idx) page_address(pfn_to_page(pfn))