Home
last modified time | relevance | path

Searched defs:c (Results 151 – 175 of 4295) sorted by relevance

12345678910>>...172

/OK3568_Linux_fs/u-boot/arch/arm/include/asm/
H A Dio.h115 #define writeb(v,c) ({ u8 __v = v; __iowmb(); __arch_putb(__v,c); __v; }) argument
116 #define writew(v,c) ({ u16 __v = v; __iowmb(); __arch_putw(__v,c); __v; }) argument
117 #define writel(v,c) ({ u32 __v = v; __iowmb(); __arch_putl(__v,c); __v; }) argument
118 #define writeq(v,c) ({ u64 __v = v; __iowmb(); __arch_putq(__v,c); __v; }) argument
120 #define readb(c) ({ u8 __v = __arch_getb(c); __iormb(); __v; }) argument
121 #define readw(c) ({ u16 __v = __arch_getw(c); __iormb(); __v; }) argument
122 #define readl(c) ({ u32 __v = __arch_getl(c); __iormb(); __v; }) argument
123 #define readq(c) ({ u64 __v = __arch_getq(c); __iormb(); __v; }) argument
291 #define readb(c) ({ unsigned int __v = __raw_readb(__mem_pci(c)); __v; }) argument
292 #define readw(c) ({ unsigned int __v = le16_to_cpu(__raw_readw(__mem_pci(c))); __v; }) argument
[all …]
/OK3568_Linux_fs/kernel/drivers/video/console/
H A Dmdacon.c355 static void mdacon_init(struct vc_data *c, int init) in mdacon_init()
372 static void mdacon_deinit(struct vc_data *c) in mdacon_deinit()
397 static u8 mdacon_build_attr(struct vc_data *c, u8 color, in mdacon_build_attr()
417 static void mdacon_invert_region(struct vc_data *c, u16 *p, int count) in mdacon_invert_region()
430 static void mdacon_putc(struct vc_data *c, int ch, int y, int x) in mdacon_putc()
435 static void mdacon_putcs(struct vc_data *c, const unsigned short *s, in mdacon_putcs()
445 static void mdacon_clear(struct vc_data *c, int y, int x, in mdacon_clear()
462 static int mdacon_switch(struct vc_data *c) in mdacon_switch()
467 static int mdacon_blank(struct vc_data *c, int blank, int mode_switch) in mdacon_blank()
486 static void mdacon_cursor(struct vc_data *c, int mode) in mdacon_cursor()
[all …]
/OK3568_Linux_fs/kernel/drivers/mtd/nand/onenand/
H A Donenand_omap2.c52 struct omap2_onenand *c = dev_id; in omap2_onenand_interrupt() local
59 static inline unsigned short read_reg(struct omap2_onenand *c, int reg) in read_reg()
64 static inline void write_reg(struct omap2_onenand *c, unsigned short value, in write_reg()
70 static int omap2_onenand_set_cfg(struct omap2_onenand *c, in omap2_onenand_set_cfg()
144 struct omap2_onenand *c = container_of(mtd, struct omap2_onenand, mtd); in omap2_onenand_wait() local
324 static inline int omap2_onenand_dma_transfer(struct omap2_onenand *c, in omap2_onenand_dma_transfer()
364 struct omap2_onenand *c = container_of(mtd, struct omap2_onenand, mtd); in omap2_onenand_read_bufferram() local
412 struct omap2_onenand *c = container_of(mtd, struct omap2_onenand, mtd); in omap2_onenand_write_bufferram() local
450 struct omap2_onenand *c = dev_get_drvdata(&pdev->dev); in omap2_onenand_shutdown() local
465 struct omap2_onenand *c; in omap2_onenand_probe() local
[all …]
/OK3568_Linux_fs/kernel/fs/ubifs/
H A Djournal.c81 static void ubifs_add_auth_dirt(struct ubifs_info *c, int lnum) in ubifs_add_auth_dirt()
98 static int reserve_space(struct ubifs_info *c, int jhead, int len) in reserve_space()
225 static int ubifs_hash_nodes(struct ubifs_info *c, void *node, in ubifs_hash_nodes()
268 static int write_head(struct ubifs_info *c, int jhead, void *buf, int len, in write_head()
311 static int make_reservation(struct ubifs_info *c, int jhead, int len) in make_reservation()
395 static inline void release_head(struct ubifs_info *c, int jhead) in release_head()
407 static void finish_reservation(struct ubifs_info *c) in finish_reservation()
446 static void pack_inode(struct ubifs_info *c, struct ubifs_ino_node *ino, in pack_inode()
496 static void mark_inode_clean(struct ubifs_info *c, struct ubifs_inode *ui) in mark_inode_clean()
503 static void set_dent_cookie(struct ubifs_info *c, struct ubifs_dent_node *dent) in set_dent_cookie()
[all …]
H A Dxattr.c81 static int create_xattr(struct ubifs_info *c, struct inode *host, in create_xattr()
190 static int change_xattr(struct ubifs_info *c, struct inode *host, in change_xattr()
248 static struct inode *iget_xattr(struct ubifs_info *c, ino_t inum) in iget_xattr()
269 struct ubifs_info *c = host->i_sb->s_fs_info; in ubifs_xattr_set() local
332 struct ubifs_info *c = host->i_sb->s_fs_info; in ubifs_xattr_get() local
404 struct ubifs_info *c = host->i_sb->s_fs_info; in ubifs_listxattr() local
465 static int remove_xattr(struct ubifs_info *c, struct inode *host, in remove_xattr()
509 struct ubifs_info *c = host->i_sb->s_fs_info; in ubifs_purge_xattrs() local
588 void ubifs_evict_xattr_inode(struct ubifs_info *c, ino_t xattr_inum) in ubifs_evict_xattr_inode()
602 struct ubifs_info *c = host->i_sb->s_fs_info; in ubifs_xattr_remove() local
[all …]
H A Ddir.c76 struct inode *ubifs_new_inode(struct ubifs_info *c, struct inode *dir, in ubifs_new_inode()
180 static int dbg_check_name(const struct ubifs_info *c, in dbg_check_name()
200 struct ubifs_info *c = dir->i_sb->s_fs_info; in ubifs_lookup() local
287 struct ubifs_info *c = dir->i_sb->s_fs_info; in ubifs_create() local
356 struct ubifs_info *c = dir->i_sb->s_fs_info; in do_tmpfile() local
510 struct ubifs_info *c = dir->i_sb->s_fs_info; in ubifs_readdir() local
697 struct ubifs_info *c = dir->i_sb->s_fs_info; in ubifs_link() local
771 struct ubifs_info *c = dir->i_sb->s_fs_info; in ubifs_unlink() local
856 struct ubifs_info *c = dir->i_sb->s_fs_info; in ubifs_check_dir_empty() local
877 struct ubifs_info *c = dir->i_sb->s_fs_info; in ubifs_rmdir() local
[all …]
/OK3568_Linux_fs/kernel/drivers/gpu/drm/msm/disp/dpu1/
H A Ddpu_hw_vbif.c38 struct dpu_hw_blk_reg_map *c; in dpu_hw_clear_errors() local
58 struct dpu_hw_blk_reg_map *c; in dpu_hw_set_mem_type() local
88 struct dpu_hw_blk_reg_map *c = &vbif->hw; in dpu_hw_set_limit_conf() local
109 struct dpu_hw_blk_reg_map *c = &vbif->hw; in dpu_hw_get_limit_conf() local
131 struct dpu_hw_blk_reg_map *c = &vbif->hw; in dpu_hw_set_halt_ctrl() local
147 struct dpu_hw_blk_reg_map *c = &vbif->hw; in dpu_hw_get_halt_ctrl() local
158 struct dpu_hw_blk_reg_map *c; in dpu_hw_set_qos_remap() local
186 struct dpu_hw_blk_reg_map *c; in dpu_hw_set_write_gather_en() local
238 struct dpu_hw_vbif *c; in dpu_hw_vbif_init() local
/OK3568_Linux_fs/kernel/include/linux/
H A Djhash.h35 #define __jhash_mix(a, b, c) \ argument
46 #define __jhash_final(a, b, c) \ argument
72 u32 a, b, c; in jhash() local
119 u32 a, b, c; in jhash2() local
150 static inline u32 __jhash_nwords(u32 a, u32 b, u32 c, u32 initval) in __jhash_nwords()
161 static inline u32 jhash_3words(u32 a, u32 b, u32 c, u32 initval) in jhash_3words()
/OK3568_Linux_fs/kernel/tools/include/linux/
H A Djhash.h35 #define __jhash_mix(a, b, c) \ argument
46 #define __jhash_final(a, b, c) \ argument
72 u32 a, b, c; in jhash() local
119 u32 a, b, c; in jhash2() local
149 static inline u32 __jhash_nwords(u32 a, u32 b, u32 c, u32 initval) in __jhash_nwords()
160 static inline u32 jhash_3words(u32 a, u32 b, u32 c, u32 initval) in jhash_3words()
/OK3568_Linux_fs/kernel/drivers/net/ethernet/mellanox/mlx5/core/en/xsk/
H A Dsetup.c49 struct mlx5e_channel *c) in mlx5e_open_xsk()
106 void mlx5e_close_xsk(struct mlx5e_channel *c) in mlx5e_close_xsk()
120 void mlx5e_activate_xsk(struct mlx5e_channel *c) in mlx5e_activate_xsk()
130 void mlx5e_deactivate_xsk(struct mlx5e_channel *c) in mlx5e_deactivate_xsk()
150 int mlx5e_xsk_redirect_rqt_to_channel(struct mlx5e_priv *priv, struct mlx5e_channel *c) in mlx5e_xsk_redirect_rqt_to_channel()
168 struct mlx5e_channel *c = chs->c[i]; in mlx5e_xsk_redirect_rqts_to_channels() local
/OK3568_Linux_fs/kernel/mm/
H A Dpage_counter.c16 static void propagate_protected_usage(struct page_counter *c, in propagate_protected_usage()
69 struct page_counter *c; in page_counter_charge() local
98 struct page_counter *c; in page_counter_try_charge() local
153 struct page_counter *c; in page_counter_uncharge() local
210 struct page_counter *c; in page_counter_set_min() local
227 struct page_counter *c; in page_counter_set_low() local
/OK3568_Linux_fs/external/xserver/test/sync/
H A Dsync.c47 counter_value(struct xcb_connection_t *c, in counter_value()
73 test_create_counter(xcb_connection_t *c) in test_create_counter()
99 test_set_counter(xcb_connection_t *c) in test_set_counter()
125 test_change_counter_basic(xcb_connection_t *c) in test_change_counter_basic()
155 test_change_counter_overflow(xcb_connection_t *c) in test_change_counter_overflow()
225 test_change_alarm_value(xcb_connection_t *c) in test_change_alarm_value()
255 test_change_alarm_delta(xcb_connection_t *c) in test_change_alarm_delta()
287 xcb_connection_t *c = xcb_connect(NULL, &screen); in main() local
/OK3568_Linux_fs/external/security/rk_tee_user/v2/host/xtest/
H A Dregression_6000.c449 static void test_truncate_file_length(ADBG_Case_t *c, uint32_t storage_id) in test_truncate_file_length()
518 static void test_extend_file_length(ADBG_Case_t *c, uint32_t storage_id) in test_extend_file_length()
592 static void test_file_hole(ADBG_Case_t *c, uint32_t storage_id) in test_file_hole()
676 static void xtest_tee_test_6001_single(ADBG_Case_t *c, uint32_t storage_id) in xtest_tee_test_6001_single()
705 static void xtest_tee_test_6002_single(ADBG_Case_t *c, uint32_t storage_id) in xtest_tee_test_6002_single()
749 static void xtest_tee_test_6003_single(ADBG_Case_t *c, uint32_t storage_id) in xtest_tee_test_6003_single()
793 static void xtest_tee_test_6004_single(ADBG_Case_t *c, uint32_t storage_id) in xtest_tee_test_6004_single()
852 static void xtest_tee_test_6005_single(ADBG_Case_t *c, uint32_t storage_id) in xtest_tee_test_6005_single()
896 static void xtest_tee_test_6006_single(ADBG_Case_t *c, uint32_t storage_id) in xtest_tee_test_6006_single()
930 static void xtest_tee_test_6007_single(ADBG_Case_t *c, uint32_t storage_id) in xtest_tee_test_6007_single()
[all …]
/OK3568_Linux_fs/kernel/drivers/md/bcache/
H A Dsysfs.c290 struct cache_set *c; in STORE() local
611 static int bch_bset_print_stats(struct cache_set *c, char *buf) in bch_bset_print_stats()
637 static unsigned int bch_root_usage(struct cache_set *c) in bch_root_usage()
661 static size_t bch_cache_size(struct cache_set *c) in bch_cache_size()
674 static unsigned int bch_cache_max_chain(struct cache_set *c) in bch_cache_max_chain()
697 static unsigned int bch_btree_used(struct cache_set *c) in bch_btree_used()
703 static unsigned int bch_average_key_size(struct cache_set *c) in bch_average_key_size()
712 struct cache_set *c = container_of(kobj, struct cache_set, kobj); in SHOW() local
799 struct cache_set *c = container_of(kobj, struct cache_set, kobj); in STORE() local
919 struct cache_set *c = container_of(kobj, struct cache_set, internal); in SHOW() local
[all …]
H A Dio.c17 void bch_bbio_free(struct bio *bio, struct cache_set *c) in bch_bbio_free()
24 struct bio *bch_bbio_alloc(struct cache_set *c) in bch_bbio_alloc()
34 void __bch_submit_bbio(struct bio *bio, struct cache_set *c) in __bch_submit_bbio()
45 void bch_submit_bbio(struct bio *bio, struct cache_set *c, in bch_submit_bbio()
136 void bch_bbio_count_io_errors(struct cache_set *c, struct bio *bio, in bch_bbio_count_io_errors()
166 void bch_bbio_endio(struct cache_set *c, struct bio *bio, in bch_bbio_endio()
/OK3568_Linux_fs/kernel/drivers/dma/ti/
H A Domap-dma.c238 static inline struct omap_chan *to_omap_dma_chan(struct dma_chan *c) in to_omap_dma_chan()
369 static void omap_dma_chan_write(struct omap_chan *c, unsigned reg, unsigned val) in omap_dma_chan_write()
376 static unsigned omap_dma_chan_read(struct omap_chan *c, unsigned reg) in omap_dma_chan_read()
383 static void omap_dma_clear_csr(struct omap_chan *c) in omap_dma_clear_csr()
391 static unsigned omap_dma_get_csr(struct omap_chan *c) in omap_dma_get_csr()
403 struct omap_chan *c; in omap_dma_clear_lch() local
414 static void omap_dma_assign(struct omap_dmadev *od, struct omap_chan *c, in omap_dma_assign()
422 static void omap_dma_start(struct omap_chan *c, struct omap_desc *d) in omap_dma_start()
462 static void omap_dma_drain_chan(struct omap_chan *c) in omap_dma_drain_chan()
485 static int omap_dma_stop(struct omap_chan *c) in omap_dma_stop()
[all …]
/OK3568_Linux_fs/kernel/drivers/dma/
H A Dbcm2835-dma.c86 struct bcm2835_chan *c; member
175 static inline size_t bcm2835_dma_max_frame_length(struct bcm2835_chan *c) in bcm2835_dma_max_frame_length()
193 static inline struct bcm2835_chan *to_bcm2835_dma_chan(struct dma_chan *c) in to_bcm2835_dma_chan()
264 struct bcm2835_chan *c, in bcm2835_dma_count_frames_for_sg()
306 struct bcm2835_chan *c = to_bcm2835_dma_chan(chan); in bcm2835_dma_create_cb_chain() local
390 struct bcm2835_chan *c = to_bcm2835_dma_chan(chan); in bcm2835_dma_fill_cb_chain_with_sg() local
410 static void bcm2835_dma_abort(struct bcm2835_chan *c) in bcm2835_dma_abort()
438 static void bcm2835_dma_start_desc(struct bcm2835_chan *c) in bcm2835_dma_start_desc()
458 struct bcm2835_chan *c = data; in bcm2835_dma_callback() local
502 struct bcm2835_chan *c = to_bcm2835_dma_chan(chan); in bcm2835_dma_alloc_chan_resources() local
[all …]
/OK3568_Linux_fs/kernel/drivers/gpu/drm/atmel-hlcdc/
H A Datmel_hlcdc_crtc.c65 static void atmel_hlcdc_crtc_mode_set_nofb(struct drm_crtc *c) in atmel_hlcdc_crtc_mode_set_nofb()
159 atmel_hlcdc_crtc_mode_valid(struct drm_crtc *c, in atmel_hlcdc_crtc_mode_valid()
167 static void atmel_hlcdc_crtc_atomic_disable(struct drm_crtc *c, in atmel_hlcdc_crtc_atomic_disable()
202 static void atmel_hlcdc_crtc_atomic_enable(struct drm_crtc *c, in atmel_hlcdc_crtc_atomic_enable()
327 static int atmel_hlcdc_crtc_atomic_check(struct drm_crtc *c, in atmel_hlcdc_crtc_atomic_check()
343 static void atmel_hlcdc_crtc_atomic_begin(struct drm_crtc *c, in atmel_hlcdc_crtc_atomic_begin()
374 static void atmel_hlcdc_crtc_destroy(struct drm_crtc *c) in atmel_hlcdc_crtc_destroy()
396 void atmel_hlcdc_crtc_irq(struct drm_crtc *c) in atmel_hlcdc_crtc_irq()
447 static int atmel_hlcdc_crtc_enable_vblank(struct drm_crtc *c) in atmel_hlcdc_crtc_enable_vblank()
458 static void atmel_hlcdc_crtc_disable_vblank(struct drm_crtc *c) in atmel_hlcdc_crtc_disable_vblank()
/OK3568_Linux_fs/kernel/drivers/spi/
H A Dspi-txx9.c87 static u32 txx9spi_rd(struct txx9spi *c, int reg) in txx9spi_rd()
91 static void txx9spi_wr(struct txx9spi *c, u32 val, int reg) in txx9spi_wr()
96 static void txx9spi_cs_func(struct spi_device *spi, struct txx9spi *c, in txx9spi_cs_func()
120 struct txx9spi *c = spi_master_get_devdata(spi->master); in txx9spi_setup() local
135 struct txx9spi *c = dev_id; in txx9spi_interrupt() local
144 static void txx9spi_work_one(struct txx9spi *c, struct spi_message *m) in txx9spi_work_one()
278 struct txx9spi *c = container_of(work, struct txx9spi, work); in txx9spi_work() local
299 struct txx9spi *c = spi_master_get_devdata(master); in txx9spi_transfer() local
363 struct txx9spi *c; in txx9spi_probe() local
446 struct txx9spi *c = spi_master_get_devdata(master); in txx9spi_remove() local
/OK3568_Linux_fs/kernel/net/ceph/crush/
H A Dhash.c13 #define crush_hashmix(a, b, c) do { \ argument
49 static __u32 crush_hash32_rjenkins1_3(__u32 a, __u32 b, __u32 c) in crush_hash32_rjenkins1_3()
62 static __u32 crush_hash32_rjenkins1_4(__u32 a, __u32 b, __u32 c, __u32 d) in crush_hash32_rjenkins1_4()
76 static __u32 crush_hash32_rjenkins1_5(__u32 a, __u32 b, __u32 c, __u32 d, in crush_hash32_rjenkins1_5()
114 __u32 crush_hash32_3(int type, __u32 a, __u32 b, __u32 c) in crush_hash32_3()
124 __u32 crush_hash32_4(int type, __u32 a, __u32 b, __u32 c, __u32 d) in crush_hash32_4()
134 __u32 crush_hash32_5(int type, __u32 a, __u32 b, __u32 c, __u32 d, __u32 e) in crush_hash32_5()
/OK3568_Linux_fs/external/security/rk_tee_user/v2/host/xtest/gp/include/
H A Dxml_internal_api.h252 static TEEC_Result Invoke_MemFill(ADBG_Case_t *c, TEEC_Session *sess, in Invoke_MemFill()
261 ADBG_Case_t *c, TEEC_Session *sess, uint32_t cmdId, in Invoke_GetPropertyAsXXX_withoutEnum()
319 ADBG_Case_t *c, TEEC_Session *sess, uint32_t cmdId, in Invoke_MemCompare()
357 static TEEC_Result Invoke_SetInstanceData(ADBG_Case_t *c, in Invoke_SetInstanceData()
383 ADBG_Case_t *c, TEEC_Session *sess, uint32_t cmdId, char *expectedData, in Invoke_GetInstanceData()
418 ADBG_Case_t *c, TEEC_Session *sess, uint32_t cmdId, in Invoke_ProcessInvokeTAOpenSession()
457 static TEEC_Result Invoke_CheckMemoryAccessRight(ADBG_Case_t *c, in Invoke_CheckMemoryAccessRight()
504 static TEEC_Result Invoke_MemMove(ADBG_Case_t *c, TEEC_Session *sess, in Invoke_MemMove()
510 static TEEC_Result Invoke_AllocatePropertyEnumerator(ADBG_Case_t *c, in Invoke_AllocatePropertyEnumerator()
532 static TEEC_Result Invoke_StartPropertyEnumerator(ADBG_Case_t *c, in Invoke_StartPropertyEnumerator()
[all …]
/OK3568_Linux_fs/kernel/drivers/media/firewire/
H A Dfiredtv-avc.c90 static inline void clear_operands(struct avc_command_frame *c, int from, int to) in clear_operands()
95 static void pad_operands(struct avc_command_frame *c, int from) in pad_operands()
336 struct avc_command_frame *c = (void *)fdtv->avc_data; in avc_tuner_tuneqpsk() local
417 struct avc_command_frame *c = (void *)fdtv->avc_data; in avc_tuner_dsd_dvb_c() local
485 struct avc_command_frame *c = (void *)fdtv->avc_data; in avc_tuner_dsd_dvb_t() local
586 struct avc_command_frame *c = (void *)fdtv->avc_data; in avc_tuner_dsd() local
625 struct avc_command_frame *c = (void *)fdtv->avc_data; in avc_tuner_set_pids() local
671 struct avc_command_frame *c = (void *)fdtv->avc_data; in avc_tuner_get_ts() local
711 struct avc_command_frame *c = (void *)fdtv->avc_data; in avc_identify_subunit() local
751 struct avc_command_frame *c = (void *)fdtv->avc_data; in avc_tuner_status() local
[all …]
/OK3568_Linux_fs/kernel/fs/jffs2/
H A Dbackground.c27 void jffs2_garbage_collect_trigger(struct jffs2_sb_info *c) in jffs2_garbage_collect_trigger()
35 int jffs2_start_garbage_collect_thread(struct jffs2_sb_info *c) in jffs2_start_garbage_collect_thread()
61 void jffs2_stop_garbage_collect_thread(struct jffs2_sb_info *c) in jffs2_stop_garbage_collect_thread()
77 struct jffs2_sb_info *c = _c; in jffs2_garbage_collect_thread() local
/OK3568_Linux_fs/external/rkwifibt/drivers/bcmdhd/
H A Dsiutils_priv.h425 #define ub_scan(a, b, c) do {} while (0) argument
433 #define ub_core_cflags(a, b, c) (0) argument
434 #define ub_core_cflags_wo(a, b, c) do {} while (0) argument
435 #define ub_core_sflags(a, b, c) (0) argument
436 #define ub_corereg(a, b, c, d, e) (0) argument
437 #define ub_core_reset(a, b, c) do {} while (0) argument
449 #define nci_init(a, b, c) (NULL) argument
450 #define nci_setcore(a, b, c) (NULL) argument
452 #define nci_findcoreidx(a, b, c) (0) argument
453 #define nci_corereg_addr(a, b, c) (NULL) argument
[all …]
/OK3568_Linux_fs/kernel/drivers/net/wireless/rockchip_wlan/rkwifi/bcmdhd/
H A Dsiutils_priv.h425 #define ub_scan(a, b, c) do {} while (0) argument
433 #define ub_core_cflags(a, b, c) (0) argument
434 #define ub_core_cflags_wo(a, b, c) do {} while (0) argument
435 #define ub_core_sflags(a, b, c) (0) argument
436 #define ub_corereg(a, b, c, d, e) (0) argument
437 #define ub_core_reset(a, b, c) do {} while (0) argument
449 #define nci_init(a, b, c) (NULL) argument
450 #define nci_setcore(a, b, c) (NULL) argument
452 #define nci_findcoreidx(a, b, c) (0) argument
453 #define nci_corereg_addr(a, b, c) (NULL) argument
[all …]

12345678910>>...172