/bionic/libc/kernel/arch-x86/asm/ |
D | pgalloc_32.h | 24 #define paravirt_alloc_pt(mm, pfn) do { } while (0) argument 31 #define pmd_populate_kernel(mm, pmd, pte) do { paravirt_alloc_pt(mm, __pa(pte) >> PAGE_SHIFT); … argument 32 #define pmd_populate(mm, pmd, pte) do { paravirt_alloc_pt(mm, page_to_pfn(pte)); set_pmd(pmd, … argument
|
D | pgtable-2level.h | 25 #define set_pte_at(mm,addr,ptep,pteval) native_set_pte_at(mm, addr, ptep, pteval) argument 29 #define set_pte_present(mm,addr,ptep,pteval) set_pte_at(mm,addr,ptep,pteval) argument 30 #define pte_clear(mm,addr,xp) do { set_pte_at(mm, addr, xp, __pte(0)); } while (0) argument
|
D | tlbflush_32.h | 41 #define flush_tlb_others(mask, mm, va) native_flush_tlb_others(&mask, mm, va) argument
|
D | cacheflush.h | 24 #define flush_cache_mm(mm) do { } while (0) argument 25 #define flush_cache_dup_mm(mm) do { } while (0) argument
|
D | pgtable_32.h | 147 #define pte_update(mm, addr, ptep) do { } while (0) argument 149 #define pte_update_defer(mm, addr, ptep) do { } while (0) argument 167 #define pgd_offset(mm, address) ((mm)->pgd+pgd_index(address)) argument
|
/bionic/libc/kernel/common/asm-generic/ |
D | 4level-fixup.h | 29 #define pmd_alloc(mm, pud, address) ((unlikely(pgd_none(*(pud))) && __pmd_alloc(mm, pud, address)… argument 30 #define pud_alloc(mm, pgd, address) (pgd) argument
|
D | tlb.h | 29 struct mm_struct *mm; member 44 #define tlb_migrate_finish(mm) do {} while (0) argument
|
D | pgtable-nopud.h | 31 #define pgd_populate(mm, pgd, pud) do { } while (0) argument 39 #define pud_alloc_one(mm, address) NULL argument
|
D | pgtable.h | 84 #define pgd_offset_gate(mm, addr) pgd_offset(mm, addr) argument
|
/bionic/libc/kernel/arch-mips/asm/ |
D | cacheflush.h | 24 #define flush_cache_dup_mm(mm) do { (void) (mm); } while (0) argument
|
D | tlbflush.h | 24 #define flush_tlb_mm(mm) local_flush_tlb_mm(mm) argument
|
D | pgalloc.h | 27 #define pmd_free(mm, x) do { } while (0) argument
|
D | tlb.h | 25 #define tlb_flush(tlb) flush_tlb_mm((tlb)->mm)
|
D | pgtable.h | 64 #define set_pte_at(mm, addr, ptep, pteval) set_pte(ptep, pteval) argument
|
/bionic/linker/ |
D | linker_format.c | 434 int mm; in out_vformat() local 449 mm = nn; in out_vformat() 451 c = format[mm]; in out_vformat() 454 mm++; in out_vformat() 457 if (mm > nn) { in out_vformat() 458 out_send(o, format+nn, mm-nn); in out_vformat() 459 nn = mm; in out_vformat()
|
D | README.TXT | 96 mm -B
|
/bionic/libc/upstream-dlmalloc/ |
D | malloc.c | 3848 char* mm = (char*)(CALL_DIRECT_MMAP(mmsize)); in mmap_alloc() local 3849 if (mm != CMFAIL) { in mmap_alloc() 3850 size_t offset = align_offset(chunk2mem(mm)); in mmap_alloc() 3852 mchunkptr p = (mchunkptr)(mm + offset); in mmap_alloc() 3859 if (m->least_addr == 0 || mm < m->least_addr) in mmap_alloc() 3860 m->least_addr = mm; in mmap_alloc()
|