Home
last modified time | relevance | path

Searched refs:size (Results 2876 - 2900 of 39675) sorted by relevance

1...<<111112113114115116117118119120>>...1587

/kernel/linux/linux-6.6/drivers/gpu/drm/nouveau/nvkm/engine/pm/
H A Dbase.c208 nvkm_perfdom_init(struct nvkm_perfdom *dom, void *data, u32 size) in nvkm_perfdom_init() argument
217 nvif_ioctl(object, "perfdom init size %d\n", size); in nvkm_perfdom_init()
218 if (!(ret = nvif_unvers(ret, &data, &size, args->none))) { in nvkm_perfdom_init()
238 nvkm_perfdom_sample(struct nvkm_perfdom *dom, void *data, u32 size) in nvkm_perfdom_sample() argument
247 nvif_ioctl(object, "perfdom sample size %d\n", size); in nvkm_perfdom_sample()
248 if (!(ret = nvif_unvers(ret, &data, &size, args->none))) { in nvkm_perfdom_sample()
262 nvkm_perfdom_read(struct nvkm_perfdom *dom, void *data, u32 size) in nvkm_perfdom_read() argument
271 nvif_ioctl(object, "perfdom read size in nvkm_perfdom_read()
293 nvkm_perfdom_mthd(struct nvkm_object *object, u32 mthd, void *data, u32 size) nvkm_perfdom_mthd() argument
366 nvkm_perfdom_new_(struct nvkm_perfmon *perfmon, const struct nvkm_oclass *oclass, void *data, u32 size, struct nvkm_object **pobject) nvkm_perfdom_new_() argument
434 nvkm_perfmon_mthd_query_domain(struct nvkm_perfmon *perfmon, void *data, u32 size) nvkm_perfmon_mthd_query_domain() argument
482 nvkm_perfmon_mthd_query_signal(struct nvkm_perfmon *perfmon, void *data, u32 size) nvkm_perfmon_mthd_query_signal() argument
536 nvkm_perfmon_mthd_query_source(struct nvkm_perfmon *perfmon, void *data, u32 size) nvkm_perfmon_mthd_query_source() argument
588 nvkm_perfmon_mthd(struct nvkm_object *object, u32 mthd, void *data, u32 size) nvkm_perfmon_mthd() argument
605 nvkm_perfmon_child_new(const struct nvkm_oclass *oclass, void *data, u32 size, struct nvkm_object **pobject) nvkm_perfmon_child_new() argument
646 nvkm_perfmon_new(struct nvkm_pm *pm, const struct nvkm_oclass *oclass, void *data, u32 size, struct nvkm_object **pobject) nvkm_perfmon_new() argument
664 nvkm_pm_oclass_new(struct nvkm_device *device, const struct nvkm_oclass *oclass, void *data, u32 size, struct nvkm_object **pobject) nvkm_pm_oclass_new() argument
[all...]
/kernel/linux/linux-6.6/drivers/gpu/drm/vc4/
H A Dvc4_bo.c61 vc4->purgeable.size / 1024, vc4->purgeable.num); in vc4_bo_stats_print()
141 vc4->bo_labels[label].size_allocated += gem_obj->size; in vc4_bo_set_label()
145 vc4->bo_labels[bo->label].size_allocated -= gem_obj->size; in vc4_bo_set_label()
161 static uint32_t bo_page_index(size_t size) in bo_page_index() argument
163 return (size / PAGE_SIZE) - 1; in bo_page_index()
196 size_t size) in vc4_get_cache_list_for_size()
199 uint32_t page_index = bo_page_index(size); in vc4_get_cache_list_for_size()
260 vc4->purgeable.size += bo->base.base.size; in vc4_bo_add_to_purgeable_pool()
285 vc4->purgeable.size in vc4_bo_remove_from_purgeable_pool_locked()
195 vc4_get_cache_list_for_size(struct drm_device *dev, size_t size) vc4_get_cache_list_for_size() argument
359 vc4_bo_get_from_cache(struct drm_device *dev, uint32_t size, enum vc4_kernel_bo_type type) vc4_bo_get_from_cache() argument
394 vc4_create_object(struct drm_device *dev, size_t size) vc4_create_object() argument
425 size_t size = roundup(unaligned_size, PAGE_SIZE); vc4_bo_create() local
[all...]
/third_party/ffmpeg/libavcodec/
H A Dflac_parser.c45 /** estimate for average size of a FLAC frame */
55 /** largest possible size of flac header */
98 int wrap_buf_allocated_size; /**< actual allocated size of the buffer */
155 * The pointer can be NULL. In any case it will be reallocated to hold the size.
178 "couldn't reallocate wrap buffer of size %d", len); in flac_fifo_read_wrap()
249 static int flac_fifo_write(FifoBuffer *f, const uint8_t *src, size_t size) in flac_fifo_write() argument
253 if (flac_fifo_space(f) < size) { in flac_fifo_write()
254 int ret = flac_fifo_grow(f, FFMAX(flac_fifo_size(f), size)); in flac_fifo_write()
259 if (size) in flac_fifo_write()
264 size_t len = FFMIN(f->end - wptr, size); in flac_fifo_write()
278 flac_fifo_drain(FifoBuffer *f, size_t size) flac_fifo_drain() argument
291 flac_fifo_alloc(FifoBuffer *f, size_t size) flac_fifo_alloc() argument
318 int size = 0; find_headers_search_validate() local
354 int size = 0, mod_offset = (buf_size - 1) % 4, i, j; find_headers_search() local
381 int search_end, size = 0, read_len, temp; find_new_headers() local
[all...]
/third_party/protobuf/src/google/protobuf/
H A Dwire_format_lite.cc482 GOOGLE_CHECK_LE(value.size(), kint32max); in WriteString()
483 output->WriteVarint32(value.size()); in WriteString()
491 GOOGLE_CHECK_LE(value.size(), kint32max); in WriteStringMaybeAliased()
492 output->WriteVarint32(value.size()); in WriteStringMaybeAliased()
493 output->WriteRawMaybeAliased(value.data(), value.size()); in WriteStringMaybeAliased()
498 GOOGLE_CHECK_LE(value.size(), kint32max); in WriteBytes()
499 output->WriteVarint32(value.size()); in WriteBytes()
506 GOOGLE_CHECK_LE(value.size(), kint32max); in WriteBytesMaybeAliased()
507 output->WriteVarint32(value.size()); in WriteBytesMaybeAliased()
508 output->WriteRawMaybeAliased(value.data(), value.size()); in WriteBytesMaybeAliased()
522 const int size = value.GetCachedSize(); WriteMessage() local
527 WriteSubMessageMaybeToArray( int size, const MessageLite& value, io::CodedOutputStream* output) WriteSubMessageMaybeToArray() argument
536 const int size = value.GetCachedSize(); WriteGroupMaybeToArray() local
545 const int size = value.GetCachedSize(); WriteMessageMaybeToArray() local
583 VerifyUtf8String(const char* data, int size, Operation op, const char* field_name) VerifyUtf8String() argument
[all...]
/kernel/linux/linux-5.10/arch/sparc/kernel/
H A Dpci_common.c48 * registers at their natural size, otherwise zeros are returned.
54 int where, int size, u32 *value) in sun4u_read_pci_cfg_host()
64 switch (size) { in sun4u_read_pci_cfg_host()
109 int where, int size, u32 *value) in sun4u_read_pci_cfg()
117 switch (size) { in sun4u_read_pci_cfg()
131 size, value); in sun4u_read_pci_cfg()
137 switch (size) { in sun4u_read_pci_cfg()
167 int where, int size, u32 value) in sun4u_write_pci_cfg_host()
175 switch (size) { in sun4u_write_pci_cfg_host()
213 int where, int size, u3 in sun4u_write_pci_cfg()
52 sun4u_read_pci_cfg_host(struct pci_pbm_info *pbm, unsigned char bus, unsigned int devfn, int where, int size, u32 *value) sun4u_read_pci_cfg_host() argument
108 sun4u_read_pci_cfg(struct pci_bus *bus_dev, unsigned int devfn, int where, int size, u32 *value) sun4u_read_pci_cfg() argument
165 sun4u_write_pci_cfg_host(struct pci_pbm_info *pbm, unsigned char bus, unsigned int devfn, int where, int size, u32 value) sun4u_write_pci_cfg_host() argument
212 sun4u_write_pci_cfg(struct pci_bus *bus_dev, unsigned int devfn, int where, int size, u32 value) sun4u_write_pci_cfg() argument
257 sun4v_read_pci_cfg(struct pci_bus *bus_dev, unsigned int devfn, int where, int size, u32 *value) sun4v_read_pci_cfg() argument
290 sun4v_write_pci_cfg(struct pci_bus *bus_dev, unsigned int devfn, int where, int size, u32 value) sun4v_write_pci_cfg() argument
379 unsigned long a, size, region_a; pci_determine_mem_io_space() local
[all...]
/kernel/linux/linux-5.10/arch/arm/mm/
H A Dinit.c58 phys_initrd_size = tag->u.initrd.size; in parse_tag_initrd()
67 phys_initrd_size = tag->u.initrd.size; in parse_tag_initrd2()
150 phys_addr_t __init arm_memblock_steal(phys_addr_t size, phys_addr_t align) in arm_memblock_steal() argument
156 phys = memblock_phys_alloc(size, align); in arm_memblock_steal()
159 &size, (void *)_RET_IP_); in arm_memblock_steal()
161 memblock_free(phys, size); in arm_memblock_steal()
162 memblock_remove(phys, size); in arm_memblock_steal()
171 unsigned long size; in arm_initrd_init() local
185 size = phys_initrd_size + (phys_initrd_start - start); in arm_initrd_init()
186 size in arm_initrd_init()
211 u32 size, ctr; check_cpu_icache_size() local
[all...]
/kernel/linux/linux-5.10/drivers/acpi/
H A Dacpi_dbg.c305 * buffer. Return the size of stored logs or errno.
310 int count = 0, size = 0; in acpi_aml_write_log() local
318 ret = acpi_aml_write_kern(msg + size, count); in acpi_aml_write_log()
332 size += ret; in acpi_aml_write_log()
335 return size > 0 ? size : ret; in acpi_aml_write_log()
341 * @size: the size of the debugger input
345 * debugger interface buffer. Return the size of stored commands or errno.
350 int size in acpi_aml_read_cmd() local
610 int size = 0; acpi_aml_read() local
680 int size = 0; acpi_aml_write() local
[all...]
/kernel/linux/linux-6.6/arch/s390/include/asm/
H A Duaccess.h82 #define __put_user_asm(to, from, size) \
98 : [_size] "d" (size), [_from] "Q" (*(from)), \
104 static __always_inline int __put_user_fn(void *x, void __user *ptr, unsigned long size) in __put_user_fn() argument
108 switch (size) { in __put_user_fn()
112 size); in __put_user_fn()
117 size); in __put_user_fn()
122 size); in __put_user_fn()
127 size); in __put_user_fn()
138 #define __get_user_asm(to, from, size) \
154 : [_size] "d" (size), [_fro
161 __get_user_fn(void *x, const void __user *ptr, unsigned long size) __get_user_fn() argument
397 __cmpxchg_user_key(unsigned long address, void *uval, __uint128_t old, __uint128_t new, unsigned long key, int size) __cmpxchg_user_key() argument
[all...]
/kernel/linux/linux-6.6/arch/sparc/kernel/
H A Dpci_common.c49 * registers at their natural size, otherwise zeros are returned.
55 int where, int size, u32 *value) in sun4u_read_pci_cfg_host()
65 switch (size) { in sun4u_read_pci_cfg_host()
110 int where, int size, u32 *value) in sun4u_read_pci_cfg()
118 switch (size) { in sun4u_read_pci_cfg()
132 size, value); in sun4u_read_pci_cfg()
138 switch (size) { in sun4u_read_pci_cfg()
168 int where, int size, u32 value) in sun4u_write_pci_cfg_host()
176 switch (size) { in sun4u_write_pci_cfg_host()
214 int where, int size, u3 in sun4u_write_pci_cfg()
53 sun4u_read_pci_cfg_host(struct pci_pbm_info *pbm, unsigned char bus, unsigned int devfn, int where, int size, u32 *value) sun4u_read_pci_cfg_host() argument
109 sun4u_read_pci_cfg(struct pci_bus *bus_dev, unsigned int devfn, int where, int size, u32 *value) sun4u_read_pci_cfg() argument
166 sun4u_write_pci_cfg_host(struct pci_pbm_info *pbm, unsigned char bus, unsigned int devfn, int where, int size, u32 value) sun4u_write_pci_cfg_host() argument
213 sun4u_write_pci_cfg(struct pci_bus *bus_dev, unsigned int devfn, int where, int size, u32 value) sun4u_write_pci_cfg() argument
258 sun4v_read_pci_cfg(struct pci_bus *bus_dev, unsigned int devfn, int where, int size, u32 *value) sun4v_read_pci_cfg() argument
291 sun4v_write_pci_cfg(struct pci_bus *bus_dev, unsigned int devfn, int where, int size, u32 value) sun4v_write_pci_cfg() argument
380 unsigned long a, size, region_a; pci_determine_mem_io_space() local
[all...]
/kernel/linux/linux-5.10/drivers/net/ipa/
H A Dipa_cmd.c115 __le16 size; member
153 * maximum size. IPv4 and IPv6 filter tables have the same number in ipa_cmd_validate_build()
188 mem->size > ipa->mem_size - mem->offset) { in ipa_cmd_table_valid()
193 mem->offset, mem->size, ipa->mem_size); in ipa_cmd_table_valid()
208 u32 size; in ipa_cmd_header_valid() local
210 /* In ipa_cmd_hdr_init_local_add() we record the offset and size in ipa_cmd_header_valid()
211 * of the header table memory area. Make sure the offset and size in ipa_cmd_header_valid()
226 size = ipa->mem[IPA_MEM_MODEM_HEADER].size; in ipa_cmd_header_valid()
227 size in ipa_cmd_header_valid()
373 ipa_cmd_table_init_add(struct gsi_trans *trans, enum ipa_cmd_opcode opcode, u16 size, u32 offset, dma_addr_t addr, u16 hash_size, u32 hash_offset, dma_addr_t hash_addr) ipa_cmd_table_init_add() argument
414 ipa_cmd_hdr_init_local_add(struct gsi_trans *trans, u32 offset, u16 size, dma_addr_t addr) ipa_cmd_hdr_init_local_add() argument
521 ipa_cmd_dma_shared_mem_add(struct gsi_trans *trans, u32 offset, u16 size, dma_addr_t addr, bool toward_ipa) ipa_cmd_dma_shared_mem_add() argument
585 ipa_cmd_transfer_add(struct gsi_trans *trans, u16 size) ipa_cmd_transfer_add() argument
[all...]
/kernel/linux/linux-5.10/drivers/s390/char/
H A Dsclp_cmd.c278 static int sclp_mem_change_state(unsigned long start, unsigned long size, in sclp_mem_change_state() argument
287 if (start + size - 1 < istart) in sclp_mem_change_state()
321 unsigned long start, size; in sclp_mem_notifier() local
328 size = arg->nr_pages << PAGE_SHIFT; in sclp_mem_notifier()
339 if (contains_standby_increment(start, start + size)) in sclp_mem_notifier()
346 rc = sclp_mem_change_state(start, size, 1); in sclp_mem_notifier()
349 sclp_mem_change_state(start, size, 0); in sclp_mem_notifier()
352 sclp_mem_change_state(start, size, 0); in sclp_mem_notifier()
369 unsigned long long *size, in align_to_block_size()
375 size_align = rounddown(*start + *size, alignmen in align_to_block_size()
368 align_to_block_size(unsigned long long *start, unsigned long long *size, unsigned long long alignment) align_to_block_size() argument
385 unsigned long long start, size, addr, block_size; add_memory_merged() local
[all...]
/kernel/linux/linux-5.10/drivers/video/fbdev/omap2/omapfb/dss/
H A Doverlay-sysfs.c35 size_t size) in overlay_manager_store()
40 int len = size; in overlay_manager_store()
42 if (buf[size-1] == '\n') in overlay_manager_store()
63 return size; in overlay_manager_store()
98 return size; in overlay_manager_store()
135 const char *buf, size_t size) in overlay_position_store()
145 if (last - buf >= size) in overlay_position_store()
160 return size; in overlay_position_store()
174 const char *buf, size_t size) in overlay_output_size_store()
184 if (last - buf >= size) in overlay_output_size_store()
34 overlay_manager_store(struct omap_overlay *ovl, const char *buf, size_t size) overlay_manager_store() argument
134 overlay_position_store(struct omap_overlay *ovl, const char *buf, size_t size) overlay_position_store() argument
173 overlay_output_size_store(struct omap_overlay *ovl, const char *buf, size_t size) overlay_output_size_store() argument
207 overlay_enabled_store(struct omap_overlay *ovl, const char *buf, size_t size) overlay_enabled_store() argument
238 overlay_global_alpha_store(struct omap_overlay *ovl, const char *buf, size_t size) overlay_global_alpha_store() argument
280 overlay_pre_mult_alpha_store(struct omap_overlay *ovl, const char *buf, size_t size) overlay_pre_mult_alpha_store() argument
320 overlay_zorder_store(struct omap_overlay *ovl, const char *buf, size_t size) overlay_zorder_store() argument
409 overlay_attr_store(struct kobject *kobj, struct attribute *attr, const char *buf, size_t size) overlay_attr_store() argument
[all...]
H A Dmanager-sysfs.c44 const char *buf, size_t size) in manager_display_store()
47 size_t len = size; in manager_display_store()
51 if (buf[size-1] == '\n') in manager_display_store()
113 return r ? r : size; in manager_display_store()
127 const char *buf, size_t size) in manager_default_color_store()
149 return size; in manager_default_color_store()
172 const char *buf, size_t size) in manager_trans_key_type_store()
193 return size; in manager_trans_key_type_store()
207 const char *buf, size_t size) in manager_trans_key_value_store()
229 return size; in manager_trans_key_value_store()
43 manager_display_store(struct omap_overlay_manager *mgr, const char *buf, size_t size) manager_display_store() argument
126 manager_default_color_store(struct omap_overlay_manager *mgr, const char *buf, size_t size) manager_default_color_store() argument
171 manager_trans_key_type_store(struct omap_overlay_manager *mgr, const char *buf, size_t size) manager_trans_key_type_store() argument
206 manager_trans_key_value_store(struct omap_overlay_manager *mgr, const char *buf, size_t size) manager_trans_key_value_store() argument
242 manager_trans_key_enabled_store(struct omap_overlay_manager *mgr, const char *buf, size_t size) manager_trans_key_enabled_store() argument
282 manager_alpha_blending_enabled_store( struct omap_overlay_manager *mgr, const char *buf, size_t size) manager_alpha_blending_enabled_store() argument
322 manager_cpr_enable_store(struct omap_overlay_manager *mgr, const char *buf, size_t size) manager_cpr_enable_store() argument
374 manager_cpr_coef_store(struct omap_overlay_manager *mgr, const char *buf, size_t size) manager_cpr_coef_store() argument
476 manager_attr_store(struct kobject *kobj, struct attribute *attr, const char *buf, size_t size) manager_attr_store() argument
[all...]
/kernel/linux/linux-5.10/tools/perf/util/
H A Dtrace-event-info.c42 /* unfortunately, you can not stat debugfs or proc files for size */
45 unsigned long long size = 0; in record_file() local
57 /* put in zeros for file size, then fill true size later */ in record_file()
59 if (write(output_fd, &size, hdr_sz) != hdr_sz) in record_file()
66 size += r; in record_file()
73 sizep = (char*)&size; in record_file()
78 pr_debug("writing file size failed\n"); in record_file()
303 ssize_t size = strlen(dent->d_name) + 1; in record_event_files() local
305 if (write(output_fd, dent->d_name, size) ! in record_event_files()
324 unsigned long long size = 0; record_proc_kallsyms() local
336 unsigned int size; record_ftrace_printk() local
364 unsigned long long size; record_saved_cmdline() local
455 ssize_t size; tracing_data_header() local
[all...]
/kernel/linux/linux-5.10/fs/kernfs/
H A Dinode.c133 /* this ignores size changes */ in kernfs_iop_setattr()
141 ssize_t kernfs_iop_listxattr(struct dentry *dentry, char *buf, size_t size) in kernfs_iop_listxattr() argument
150 return simple_xattr_list(d_inode(dentry), &attrs->xattrs, buf, size); in kernfs_iop_listxattr()
220 inode->i_size = kn->attr.size; in kernfs_init_inode()
292 void *value, size_t size) in kernfs_xattr_get()
298 return simple_xattr_get(&attrs->xattrs, name, value, size); in kernfs_xattr_get()
302 const void *value, size_t size, int flags) in kernfs_xattr_set()
308 return simple_xattr_set(&attrs->xattrs, name, value, size, flags, NULL); in kernfs_xattr_set()
313 const char *suffix, void *value, size_t size) in kernfs_vfs_xattr_get()
318 return kernfs_xattr_get(kn, name, value, size); in kernfs_vfs_xattr_get()
291 kernfs_xattr_get(struct kernfs_node *kn, const char *name, void *value, size_t size) kernfs_xattr_get() argument
301 kernfs_xattr_set(struct kernfs_node *kn, const char *name, const void *value, size_t size, int flags) kernfs_xattr_set() argument
311 kernfs_vfs_xattr_get(const struct xattr_handler *handler, struct dentry *unused, struct inode *inode, const char *suffix, void *value, size_t size) kernfs_vfs_xattr_get() argument
321 kernfs_vfs_xattr_set(const struct xattr_handler *handler, struct dentry *unused, struct inode *inode, const char *suffix, const void *value, size_t size, int flags) kernfs_vfs_xattr_set() argument
332 kernfs_vfs_user_xattr_add(struct kernfs_node *kn, const char *full_name, struct simple_xattrs *xattrs, const void *value, size_t size, int flags) kernfs_vfs_user_xattr_add() argument
366 kernfs_vfs_user_xattr_rm(struct kernfs_node *kn, const char *full_name, struct simple_xattrs *xattrs, const void *value, size_t size, int flags) kernfs_vfs_user_xattr_rm() argument
387 kernfs_vfs_user_xattr_set(const struct xattr_handler *handler, struct dentry *unused, struct inode *inode, const char *suffix, const void *value, size_t size, int flags) kernfs_vfs_user_xattr_set() argument
[all...]
/kernel/linux/linux-5.10/drivers/staging/media/atomisp/pci/isp/kernels/sdis/sdis_2/
H A Dia_css_sdis2.host.c39 unsigned int size) in ia_css_sdis2_horicoef_vmem_encode()
45 unsigned int stride = size / IA_CSS_DVS2_NUM_COEF_TYPES / sizeof(short); in ia_css_sdis2_horicoef_vmem_encode()
52 assert(total_bytes <= size); in ia_css_sdis2_horicoef_vmem_encode()
53 assert(size % (IA_CSS_DVS2_NUM_COEF_TYPES * ISP_VEC_NELEMS * sizeof( in ia_css_sdis2_horicoef_vmem_encode()
64 unsigned int size) in ia_css_sdis2_vertcoef_vmem_encode()
70 unsigned int stride = size / IA_CSS_DVS2_NUM_COEF_TYPES / sizeof(short); in ia_css_sdis2_vertcoef_vmem_encode()
77 assert(total_bytes <= size); in ia_css_sdis2_vertcoef_vmem_encode()
78 assert(size % (IA_CSS_DVS2_NUM_COEF_TYPES * ISP_VEC_NELEMS * sizeof( in ia_css_sdis2_vertcoef_vmem_encode()
89 unsigned int size) in ia_css_sdis2_horiproj_encode()
93 (void)size; in ia_css_sdis2_horiproj_encode()
36 ia_css_sdis2_horicoef_vmem_encode( struct sh_css_isp_sdis_hori_coef_tbl *to, const struct ia_css_dvs2_coefficients *from, unsigned int size) ia_css_sdis2_horicoef_vmem_encode() argument
61 ia_css_sdis2_vertcoef_vmem_encode( struct sh_css_isp_sdis_vert_coef_tbl *to, const struct ia_css_dvs2_coefficients *from, unsigned int size) ia_css_sdis2_vertcoef_vmem_encode() argument
86 ia_css_sdis2_horiproj_encode( struct sh_css_isp_sdis_hori_proj_tbl *to, const struct ia_css_dvs2_coefficients *from, unsigned int size) ia_css_sdis2_horiproj_encode() argument
96 ia_css_sdis2_vertproj_encode( struct sh_css_isp_sdis_vert_proj_tbl *to, const struct ia_css_dvs2_coefficients *from, unsigned int size) ia_css_sdis2_vertproj_encode() argument
277 int size; ia_css_isp_dvs2_statistics_allocate() local
[all...]
/kernel/linux/linux-6.6/drivers/acpi/
H A Dacpi_dbg.c298 * buffer. Return the size of stored logs or errno.
303 int count = 0, size = 0; in acpi_aml_write_log() local
311 ret = acpi_aml_write_kern(msg + size, count); in acpi_aml_write_log()
325 size += ret; in acpi_aml_write_log()
328 return size > 0 ? size : ret; in acpi_aml_write_log()
334 * @size: the size of the debugger input
338 * debugger interface buffer. Return the size of stored commands or errno.
343 int size in acpi_aml_read_cmd() local
603 int size = 0; acpi_aml_read() local
673 int size = 0; acpi_aml_write() local
[all...]
/kernel/linux/linux-6.6/drivers/staging/media/atomisp/pci/isp/kernels/sdis/sdis_2/
H A Dia_css_sdis2.host.c39 unsigned int size) in ia_css_sdis2_horicoef_vmem_encode()
45 unsigned int stride = size / IA_CSS_DVS2_NUM_COEF_TYPES / sizeof(short); in ia_css_sdis2_horicoef_vmem_encode()
52 assert(total_bytes <= size); in ia_css_sdis2_horicoef_vmem_encode()
53 assert(size % (IA_CSS_DVS2_NUM_COEF_TYPES * ISP_VEC_NELEMS * sizeof( in ia_css_sdis2_horicoef_vmem_encode()
64 unsigned int size) in ia_css_sdis2_vertcoef_vmem_encode()
70 unsigned int stride = size / IA_CSS_DVS2_NUM_COEF_TYPES / sizeof(short); in ia_css_sdis2_vertcoef_vmem_encode()
77 assert(total_bytes <= size); in ia_css_sdis2_vertcoef_vmem_encode()
78 assert(size % (IA_CSS_DVS2_NUM_COEF_TYPES * ISP_VEC_NELEMS * sizeof( in ia_css_sdis2_vertcoef_vmem_encode()
89 unsigned int size) in ia_css_sdis2_horiproj_encode()
93 (void)size; in ia_css_sdis2_horiproj_encode()
36 ia_css_sdis2_horicoef_vmem_encode( struct sh_css_isp_sdis_hori_coef_tbl *to, const struct ia_css_dvs2_coefficients *from, unsigned int size) ia_css_sdis2_horicoef_vmem_encode() argument
61 ia_css_sdis2_vertcoef_vmem_encode( struct sh_css_isp_sdis_vert_coef_tbl *to, const struct ia_css_dvs2_coefficients *from, unsigned int size) ia_css_sdis2_vertcoef_vmem_encode() argument
86 ia_css_sdis2_horiproj_encode( struct sh_css_isp_sdis_hori_proj_tbl *to, const struct ia_css_dvs2_coefficients *from, unsigned int size) ia_css_sdis2_horiproj_encode() argument
96 ia_css_sdis2_vertproj_encode( struct sh_css_isp_sdis_vert_proj_tbl *to, const struct ia_css_dvs2_coefficients *from, unsigned int size) ia_css_sdis2_vertproj_encode() argument
277 int size; ia_css_isp_dvs2_statistics_allocate() local
[all...]
/kernel/linux/linux-6.6/drivers/video/fbdev/omap2/omapfb/dss/
H A Dmanager-sysfs.c45 const char *buf, size_t size) in manager_display_store()
48 size_t len = size; in manager_display_store()
52 if (buf[size-1] == '\n') in manager_display_store()
114 return r ? r : size; in manager_display_store()
128 const char *buf, size_t size) in manager_default_color_store()
150 return size; in manager_default_color_store()
173 const char *buf, size_t size) in manager_trans_key_type_store()
194 return size; in manager_trans_key_type_store()
208 const char *buf, size_t size) in manager_trans_key_value_store()
230 return size; in manager_trans_key_value_store()
44 manager_display_store(struct omap_overlay_manager *mgr, const char *buf, size_t size) manager_display_store() argument
127 manager_default_color_store(struct omap_overlay_manager *mgr, const char *buf, size_t size) manager_default_color_store() argument
172 manager_trans_key_type_store(struct omap_overlay_manager *mgr, const char *buf, size_t size) manager_trans_key_type_store() argument
207 manager_trans_key_value_store(struct omap_overlay_manager *mgr, const char *buf, size_t size) manager_trans_key_value_store() argument
243 manager_trans_key_enabled_store(struct omap_overlay_manager *mgr, const char *buf, size_t size) manager_trans_key_enabled_store() argument
283 manager_alpha_blending_enabled_store( struct omap_overlay_manager *mgr, const char *buf, size_t size) manager_alpha_blending_enabled_store() argument
323 manager_cpr_enable_store(struct omap_overlay_manager *mgr, const char *buf, size_t size) manager_cpr_enable_store() argument
375 manager_cpr_coef_store(struct omap_overlay_manager *mgr, const char *buf, size_t size) manager_cpr_coef_store() argument
478 manager_attr_store(struct kobject *kobj, struct attribute *attr, const char *buf, size_t size) manager_attr_store() argument
[all...]
H A Doverlay-sysfs.c36 size_t size) in overlay_manager_store()
41 int len = size; in overlay_manager_store()
43 if (buf[size-1] == '\n') in overlay_manager_store()
64 return size; in overlay_manager_store()
99 return size; in overlay_manager_store()
136 const char *buf, size_t size) in overlay_position_store()
146 if (last - buf >= size) in overlay_position_store()
161 return size; in overlay_position_store()
175 const char *buf, size_t size) in overlay_output_size_store()
185 if (last - buf >= size) in overlay_output_size_store()
35 overlay_manager_store(struct omap_overlay *ovl, const char *buf, size_t size) overlay_manager_store() argument
135 overlay_position_store(struct omap_overlay *ovl, const char *buf, size_t size) overlay_position_store() argument
174 overlay_output_size_store(struct omap_overlay *ovl, const char *buf, size_t size) overlay_output_size_store() argument
208 overlay_enabled_store(struct omap_overlay *ovl, const char *buf, size_t size) overlay_enabled_store() argument
239 overlay_global_alpha_store(struct omap_overlay *ovl, const char *buf, size_t size) overlay_global_alpha_store() argument
281 overlay_pre_mult_alpha_store(struct omap_overlay *ovl, const char *buf, size_t size) overlay_pre_mult_alpha_store() argument
321 overlay_zorder_store(struct omap_overlay *ovl, const char *buf, size_t size) overlay_zorder_store() argument
411 overlay_attr_store(struct kobject *kobj, struct attribute *attr, const char *buf, size_t size) overlay_attr_store() argument
[all...]
/kernel/linux/linux-6.6/arch/x86/include/asm/
H A Defi.h233 * free_pages(addr, size)
235 * efi64_thunk(free_pages, addr & U32_MAX, addr >> 32, size)
252 #define __efi64_argmap_free_pages(addr, size) \
253 ((addr), 0, (size))
255 #define __efi64_argmap_get_memory_map(mm_size, mm, key, size, ver) \
256 ((mm_size), (mm), efi64_zero_upper(key), efi64_zero_upper(size), (ver))
258 #define __efi64_argmap_allocate_pool(type, size, buffer) \
259 ((type), (size), efi64_zero_upper(buffer))
279 #define __efi64_argmap_exit(handle, status, size, data) \
280 ((handle), efi64_convert_status(status), (size), (dat
[all...]
/kernel/linux/linux-6.6/drivers/pci/controller/
H A Dpci-ixp4xx.c206 static u32 ixp4xx_crp_byte_lane_enable_bits(u32 n, int size) in ixp4xx_crp_byte_lane_enable_bits() argument
208 if (size == 1) in ixp4xx_crp_byte_lane_enable_bits()
210 if (size == 2) in ixp4xx_crp_byte_lane_enable_bits()
212 if (size == 4) in ixp4xx_crp_byte_lane_enable_bits()
217 static int ixp4xx_crp_read_config(struct ixp4xx_pci *p, int where, int size, in ixp4xx_crp_read_config() argument
225 dev_dbg(p->dev, "%s from %d size %d cmd %08x\n", in ixp4xx_crp_read_config()
226 __func__, where, size, cmd); in ixp4xx_crp_read_config()
232 switch (size) { in ixp4xx_crp_read_config()
247 dev_err(p->dev, "%s illegal size\n", __func__); in ixp4xx_crp_read_config()
255 static int ixp4xx_crp_write_config(struct ixp4xx_pci *p, int where, int size, in ixp4xx_crp_write_config() argument
282 ixp4xx_byte_lane_enable_bits(u32 n, int size) ixp4xx_byte_lane_enable_bits() argument
293 ixp4xx_pci_read_config(struct pci_bus *bus, unsigned int devfn, int where, int size, u32 *value) ixp4xx_pci_read_config() argument
340 ixp4xx_pci_write_config(struct pci_bus *bus, unsigned int devfn, int where, int size, u32 value) ixp4xx_pci_write_config() argument
[all...]
/kernel/linux/linux-6.6/drivers/gpu/drm/i915/gt/uc/
H A Dintel_gsc_fw.c73 int intel_gsc_fw_get_binary_info(struct intel_uc_fw *gsc_fw, const void *data, size_t size) in intel_gsc_fw_get_binary_info() argument
86 if (size < min_size) { in intel_gsc_fw_get_binary_info()
87 gt_err(gt, "GSC FW too small! %zu < %zu\n", size, min_size); in intel_gsc_fw_get_binary_info()
141 min_size = layout->boot1.offset + layout->boot1.size; in intel_gsc_fw_get_binary_info()
142 if (size < min_size) { in intel_gsc_fw_get_binary_info()
144 size, min_size); in intel_gsc_fw_get_binary_info()
149 if (layout->boot1.size < min_size) { in intel_gsc_fw_get_binary_info()
151 layout->boot1.size, min_size); in intel_gsc_fw_get_binary_info()
163 if (layout->boot1.size < min_size) { in intel_gsc_fw_get_binary_info()
165 layout->boot1.size, min_siz in intel_gsc_fw_get_binary_info()
[all...]
/kernel/linux/linux-6.6/drivers/gpu/drm/ttm/tests/
H A Dttm_pool_test.c53 size_t size) in ttm_tt_kunit_init()
60 bo = ttm_bo_kunit_init(test, priv->devs, size); in ttm_tt_kunit_init()
74 size_t size, in ttm_pool_pre_populated()
81 unsigned long order = __fls(size / PAGE_SIZE); in ttm_pool_pre_populated()
84 tt = ttm_tt_kunit_init(test, order, caching, size); in ttm_pool_pre_populated()
145 size_t size = expected_num_pages * PAGE_SIZE; in ttm_pool_alloc_basic() local
148 tt = ttm_tt_kunit_init(test, 0, caching, size); in ttm_pool_alloc_basic()
207 size_t size = expected_num_pages * PAGE_SIZE; in ttm_pool_alloc_basic_dma_addr() local
213 bo = ttm_bo_kunit_init(test, devs, size); in ttm_pool_alloc_basic_dma_addr()
246 size_t size in ttm_pool_alloc_order_caching_match() local
50 ttm_tt_kunit_init(struct kunit *test, uint32_t page_flags, enum ttm_caching caching, size_t size) ttm_tt_kunit_init() argument
73 ttm_pool_pre_populated(struct kunit *test, size_t size, enum ttm_caching caching) ttm_pool_pre_populated() argument
274 size_t size = PAGE_SIZE; ttm_pool_alloc_caching_mismatch() local
344 size_t size = (1 << order) * PAGE_SIZE; ttm_pool_free_dma_alloc() local
375 size_t size = (1 << order) * PAGE_SIZE; ttm_pool_free_no_dma_alloc() local
403 size_t size = PAGE_SIZE; ttm_pool_fini_basic() local
[all...]
/kernel/linux/linux-6.6/tools/perf/tests/shell/
H A Ddaemon.sh170 [session-size]
180 daemon_start ${config} size
189 # pid:size:-e cpu-clock:base/size:base/size/output:base/size/control:base/size/ack:0
192 check_line_other "${line}" size "-e cpu-clock -m 1 sleep 10" ${base}/session-size \
193 ${base}/session-size/outpu
[all...]

Completed in 21 milliseconds

1...<<111112113114115116117118119120>>...1587