/src/sys/arch/evbarm/fdt/ |
fdt_dma_machdep.c | 44 struct arm32_bus_dma_tag *tagp; local in function:fdtbus_dma_tag_create 50 tagp = kmem_alloc(sizeof(*tagp), KM_SLEEP); 51 *tagp = arm_generic_dma_tag; 53 tagp->_nranges = 1; 54 tagp->_ranges = kmem_alloc(sizeof(*tagp->_ranges), KM_SLEEP); 55 tagp->_ranges[0].dr_sysbase = 0; 56 tagp->_ranges[0].dr_busbase = 0; 57 tagp->_ranges[0].dr_len = UINTPTR_MAX [all...] |
fdt_bus_machdep.c | 58 struct bus_space *tagp; local in function:fdtbus_bus_tag_create 63 tagp = kmem_alloc(sizeof(*tagp), KM_SLEEP); 64 *tagp = *faa.faa_bst; 66 tagp->bs_map = nonposted_mmio_bs_map; 69 return tagp;
|
/src/sys/arch/riscv/fdt/ |
fdt_dma_machdep.c | 47 struct riscv_bus_dma_tag *tagp; local in function:fdtbus_dma_tag_create 54 tagp = kmem_alloc(sizeof(*tagp), KM_SLEEP); 55 *tagp = riscv_generic_dma_tag; 57 tagp->_nranges = 1; 58 tagp->_ranges = kmem_alloc(sizeof(*tagp->_ranges), KM_SLEEP); 59 tagp->_ranges[0].dr_sysbase = 0; 60 tagp->_ranges[0].dr_busbase = 0; 61 tagp->_ranges[0].dr_len = UINTPTR_MAX [all...] |
/src/sys/external/bsd/libfdt/dist/ |
fdt.c | 135 const fdt32_t *tagp, *lenp; local in function:fdt_next_tag 141 tagp = fdt_offset_ptr(fdt, offset, FDT_TAGSIZE); 142 if (!tagp) 144 tag = fdt32_to_cpu(*tagp);
|
/src/sys/crypto/aes/ |
aes_ccm.c | 520 uint8_t tag[16 + 2], *tagp = tag + 1; local in function:aes_ccm_selftest 525 tagp[-1] = tagp[16] = 0x53; 538 aes_ccm_tag(C, tagp); 546 if (memcmp(tagp, T[i].tag, T[i].M)) { 549 hexdump(printf, name, tagp, T[i].M); 574 memcpy(tagp, T[i].tag, T[i].M); 575 tagp[0] ^= 0x80; 583 if (aes_ccm_verify(C, tagp)) { 593 if (tagp[-1] != 0x53 || tagp[16] != 0x53) [all...] |