| /rk3399_rockchip-uboot/arch/xtensa/include/asm/arch-dc233c/ |
| H A D | tie-asm.h | 57 .macro xchal_ncp_store ptr at1 at2 at3 at4 continue=0 ofs=-1 select=XTHAL_SAS_ALL alloc=0 65 .elseif ((XTHAL_SAS_OPT | XTHAL_SAS_CC | XTHAL_SAS_GLOB) & ~(\alloc)) == 0 77 .elseif ((XTHAL_SAS_OPT | XTHAL_SAS_CC | XTHAL_SAS_CALR) & ~(\alloc)) == 0 95 .elseif ((XTHAL_SAS_OPT | XTHAL_SAS_NOCC | XTHAL_SAS_CALR) & ~(\alloc)) == 0 121 .macro xchal_ncp_load ptr at1 at2 at3 at4 continue=0 ofs=-1 select=XTHAL_SAS_ALL alloc=0 129 .elseif ((XTHAL_SAS_OPT | XTHAL_SAS_CC | XTHAL_SAS_GLOB) & ~(\alloc)) == 0 141 .elseif ((XTHAL_SAS_OPT | XTHAL_SAS_CC | XTHAL_SAS_CALR) & ~(\alloc)) == 0 159 .elseif ((XTHAL_SAS_OPT | XTHAL_SAS_NOCC | XTHAL_SAS_CALR) & ~(\alloc)) == 0
|
| /rk3399_rockchip-uboot/lib/lzma/ |
| H A D | LzmaDec.h | 130 SRes LzmaDec_AllocateProbs(CLzmaDec *p, const Byte *props, unsigned propsSize, ISzAlloc *alloc); 131 void LzmaDec_FreeProbs(CLzmaDec *p, ISzAlloc *alloc); 133 SRes LzmaDec_Allocate(CLzmaDec *state, const Byte *prop, unsigned propsSize, ISzAlloc *alloc); 134 void LzmaDec_Free(CLzmaDec *state, ISzAlloc *alloc); 221 ELzmaStatus *status, ISzAlloc *alloc);
|
| H A D | LzmaDec.c | 906 void LzmaDec_FreeProbs(CLzmaDec *p, ISzAlloc *alloc) in LzmaDec_FreeProbs() argument 908 alloc->Free(alloc, p->probs); in LzmaDec_FreeProbs() 912 static void LzmaDec_FreeDict(CLzmaDec *p, ISzAlloc *alloc) in LzmaDec_FreeDict() argument 914 alloc->Free(alloc, p->dic); in LzmaDec_FreeDict() 918 void LzmaDec_Free(CLzmaDec *p, ISzAlloc *alloc) in LzmaDec_Free() argument 920 LzmaDec_FreeProbs(p, alloc); in LzmaDec_Free() 921 LzmaDec_FreeDict(p, alloc); in LzmaDec_Free() 950 static SRes LzmaDec_AllocateProbs2(CLzmaDec *p, const CLzmaProps *propNew, ISzAlloc *alloc) in LzmaDec_AllocateProbs2() argument 955 LzmaDec_FreeProbs(p, alloc); in LzmaDec_AllocateProbs2() 956 p->probs = (CLzmaProb *)alloc->Alloc(alloc, numProbs * sizeof(CLzmaProb)); in LzmaDec_AllocateProbs2() [all …]
|
| H A D | lzma.txt | 345 ISzAlloc alloc = { SzAlloc, SzFree }; 363 ELzmaStatus *status, ISzAlloc *alloc); 376 alloc - Memory allocator. 455 1) alloc - for small arrays. 461 It's OK to use same allocator for alloc and allocBig. 542 ICompressProgress *progress, ISzAlloc *alloc, ISzAlloc *allocBig);
|
| /rk3399_rockchip-uboot/arch/xtensa/include/asm/arch-de212/ |
| H A D | tie-asm.h | 56 .macro xchal_ncp_store ptr at1 at2 at3 at4 continue=0 ofs=-1 select=XTHAL_SAS_ALL alloc=0 66 .elseif ((XTHAL_SAS_OPT | XTHAL_SAS_CC | XTHAL_SAS_CALR) & ~(\alloc)) == 0 84 .elseif ((XTHAL_SAS_OPT | XTHAL_SAS_NOCC | XTHAL_SAS_CALR) & ~(\alloc)) == 0 110 .macro xchal_ncp_load ptr at1 at2 at3 at4 continue=0 ofs=-1 select=XTHAL_SAS_ALL alloc=0 120 .elseif ((XTHAL_SAS_OPT | XTHAL_SAS_CC | XTHAL_SAS_CALR) & ~(\alloc)) == 0 138 .elseif ((XTHAL_SAS_OPT | XTHAL_SAS_NOCC | XTHAL_SAS_CALR) & ~(\alloc)) == 0
|
| /rk3399_rockchip-uboot/lib/efi_loader/ |
| H A D | efi_memory.c | 369 struct efi_pool_allocation *alloc = (void *)(uintptr_t)t; in efi_allocate_pool() local 370 alloc->num_pages = num_pages; in efi_allocate_pool() 371 *buffer = alloc->data; in efi_allocate_pool() 380 struct efi_pool_allocation *alloc; in efi_free_pool() local 385 alloc = container_of(buffer, struct efi_pool_allocation, data); in efi_free_pool() 387 assert(((uintptr_t)alloc & EFI_PAGE_MASK) == 0); in efi_free_pool() 389 r = efi_free_pages((uintptr_t)alloc, alloc->num_pages); in efi_free_pool()
|
| /rk3399_rockchip-uboot/drivers/misc/ |
| H A D | qfw.c | 41 align = le32_to_cpu(entry->alloc.align); in bios_linker_allocate() 48 file = qemu_fwcfg_find_file(entry->alloc.file); in bios_linker_allocate() 50 printf("error: can't find file %s\n", entry->alloc.file); in bios_linker_allocate() 62 if (entry->alloc.zone == BIOS_LINKER_LOADER_ALLOC_ZONE_HIGH) { in bios_linker_allocate() 68 } else if (entry->alloc.zone == BIOS_LINKER_LOADER_ALLOC_ZONE_FSEG) { in bios_linker_allocate() 76 file->cfg.name, size, entry->alloc.zone, align, aligned_addr); in bios_linker_allocate() 83 if (entry->alloc.zone == BIOS_LINKER_LOADER_ALLOC_ZONE_FSEG) in bios_linker_allocate()
|
| /rk3399_rockchip-uboot/drivers/net/fm/ |
| H A D | fm.c | 38 save = muram[fm_idx].alloc; in fm_muram_alloc() 42 muram[fm_idx].alloc += (align - off); in fm_muram_alloc() 46 if ((muram[fm_idx].alloc + size) >= muram[fm_idx].top) { in fm_muram_alloc() 47 muram[fm_idx].alloc = save; in fm_muram_alloc() 52 ret = muram[fm_idx].alloc; in fm_muram_alloc() 53 muram[fm_idx].alloc += size; in fm_muram_alloc() 65 muram[fm_idx].alloc = base + FM_MURAM_RES_SIZE; in fm_init_muram()
|
| H A D | fm.h | 32 void *alloc; member
|
| /rk3399_rockchip-uboot/drivers/crypto/rockchip/ |
| H A D | crypto_mpa.c | 39 tmp_mpa->alloc = MPA_USE_ALLOC; in rk_mpa_alloc() 57 if (tmp_mpa->alloc == MPA_USE_ALLOC) in rk_mpa_free()
|
| /rk3399_rockchip-uboot/include/rockchip/ |
| H A D | crypto_mpa.h | 13 u32 alloc; member
|
| /rk3399_rockchip-uboot/arch/arm/cpu/pxa/ |
| H A D | start.S | 176 alloc: label 185 bne alloc
|
| /rk3399_rockchip-uboot/lib/ |
| H A D | lmb.c | 262 phys_addr_t alloc; in lmb_alloc_base() local 264 alloc = __lmb_alloc_base(lmb, size, align, max_addr); in lmb_alloc_base() 266 if (alloc == 0) in lmb_alloc_base() 270 return alloc; in lmb_alloc_base()
|
| /rk3399_rockchip-uboot/include/ |
| H A D | qfw.h | 116 } alloc; member
|
| H A D | ppc_asm.tmpl | 169 subi r21,r1,INT_FRAME_SIZE+STACK_UNDERHEAD; /* alloc exc. frame */\
|
| /rk3399_rockchip-uboot/doc/device-tree-bindings/misc/ |
| H A D | intel,baytrail-fsp.txt | 59 - fsp,igd-dvmt50-pre-alloc 126 fsp,igd-dvmt50-pre-alloc = <IGD_DVMT50_PRE_ALLOC_64MB>;
|
| /rk3399_rockchip-uboot/drivers/core/ |
| H A D | device.c | 143 bool alloc = !platdata; in device_bind_common() local 150 alloc = true; in device_bind_common() 153 if (alloc) { in device_bind_common()
|
| /rk3399_rockchip-uboot/arch/x86/dts/ |
| H A D | baytrail_som-db5800-som-6867.dts | 283 fsp,igd-dvmt50-pre-alloc = <IGD_DVMT50_PRE_ALLOC_64MB>;
|
| H A D | bayleybay.dts | 264 fsp,igd-dvmt50-pre-alloc = <IGD_DVMT50_PRE_ALLOC_64MB>;
|
| H A D | conga-qeval20-qa3-e3845.dts | 270 fsp,igd-dvmt50-pre-alloc = <IGD_DVMT50_PRE_ALLOC_64MB>;
|
| H A D | dfi-bt700.dtsi | 289 fsp,igd-dvmt50-pre-alloc = <IGD_DVMT50_PRE_ALLOC_64MB>;
|
| H A D | minnowmax.dts | 291 fsp,igd-dvmt50-pre-alloc = <IGD_DVMT50_PRE_ALLOC_64MB>;
|
| /rk3399_rockchip-uboot/drivers/gpio/ |
| H A D | Kconfig | 34 alloc req_seq both for gpio devices from U-Boot and kernel dtb.
|
| /rk3399_rockchip-uboot/arch/powerpc/include/asm/ |
| H A D | immap_85xx.h | 1531 u32 alloc; /* partition allocation */ member
|
| /rk3399_rockchip-uboot/common/ |
| H A D | dlmalloc.src | 2545 /* Must alloc, copy, free. */
|