Searched refs:mm (Results 1 - 24 of 24) sorted by relevance

/bionic/libc/kernel/arch-x86/asm/
H A Dpgalloc_32.h22 #include <linux/mm.h>
24 #define paravirt_alloc_pt(mm, pfn) do { } while (0)
31 #define pmd_populate_kernel(mm, pmd, pte) do { paravirt_alloc_pt(mm, __pa(pte) >> PAGE_SHIFT); set_pmd(pmd, __pmd(_PAGE_TABLE + __pa(pte))); } while (0)
32 #define pmd_populate(mm, pmd, pte) do { paravirt_alloc_pt(mm, page_to_pfn(pte)); set_pmd(pmd, __pmd(_PAGE_TABLE + ((unsigned long long)page_to_pfn(pte) << (unsigned long long) PAGE_SHIFT))); } while (0)
H A Dcacheflush.h21 #include <linux/mm.h>
24 #define flush_cache_mm(mm) do { } while (0)
25 #define flush_cache_dup_mm(mm) do { } while (0)
H A Dtlbflush_32.h21 #include <linux/mm.h>
41 #define flush_tlb_others(mask, mm, va) native_flush_tlb_others(&mask, mm, va)
H A Dpgtable-2level.h25 #define set_pte_at(mm,addr,ptep,pteval) native_set_pte_at(mm, addr, ptep, pteval)
29 #define set_pte_present(mm,addr,ptep,pteval) set_pte_at(mm,addr,ptep,pteval)
30 #define pte_clear(mm,addr,xp) do { set_pte_at(mm, addr, xp, __pte(0)); } while (0)
H A Ddma-mapping_32.h21 #include <linux/mm.h>
H A Dpgtable_32.h147 #define pte_update(mm, addr, ptep) do { } while (0)
149 #define pte_update_defer(mm, addr, ptep) do { } while (0)
167 #define pgd_offset(mm, address) ((mm)->pgd+pgd_index(address))
/bionic/libc/kernel/arch-mips/asm/
H A Dcacheflush.h21 #include <linux/mm.h>
24 #define flush_cache_dup_mm(mm) do { (void) (mm); } while (0)
H A Dtlbflush.h21 #include <linux/mm.h>
24 #define flush_tlb_mm(mm) local_flush_tlb_mm(mm)
H A Dpgalloc.h22 #include <linux/mm.h>
27 #define pmd_free(mm, x) do { } while (0)
H A Dtlb.h25 #define tlb_flush(tlb) flush_tlb_mm((tlb)->mm)
H A Dpgtable-32.h61 #define pgd_offset(mm, addr) ((mm)->pgd + pgd_index(addr))
H A Dpgtable.h64 #define set_pte_at(mm, addr, ptep, pteval) set_pte(ptep, pteval)
/bionic/libc/kernel/common/asm-generic/
H A D4level-fixup.h29 #define pmd_alloc(mm, pud, address) ((unlikely(pgd_none(*(pud))) && __pmd_alloc(mm, pud, address))? NULL: pmd_offset(pud, address))
30 #define pud_alloc(mm, pgd, address) (pgd)
H A Dpgtable-nopmd.h34 #define pud_populate(mm, pmd, pte) do { } while (0)
41 #define pmd_alloc_one(mm, address) NULL
H A Dpgtable-nopud.h31 #define pgd_populate(mm, pgd, pud) do { } while (0)
39 #define pud_alloc_one(mm, address) NULL
H A Dtlb.h29 struct mm_struct *mm; member in struct:mmu_gather
44 #define tlb_migrate_finish(mm) do {} while (0)
H A Dpgtable.h84 #define pgd_offset_gate(mm, addr) pgd_offset(mm, addr)
/bionic/libc/kernel/common/linux/
H A Dhighmem.h22 #include <linux/mm.h>
H A Dpagemap.h21 #include <linux/mm.h>
H A Dskbuff.h30 #include <linux/mm.h>
/bionic/libc/bionic/
H A Dlibc_logging.cpp232 int mm; local
246 mm = nn;
248 c = format[mm];
251 mm++;
254 if (mm > nn) {
255 o.Send(format+nn, mm-nn);
256 nn = mm;
/bionic/libc/kernel/common/linux/sunrpc/
H A Dsvc.h27 #include <linux/mm.h>
/bionic/libc/kernel/arch-arm/asm/
H A Dcacheflush.h22 #include <linux/mm.h>
/bionic/libc/upstream-dlmalloc/
H A Dmalloc.c3848 char* mm = (char*)(CALL_DIRECT_MMAP(mmsize)); local
3849 if (mm != CMFAIL) {
3850 size_t offset = align_offset(chunk2mem(mm));
3852 mchunkptr p = (mchunkptr)(mm + offset);
3859 if (m->least_addr == 0 || mm < m->least_addr)
3860 m->least_addr = mm;

Completed in 723 milliseconds