Searched refs:size (Results 51 - 75 of 11197) sorted by relevance

1234567891011>>

/linux-master/arch/mips/include/asm/
H A Dbcache.h20 void (*bc_wback_inv)(unsigned long page, unsigned long size);
21 void (*bc_inv)(unsigned long page, unsigned long size);
43 static inline void bc_wback_inv(unsigned long page, unsigned long size) argument
45 bcops->bc_wback_inv(page, size);
48 static inline void bc_inv(unsigned long page, unsigned long size) argument
50 bcops->bc_inv(page, size);
79 #define bc_wback_inv(page, size) do { } while (0)
80 #define bc_inv(page, size) do { } while (0)
/linux-master/arch/x86/include/asm/
H A Dedac.h7 static inline void edac_atomic_scrub(void *va, u32 size) argument
15 for (i = 0; i < size / 4; i++, virt_addr++)
/linux-master/arch/mips/pci/
H A Dpci-lantiq.h12 unsigned int devfn, int where, int size, u32 *val);
14 unsigned int devfn, int where, int size, u32 val);
/linux-master/tools/lib/
H A Dzalloc.c6 void *zalloc(size_t size) argument
8 return calloc(1, size);
/linux-master/drivers/staging/media/atomisp/pci/isp/kernels/dpc2/
H A Dia_css_dpc2.host.h26 size_t size);
31 size_t size);
/linux-master/drivers/staging/media/atomisp/pci/isp/kernels/tdf/tdf_1.0/
H A Dia_css_tdf.host.h26 size_t size);
32 size_t size);
/linux-master/drivers/staging/media/atomisp/pci/isp/kernels/xnr/xnr_3.0/
H A Dia_css_xnr3.host.h28 unsigned int size);
35 unsigned int size);
/linux-master/drivers/staging/media/atomisp/pci/isp/kernels/ctc/ctc2/
H A Dia_css_ctc2.host.h28 size_t size);
32 size_t size);
/linux-master/drivers/base/firmware_loader/
H A Dfallback_platform.c14 size_t size; local
24 rc = efi_get_embedded_fw(fw_priv->fw_name, &data, &size);
28 if (fw_priv->data && size > fw_priv->allocated_size)
31 rc = security_kernel_post_load_data((u8 *)data, size, LOADING_FIRMWARE,
37 fw_priv->data = vmalloc(size);
41 memcpy(fw_priv->data, data, size);
42 fw_priv->size = size;
/linux-master/drivers/staging/media/atomisp/pci/
H A Dia_css_isp_states.c32 unsigned int size = binary->info->mem_offsets.offsets.state->vmem.aa.size; local
36 if (size)
38 0, size);
54 unsigned int size = binary->info->mem_offsets.offsets.state->vmem.cnr.size; local
58 if (size) {
61 size);
78 unsigned int size = binary->info->mem_offsets.offsets.state->vmem.cnr2.size; local
102 unsigned int size = binary->info->mem_offsets.offsets.state->vmem.dp.size; local
126 unsigned int size = binary->info->mem_offsets.offsets.state->vmem.de.size; local
150 unsigned int size = binary->info->mem_offsets.offsets.state->dmem.tnr.size; local
174 unsigned int size = binary->info->mem_offsets.offsets.state->dmem.ref.size; local
198 unsigned int size = binary->info->mem_offsets.offsets.state->vmem.ynr.size; local
[all...]
H A Dia_css_isp_configs.c28 unsigned int size = 0; local
35 size = binary->info->mem_offsets.offsets.config->dmem.iterator.size;
36 if (!size)
43 config_dmem, size);
51 unsigned int size = 0; local
58 size = binary->info->mem_offsets.offsets.config->dmem.copy_output.size;
59 if (!size)
66 config_dmem, size);
76 unsigned int size = 0; local
99 unsigned int size = 0; local
121 unsigned int size = 0; local
143 unsigned int size = 0; local
166 unsigned int size = 0; local
189 unsigned int size = 0; local
212 unsigned int size = 0; local
235 unsigned int size = 0; local
258 unsigned int size = 0; local
281 unsigned int size = 0; local
304 unsigned int size = 0; local
[all...]
/linux-master/include/linux/
H A Dsram.h9 void *sram_exec_copy(struct gen_pool *pool, void *dst, void *src, size_t size);
12 size_t size)
11 sram_exec_copy(struct gen_pool *pool, void *dst, void *src, size_t size) argument
H A Dposix_acl_xattr.h25 posix_acl_xattr_count(size_t size) argument
27 if (size < sizeof(struct posix_acl_xattr_header))
29 size -= sizeof(struct posix_acl_xattr_header);
30 if (size % sizeof(struct posix_acl_xattr_entry))
32 return size / sizeof(struct posix_acl_xattr_entry);
37 const void *value, size_t size);
41 size_t size)
48 const struct posix_acl *acl, void *buffer, size_t size);
40 posix_acl_from_xattr(struct user_namespace *user_ns, const void *value, size_t size) argument
H A Dnfs.h21 unsigned short size; member in struct:nfs_fh
26 * Returns a zero iff the size and data fields match.
27 * Checks only "size" bytes in the data field.
31 return a->size != b->size || memcmp(a->data, b->data, a->size) != 0;
36 target->size = source->size;
37 memcpy(target->data, source->data, source->size);
59 return ~crc32_le(0xFFFFFFFF, &fh->data[0], fh->size);
[all...]
/linux-master/tools/testing/memblock/linux/
H A Dkmemleak.h5 static inline void kmemleak_free_part_phys(phys_addr_t phys, size_t size) argument
9 static inline void kmemleak_alloc_phys(phys_addr_t phys, size_t size, argument
/linux-master/tools/testing/selftests/arm64/bti/
H A Dsystem.c17 ssize_t write(int fd, const void *buf, size_t size) argument
19 return syscall(__NR_write, fd, buf, size);
/linux-master/arch/riscv/kernel/
H A Dcopy-unaligned.h10 void __riscv_copy_words_unaligned(void *dst, const void *src, size_t size);
11 void __riscv_copy_bytes_unaligned(void *dst, const void *src, size_t size);
/linux-master/drivers/media/platform/chips-media/coda/
H A Dcoda-mpeg4.c59 * Returns the detected header size in bytes or 0.
61 u32 coda_mpeg4_parse_headers(struct coda_ctx *ctx, u8 *buf, u32 size) argument
69 if (size < 30 ||
74 if (size == 30 ||
75 (size >= 33 && memcmp(buf + 30, u.start_code_prefix, 3) == 0))
78 if (size == 31 ||
79 (size >= 34 && memcmp(buf + 31, u.start_code_prefix, 3) == 0))
82 if (size == 32 ||
83 (size >= 35 && memcmp(buf + 32, u.start_code_prefix, 3) == 0))
/linux-master/tools/include/linux/
H A Dslab.h11 #define kzalloc_node(size, flags, node) kmalloc(size, flags)
13 void *kmalloc(size_t size, gfp_t gfp);
25 static inline void *kzalloc(size_t size, gfp_t gfp) argument
27 return kmalloc(size, gfp | __GFP_ZERO);
39 struct kmem_cache *kmem_cache_create(const char *name, unsigned int size,
43 void kmem_cache_free_bulk(struct kmem_cache *cachep, size_t size, void **list);
44 int kmem_cache_alloc_bulk(struct kmem_cache *cachep, gfp_t gfp, size_t size,
/linux-master/tools/testing/selftests/mm/
H A Dmap_fixed_noreplace.c25 static unsigned long find_base_addr(unsigned long size) argument
31 addr = mmap(NULL, size, PROT_NONE, flags, -1, 0);
35 if (munmap(addr, size) != 0)
44 unsigned long flags, addr, size, page_size; local
53 size = 5 * page_size;
54 base_addr = find_base_addr(size);
60 size = 5 * page_size;
61 p = mmap((void *)addr, size, PROT_NONE, flags, -1, 0);
70 ksft_test_result_pass("mmap() @ 0x%lx-0x%lx p=%p result=%m\n", addr, addr + size, p);
73 size
[all...]
/linux-master/arch/arc/mm/
H A Ddma.c18 void arch_dma_prep_coherent(struct page *page, size_t size) argument
30 dma_cache_wback_inv(page_to_phys(page), size); local
51 void arch_sync_dma_for_device(phys_addr_t paddr, size_t size, argument
56 dma_cache_wback(paddr, size);
60 dma_cache_inv(paddr, size);
64 dma_cache_wback_inv(paddr, size);
72 void arch_sync_dma_for_cpu(phys_addr_t paddr, size_t size, argument
82 dma_cache_inv(paddr, size);
/linux-master/arch/um/include/shared/
H A Dum_malloc.h11 extern void *uml_kmalloc(int size, int flags);
14 extern void *vmalloc_noprof(unsigned long size);
/linux-master/tools/testing/memblock/tests/
H A Dbasic_api.c37 * and size to the collection of available memory regions (memblock.memory).
49 .size = SZ_4M
55 memblock_add(r.base, r.size);
58 ASSERT_EQ(rgn->size, r.size);
61 ASSERT_EQ(memblock.memory.total_size, r.size);
69 * A simple test that adds a memory block of a specified base address, size,
82 .size = SZ_16M
88 memblock_add_node(r.base, r.size, 1, MEMBLOCK_HOTPLUG);
91 ASSERT_EQ(rgn->size,
441 phys_addr_t base, size = SZ_64; local
[all...]
/linux-master/tools/perf/trace/beauty/
H A Dfspick.c11 static size_t fspick__scnprintf_flags(unsigned long flags, char *bf, size_t size, bool show_prefix) argument
16 return strarray__scnprintf_flags(&strarray__fspick_flags, bf, size, show_prefix, flags);
19 size_t syscall_arg__scnprintf_fspick_flags(char *bf, size_t size, struct syscall_arg *arg) argument
23 return fspick__scnprintf_flags(flags, bf, size, arg->show_string_prefix);
H A Dmove_mount.c11 static size_t move_mount__scnprintf_flags(unsigned long flags, char *bf, size_t size, bool show_prefix) argument
16 return strarray__scnprintf_flags(&strarray__move_mount_flags, bf, size, show_prefix, flags);
19 size_t syscall_arg__scnprintf_move_mount_flags(char *bf, size_t size, struct syscall_arg *arg) argument
23 return move_mount__scnprintf_flags(flags, bf, size, arg->show_string_prefix);

Completed in 332 milliseconds

1234567891011>>