Lines Matching refs:tmp
92 long tmp; in fb_memclear() local
109 : "=a" (s), "=d" (count), "=d" (tmp) in fb_memclear()
157 long tmp; in fb_memmove() local
175 : "=a" (d), "=a" (s), "=d" (count), "=d" (tmp) in fb_memmove()
189 long tmp; in fb_memmove() local
208 : "=a" (d), "=a" (s), "=d" (count), "=d" (tmp) in fb_memmove()
281 u32 tmp = m[0]; in fill8_col() local
282 dst[0] = tmp; in fill8_col()
283 dst[2] = (tmp >>= 8); in fill8_col()
285 dst[4] = (tmp >>= 8); in fill8_col()
286 dst[6] = tmp >> 8; in fill8_col()
289 tmp = m[1]; in fill8_col()
290 dst[8] = tmp; in fill8_col()
291 dst[10] = (tmp >>= 8); in fill8_col()
292 dst[12] = (tmp >>= 8); in fill8_col()
293 dst[14] = tmp >> 8; in fill8_col()
302 u32 fgm[2], bgm[2], tmp; in fill8_2col() local
310 tmp = (mask & fgm[0]) ^ bgm[0]; in fill8_2col()
311 dst[0] = tmp; in fill8_2col()
312 dst[2] = (tmp >>= 8); in fill8_2col()
314 dst[4] = (tmp >>= 8); in fill8_2col()
315 dst[6] = tmp >> 8; in fill8_2col()
318 tmp = (mask & fgm[1]) ^ bgm[1]; in fill8_2col()
319 dst[8] = tmp; in fill8_2col()
320 dst[10] = (tmp >>= 8); in fill8_2col()
321 dst[12] = (tmp >>= 8); in fill8_2col()
322 dst[14] = tmp >> 8; in fill8_2col()