Searched refs:v_src (Results 1 – 4 of 4) sorted by relevance
/Linux-v6.1/arch/microblaze/lib/ |
D | memset.c | 34 void *memset(void *v_src, int c, __kernel_size_t n) in memset() argument 36 char *src = v_src; in memset() 91 return v_src; in memset()
|
D | memmove.c | 34 void *memmove(void *v_dst, const void *v_src, __kernel_size_t c) in memmove() argument 36 const char *src = v_src; in memmove() 45 if (v_dst <= v_src) in memmove() 46 return memcpy(v_dst, v_src, c); in memmove()
|
D | memcpy.c | 35 void *memcpy(void *v_dst, const void *v_src, __kernel_size_t c) in memcpy() argument 37 const char *src = v_src; in memcpy()
|
/Linux-v6.1/drivers/media/i2c/cx25840/ |
D | cx25840-core.c | 1755 u32 hsc, vsc, v_src, h_src, v_add; in cx25840_set_fmt() local 1766 v_src = (cx25840_read(client, 0x42a) & 0x3f) << 4; in cx25840_set_fmt() 1767 v_src |= (cx25840_read(client, 0x429) & 0xf0) >> 4; in cx25840_set_fmt() 1769 v_src = (cx25840_read(client, 0x476) & 0x3f) << 4; in cx25840_set_fmt() 1770 v_src |= (cx25840_read(client, 0x475) & 0xf0) >> 4; in cx25840_set_fmt() 1798 v_src <= v_add) { in cx25840_set_fmt() 1801 (unsigned int)h_src, (unsigned int)v_src); in cx25840_set_fmt() 1811 if (v_add * 8 >= v_src) in cx25840_set_fmt() 1812 fmt->height = clamp(fmt->height, (u32)1, v_src - v_add); in cx25840_set_fmt() 1814 fmt->height = clamp(fmt->height, (v_src - v_add * 8 + 7) / 8, in cx25840_set_fmt() [all …]
|