/linux-4.1.27/arch/x86/crypto/ |
H A D | sha256-avx-asm.S | 114 y0 = %r13d define 158 mov e, y0 # y0 = e 159 MY_ROR (25-11), y0 # y0 = e >> (25-11) 163 xor e, y0 # y0 = e ^ (e >> (25-11)) 165 MY_ROR (11-6), y0 # y0 = (e >> (11-6)) ^ (e >> (25-6)) 169 xor e, y0 # y0 = e ^ (e >> (11-6)) ^ (e >> (25-6)) 175 MY_ROR 6, y0 # y0 = S1 = (e>>6) & (e>>11) ^ (e>>25) 178 add y0, y2 # y2 = S1 + CH 180 mov a, y0 # y0 = a 184 or c, y0 # y0 = a|c 188 and b, y0 # y0 = (a|c)&b 191 or y2, y0 # y0 = MAJ = (a|c)&b)|(a&c) 192 add y0, h # h = h + S1 + CH + k + w + S0 + MAJ 194 mov e, y0 # y0 = e 196 MY_ROR (25-11), y0 # y0 = e >> (25-11) 197 xor e, y0 # y0 = e ^ (e >> (25-11)) 202 MY_ROR (11-6), y0 # y0 = (e >> (11-6)) ^ (e >> (25-6)) 206 xor e, y0 # y0 = e ^ (e >> (11-6)) ^ (e >> (25-6)) 208 MY_ROR 6, y0 # y0 = S1 = (e>>6) & (e>>11) ^ (e>>25) 213 add y0, y2 # y2 = S1 + CH 217 mov a, y0 # y0 = a 221 or c, y0 # y0 = a|c 226 and b, y0 # y0 = (a|c)&b 229 or y2, y0 # y0 = MAJ = (a|c)&b)|(a&c) 230 add y0, h # h = h + S1 + CH + k + w + S0 + MAJ 232 mov e, y0 # y0 = e 234 MY_ROR (25-11), y0 # y0 = e >> (25-11) 235 xor e, y0 # y0 = e ^ (e >> (25-11)) 239 MY_ROR (11-6), y0 # y0 = (e >> (11-6)) ^ (e >> (25-6)) 243 xor e, y0 # y0 = e ^ (e >> (11-6)) ^ (e >> (25-6)) 249 MY_ROR 6, y0 # y0 = S1 = (e>>6) & (e>>11) ^ (e>>25) 251 add y0, y2 # y2 = S1 + CH 255 mov a, y0 # y0 = a 259 or c, y0 # y0 = a|c 263 and b, y0 # y0 = (a|c)&b 267 or y2, y0 # y0 = MAJ = (a|c)&b)|(a&c) 268 add y0, h # h = h + S1 + CH + k + w + S0 + MAJ 270 mov e, y0 # y0 = e 271 MY_ROR (25-11), y0 # y0 = e >> (25-11) 274 xor e, y0 # y0 = e ^ (e >> (25-11)) 276 MY_ROR (11-6), y0 # y0 = (e >> (11-6)) ^ (e >> (25-6)) 281 xor e, y0 # y0 = e ^ (e >> (11-6)) ^ (e >> (25-6)) 286 MY_ROR 6, y0 # y0 = S1 = (e>>6) & (e>>11) ^ (e>>25) 290 add y0, y2 # y2 = S1 + CH 293 mov a, y0 # y0 = a 297 or c, y0 # y0 = a|c 301 and b, y0 # y0 = (a|c)&b 303 or y2, y0 # y0 = MAJ = (a|c)&b)|(a&c) 304 add y0, h # h = h + S1 + CH + k + w + S0 + MAJ 311 mov e, y0 # y0 = e 312 MY_ROR (25-11), y0 # y0 = e >> (25-11) 314 xor e, y0 # y0 = e ^ (e >> (25-11)) 318 MY_ROR (11-6), y0 # y0 = (e >> (11-6)) ^ (e >> (25-6)) 320 xor e, y0 # y0 = e ^ (e >> (11-6)) ^ (e >> (25-6)) 324 MY_ROR 6, y0 # y0 = S1 = (e>>6) & (e>>11) ^ (e>>25) 326 add y0, y2 # y2 = S1 + CH 330 mov a, y0 # y0 = a 333 or c, y0 # y0 = a|c 336 and b, y0 # y0 = (a|c)&b 338 or y2, y0 # y0 = MAJ = (a|c)&b)|(a&c) 339 add y0, h # h = h + S1 + CH + k + w + S0 + MAJ
|
H A D | sha256-ssse3-asm.S | 106 y0 = %r13d define 151 mov e, y0 # y0 = e 152 ror $(25-11), y0 # y0 = e >> (25-11) 156 xor e, y0 # y0 = e ^ (e >> (25-11)) 158 ror $(11-6), y0 # y0 = (e >> (11-6)) ^ (e >> (25-6)) 163 xor e, y0 # y0 = e ^ (e >> (11-6)) ^ (e >> (25-6)) 169 ror $6, y0 # y0 = S1 = (e>>6) & (e>>11) ^ (e>>25) 173 add y0, y2 # y2 = S1 + CH 176 mov a, y0 # y0 = a 180 or c, y0 # y0 = a|c 184 and b, y0 # y0 = (a|c)&b 187 or y2, y0 # y0 = MAJ = (a|c)&b)|(a&c) 188 add y0, h # h = h + S1 + CH + k + w + S0 + MAJ 192 mov e, y0 # y0 = e 195 ror $(25-11), y0 # y0 = e >> (25-11) 196 xor e, y0 # y0 = e ^ (e >> (25-11)) 201 ror $(11-6), y0 # y0 = (e >> (11-6)) ^ (e >> (25-6)) 205 xor e, y0 # y0 = e ^ (e >> (11-6)) ^ (e >> (25-6)) 207 ror $6, y0 # y0 = S1 = (e>>6) & (e>>11) ^ (e>>25) 212 add y0, y2 # y2 = S1 + CH 216 mov a, y0 # y0 = a 220 or c, y0 # y0 = a|c 225 and b, y0 # y0 = (a|c)&b 228 or y2, y0 # y0 = MAJ = (a|c)&b)|(a&c) 229 add y0, h # h = h + S1 + CH + k + w + S0 + MAJ 233 mov e, y0 # y0 = e 235 ror $(25-11), y0 # y0 = e >> (25-11) 237 xor e, y0 # y0 = e ^ (e >> (25-11)) 241 ror $(11-6), y0 # y0 = (e >> (11-6)) ^ (e >> (25-6)) 245 xor e, y0 # y0 = e ^ (e >> (11-6)) ^ (e >> (25-6)) 251 ror $6, y0 # y0 = S1 = (e>>6) & (e>>11) ^ (e>>25) 253 add y0, y2 # y2 = S1 + CH 257 mov a, y0 # y0 = a 261 or c, y0 # y0 = a|c 265 and b, y0 # y0 = (a|c)&b 269 or y2, y0 # y0 = MAJ = (a|c)&b)|(a&c) 270 add y0, h # h = h + S1 + CH + k + w + S0 + MAJ 274 mov e, y0 # y0 = e 275 ror $(25-11), y0 # y0 = e >> (25-11) 279 xor e, y0 # y0 = e ^ (e >> (25-11)) 281 ror $(11-6), y0 # y0 = (e >> (11-6)) ^ (e >> (25-6)) 286 xor e, y0 # y0 = e ^ (e >> (11-6)) ^ (e >> (25 291 ror $6, y0 # y0 = S1 = (e>>6) & (e>>11) ^ (e>>2 295 add y0, y2 # y2 = S1 + CH 298 mov a, y0 # y0 = a 302 or c, y0 # y0 = a|c 306 and b, y0 # y0 = (a|c)&b 308 or y2, y0 # y0 = MAJ = (a|c)&b)|(a&c) 309 add y0, h # h = h + S1 + CH + k + w + S0 + MAJ 317 mov e, y0 # y0 = e 318 ror $(25-11), y0 # y0 = e >> (25-11) 320 xor e, y0 # y0 = e ^ (e >> (25-11)) 324 ror $(11-6), y0 # y0 = (e >> (11-6)) ^ (e >> (25-6)) 326 xor e, y0 # y0 = e ^ (e >> (11-6)) ^ (e >> (25-6)) 330 ror $6, y0 # y0 = S1 = (e>>6) & (e>>11) ^ (e>>25) 332 add y0, y2 # y2 = S1 + CH 336 mov a, y0 # y0 = a 339 or c, y0 # y0 = a|c 342 and b, y0 # y0 = (a|c)&b 344 or y2, y0 # y0 = MAJ = (a|c)&b)|(a&c) 345 add y0, h # h = h + S1 + CH + k + w + S0 + MAJ
|
H A D | sha256-avx2-asm.S | 113 y0 = %r13d define 162 rorx $25, e, y0 # y0 = e >> 25 # S1A 171 xor y1, y0 # y0 = (e>>25) ^ (e>>11) # S1 177 xor y1, y0 # y0 = (e>>25) ^ (e>>11) ^ (e>>6) # S1 192 add y0, y2 # y2 = S1 + CH # -- 210 rorx $25, e, y0 # y0 = e >> 25 # S1A 220 xor y1, y0 # y0 = (e>>25) ^ (e>>11) # S1 225 xor y1, y0 # y0 = (e>>25) ^ (e>>11) ^ (e>>6) # S1 242 add y0, y2 # y2 = S1 + CH # -- 262 rorx $25, e, y0 # y0 = e >> 25 # S1A 273 xor y1, y0 # y0 = (e>>25) ^ (e>>11) # S1 282 xor y1, y0 # y0 = (e>>25) ^ (e>>11) ^ (e>>6) # S1 295 add y0, y2 # y2 = S1 + CH # -- 311 rorx $25, e, y0 # y0 = e >> 25 # S1A 321 xor y1, y0 # y0 = (e>>25) ^ (e>>11) # S1 332 xor y1, y0 # y0 = (e>>25) ^ (e>>11) ^ (e>>6) # S1 337 add y0, y2 # y2 = S1 + CH # -- 364 rorx $25, e, y0 # y0 = e >> 25 # S1A 368 xor y1, y0 # y0 = (e>>25) ^ (e>>11) # S1 372 xor y1, y0 # y0 = (e>>25) ^ (e>>11) ^ (e>>6) # S1 387 add y0, y2 # y2 = S1 + CH # -- 401 rorx $25, e, y0 # y0 = e >> 25 # S1A 405 xor y1, y0 # y0 = (e>>25) ^ (e>>11) # S1 410 xor y1, y0 # y0 = (e>>25) ^ (e>>11) ^ (e>>6) # S1 426 add y0, y2 # y2 = S1 + CH # -- 441 rorx $25, e, y0 # y0 = e >> 25 # S1A 445 xor y1, y0 # y0 = (e>>25) ^ (e>>11) # S1 450 xor y1, y0 # y0 = (e>>25) ^ (e>>11) ^ (e>>6) # S1 466 add y0, y2 # y2 = S1 + CH # -- 481 rorx $25, e, y0 # y0 = e >> 25 # S1A 485 xor y1, y0 # y0 = (e>>25) ^ (e>>11) # S1 490 xor y1, y0 # y0 = (e>>25) ^ (e>>11) ^ (e>>6) # S1 506 add y0, y2 # y2 = S1 + CH # --
|
H A D | sha512-avx2-asm.S | 95 y0 = %r13 define 186 rorx $41, e, y0 # y0 = e >> 41 # S1A 193 xor y1, y0 # y0 = (e>>41) ^ (e>>18) # S1 198 xor y1, y0 # y0 = (e>>41) ^ (e>>18) ^ (e>>14) # S1 211 add y0, y2 # y2 = S1 + CH # -- 248 rorx $41, e, y0 # y0 = e >> 41 # S1A 256 xor y1, y0 # y0 = (e>>41) ^ (e>>18) # S1 261 xor y1, y0 # y0 = (e>>41) ^ (e>>18) ^ (e>>14) # S1 275 add y0, y2 # y2 = S1 + CH # -- 306 rorx $41, e, y0 # y0 = e >> 41 # S1A 315 xor y1, y0 # y0 = (e>>41) ^ (e>>18) # S1 322 xor y1, y0 # y0 = (e>>41) ^ (e>>18) ^ (e>>14) # S1 332 add y0, y2 # y2 = S1 + CH # -- 363 rorx $41, e, y0 # y0 = e >> 41 # S1A 371 xor y1, y0 # y0 = (e>>41) ^ (e>>18) # S1 380 xor y1, y0 # y0 = (e>>41) ^ (e>>18) ^ (e>>14) # S1 384 add y0, y2 # y2 = S1 + CH # -- 410 rorx $41, e, y0 # y0 = e >> 41 # S1A 414 xor y1, y0 # y0 = (e>>41) ^ (e>>18) # S1 418 xor y1, y0 # y0 = (e>>41) ^ (e>>18) ^ (e>>14) # S1 433 add y0, y2 # y2 = S1 + CH # -- 447 rorx $41, e, y0 # y0 = e >> 41 # S1A 451 xor y1, y0 # y0 = (e>>41) ^ (e>>18) # S1 456 xor y1, y0 # y0 = (e>>41) ^ (e>>18) ^ (e>>14) # S1 471 add y0, y2 # y2 = S1 + CH # -- 485 rorx $41, e, y0 # y0 = e >> 41 # S1A 489 xor y1, y0 # y0 = (e>>41) ^ (e>>18) # S1 494 xor y1, y0 # y0 = (e>>41) ^ (e>>18) ^ (e>>14) # S1 509 add y0, y2 # y2 = S1 + CH # -- 523 rorx $41, e, y0 # y0 = e >> 41 # S1A 527 xor y1, y0 # y0 = (e>>41) ^ (e>>18) # S1 532 xor y1, y0 # y0 = (e>>41) ^ (e>>18) ^ (e>>14) # S1 547 add y0, y2 # y2 = S1 + CH # --
|
H A D | camellia-aesni-avx-asm_64.S | 211 #define two_roundsm16(x0, x1, x2, x3, x4, x5, x6, x7, y0, y1, y2, y3, y4, y5, \ 243 #define enc_rounds16(x0, x1, x2, x3, x4, x5, x6, x7, y0, y1, y2, y3, y4, y5, \ 245 two_roundsm16(x0, x1, x2, x3, x4, x5, x6, x7, y0, y1, y2, y3, y4, y5, \ 247 two_roundsm16(x0, x1, x2, x3, x4, x5, x6, x7, y0, y1, y2, y3, y4, y5, \ 249 two_roundsm16(x0, x1, x2, x3, x4, x5, x6, x7, y0, y1, y2, y3, y4, y5, \ 252 #define dec_rounds16(x0, x1, x2, x3, x4, x5, x6, x7, y0, y1, y2, y3, y4, y5, \ 254 two_roundsm16(x0, x1, x2, x3, x4, x5, x6, x7, y0, y1, y2, y3, y4, y5, \ 256 two_roundsm16(x0, x1, x2, x3, x4, x5, x6, x7, y0, y1, y2, y3, y4, y5, \ 258 two_roundsm16(x0, x1, x2, x3, x4, x5, x6, x7, y0, y1, y2, y3, y4, y5, \ 481 #define inpack16_pre(x0, x1, x2, x3, x4, x5, x6, x7, y0, y1, y2, y3, y4, y5, \ 493 vpxor 7 * 16(rio), x0, y0; \ 504 #define inpack16_post(x0, x1, x2, x3, x4, x5, x6, x7, y0, y1, y2, y3, y4, y5, \ 506 byteslice_16x16b(x0, x1, x2, x3, x4, x5, x6, x7, y0, y1, y2, y3, y4, \ 517 vmovdqu y0, 0 * 16(mem_cd); \ 527 #define outunpack16(x0, x1, x2, x3, x4, x5, x6, x7, y0, y1, y2, y3, y4, \ 529 byteslice_16x16b(y0, y4, x0, x4, y1, y5, x1, x5, y2, y6, x2, x6, y3, \ 544 vpxor x0, y0, y0; \ 554 #define write_output(x0, x1, x2, x3, x4, x5, x6, x7, y0, y1, y2, y3, y4, y5, \ 564 vmovdqu y0, 8 * 16(rio); \
|
H A D | camellia-aesni-avx2-asm_64.S | 250 #define two_roundsm32(x0, x1, x2, x3, x4, x5, x6, x7, y0, y1, y2, y3, y4, y5, \ 282 #define enc_rounds32(x0, x1, x2, x3, x4, x5, x6, x7, y0, y1, y2, y3, y4, y5, \ 284 two_roundsm32(x0, x1, x2, x3, x4, x5, x6, x7, y0, y1, y2, y3, y4, y5, \ 286 two_roundsm32(x0, x1, x2, x3, x4, x5, x6, x7, y0, y1, y2, y3, y4, y5, \ 288 two_roundsm32(x0, x1, x2, x3, x4, x5, x6, x7, y0, y1, y2, y3, y4, y5, \ 291 #define dec_rounds32(x0, x1, x2, x3, x4, x5, x6, x7, y0, y1, y2, y3, y4, y5, \ 293 two_roundsm32(x0, x1, x2, x3, x4, x5, x6, x7, y0, y1, y2, y3, y4, y5, \ 295 two_roundsm32(x0, x1, x2, x3, x4, x5, x6, x7, y0, y1, y2, y3, y4, y5, \ 297 two_roundsm32(x0, x1, x2, x3, x4, x5, x6, x7, y0, y1, y2, y3, y4, y5, \ 520 #define inpack32_pre(x0, x1, x2, x3, x4, x5, x6, x7, y0, y1, y2, y3, y4, y5, \ 532 vpxor 7 * 32(rio), x0, y0; \ 543 #define inpack32_post(x0, x1, x2, x3, x4, x5, x6, x7, y0, y1, y2, y3, y4, y5, \ 545 byteslice_16x16b_fast(x0, x1, x2, x3, x4, x5, x6, x7, y0, y1, y2, y3, \ 556 vmovdqu y0, 0 * 32(mem_cd); \ 566 #define outunpack32(x0, x1, x2, x3, x4, x5, x6, x7, y0, y1, y2, y3, y4, \ 568 byteslice_16x16b_fast(y0, y4, x0, x4, y1, y5, x1, x5, y2, y6, x2, x6, \ 583 vpxor x0, y0, y0; \ 593 #define write_output(x0, x1, x2, x3, x4, x5, x6, x7, y0, y1, y2, y3, y4, y5, \ 603 vmovdqu y0, 8 * 32(rio); \
|
/linux-4.1.27/include/uapi/linux/dvb/ |
H A D | osd.h | 34 OSD_Open, // (x0,y0,x1,y1,BitPerPixel[2/4/8](color&0x0F),mix[0..15](color&0xF0)) 49 OSD_SetColor, // (color,R{x0},G{y0},B{x1},opacity{y1}) 65 OSD_SetPixel, // (x0,y0,color) 68 OSD_GetPixel, // (x0,y0) 70 OSD_SetRow, // (x0,y0,x1,data) 73 OSD_SetBlock, // (x0,y0,x1,y1,increment{color},data) 74 // fills pixels x0,y0 through x1,y1 with the content of data[] 78 OSD_FillRow, // (x0,y0,x1,color) 81 OSD_FillBlock, // (x0,y0,x1,y1,color) 82 // fills pixels x0,y0 through x1,y1 with the color <col> 84 OSD_Line, // (x0,y0,x1,y1,color) 85 // draw a line from x0,y0 to x1,y1 with the color <col> 87 OSD_Query, // (x0,y0,x1,y1,xasp{color}}), yasp=11 94 OSD_Text, // (x0,y0,size,color,text) 96 OSD_MoveWindow, // move current window to (x0, y0) 103 int y0; member in struct:osd_cmd_s
|
/linux-4.1.27/arch/ia64/lib/ |
H A D | idiv64.S | 49 frcpa.s1 f11, p6 = f8, f9 // y0 = frcpa(b) 51 (p6) fmpy.s1 f7 = f8, f11 // q0 = a*y0 52 (p6) fnma.s1 f6 = f9, f11, f1 // e0 = -b*y0 + 1 61 (p6) fma.s1 f6 = f11, f6, f11 // y1 = y0*e0 + y0
|
H A D | idiv32.S | 59 frcpa.s1 f6, p6 = f8, f9 // y0 = frcpa(b) 61 (p6) fmpy.s1 f8 = f8, f6 // q0 = a*y0 62 (p6) fnma.s1 f6 = f9, f6, f1 // e0 = -b*y0 + 1
|
/linux-4.1.27/arch/s390/include/asm/ |
H A D | sfp-machine.h | 75 #define __FP_FRAC_ADD_3(r2,r1,r0,x2,x1,x0,y2,y1,y0) ({ \ 88 : "d" (y0), "i" (1) : "cc", "0" ); \ 101 #define __FP_FRAC_SUB_3(r2,r1,r0,x2,x1,x0,y2,y1,y0) ({ \ 114 : "d" (y0) : "cc", "0"); \ 127 #define __FP_FRAC_DEC_3(x2,x1,x0,y2,y1,y0) __FP_FRAC_SUB_3(x2,x1,x0,x2,x1,x0,y2,y1,y0)
|
/linux-4.1.27/firmware/dsp56k/ |
H A D | bootstrap.asm | 78 movep X:<<M_HRX,y0 84 load_P do y0,_load_P 88 load_X do y0,_load_X 92 load_Y do y0,_load_Y
|
/linux-4.1.27/arch/sparc/include/asm/ |
H A D | sfp-machine_32.h | 78 #define __FP_FRAC_ADD_3(r2,r1,r0,x2,x1,x0,y2,y1,y0) \ 90 "rI" ((USItype)(y0)) \ 93 #define __FP_FRAC_SUB_3(r2,r1,r0,x2,x1,x0,y2,y1,y0) \ 105 "rI" ((USItype)(y0)) \ 108 #define __FP_FRAC_ADD_4(r3,r2,r1,r0,x3,x2,x1,x0,y3,y2,y1,y0) \ 127 "rI" ((USItype)(y0)) \ 133 #define __FP_FRAC_SUB_4(r3,r2,r1,r0,x3,x2,x1,x0,y3,y2,y1,y0) \ 152 "rI" ((USItype)(y0)) \ 158 #define __FP_FRAC_DEC_3(x2,x1,x0,y2,y1,y0) __FP_FRAC_SUB_3(x2,x1,x0,x2,x1,x0,y2,y1,y0) 160 #define __FP_FRAC_DEC_4(x3,x2,x1,x0,y3,y2,y1,y0) __FP_FRAC_SUB_4(x3,x2,x1,x0,x3,x2,x1,x0,y3,y2,y1,y0)
|
/linux-4.1.27/drivers/input/touchscreen/ |
H A D | mc13783_ts.c | 74 int x0, x1, x2, y0, y1, y2; mc13783_ts_report_sample() local 84 y0 = priv->sample[3] & 0xfff; mc13783_ts_report_sample() 92 x0, x1, x2, y0, y1, y2, cr0, cr1); mc13783_ts_report_sample() 95 sort3(y0, y1, y2); mc13783_ts_report_sample() 101 y2 - y0 < sample_tolerance)) { mc13783_ts_report_sample()
|
/linux-4.1.27/drivers/media/pci/ttpci/ |
H A D | av7110_hw.c | 1007 static int OSDSetBlock(struct av7110 *av7110, int x0, int y0, OSDSetBlock() argument 1015 h = y1 - y0 + 1; OSDSetBlock() 1043 rc = BlitBitmap(av7110, x0, y0 + i * lpb); OSDSetBlock() 1051 rc = BlitBitmap(av7110, x0, y0 + bnum * lpb); OSDSetBlock() 1076 dc->x1 - dc->x0 + 1, dc->y1 - dc->y0 + 1); av7110_osd_cmd() 1080 ret = MoveWindowAbs(av7110, av7110->osdwin, dc->x0, dc->y0); av7110_osd_cmd() 1099 ret = OSDSetColor(av7110, dc->color, dc->x0, dc->y0, dc->x1, dc->y1); av7110_osd_cmd() 1125 dc->x0, dc->y0, 0, 0, dc->color); av7110_osd_cmd() 1128 dc->y1 = dc->y0; av7110_osd_cmd() 1131 ret = OSDSetBlock(av7110, dc->x0, dc->y0, dc->x1, dc->y1, dc->color, dc->data); av7110_osd_cmd() 1134 ret = DrawBlock(av7110, av7110->osdwin, dc->x0, dc->y0, av7110_osd_cmd() 1138 ret = DrawBlock(av7110, av7110->osdwin, dc->x0, dc->y0, av7110_osd_cmd() 1139 dc->x1 - dc->x0 + 1, dc->y1 - dc->y0 + 1, dc->color); av7110_osd_cmd() 1143 dc->x0, dc->y0, dc->x1 - dc->x0, dc->y1 - dc->y0, dc->color); av7110_osd_cmd() 1161 ret = WriteText(av7110, av7110->osdwin, dc->x0, dc->y0, textbuf); av7110_osd_cmd() 1173 ret = MoveWindowAbs(av7110, av7110->osdwin, dc->x0, dc->y0); av7110_osd_cmd() 1187 dc->x1 - dc->x0 + 1, dc->y1 - dc->y0 + 1); av7110_osd_cmd() 1191 ret = MoveWindowAbs(av7110, av7110->osdwin, dc->x0, dc->y0); av7110_osd_cmd()
|
/linux-4.1.27/include/math-emu/ |
H A D | op-4.h | 516 #define __FP_FRAC_ADD_3(r2,r1,r0,x2,x1,x0,y2,y1,y0) \ 519 r0 = x0 + y0; \ 530 #define __FP_FRAC_ADD_4(r3,r2,r1,r0,x3,x2,x1,x0,y3,y2,y1,y0) \ 533 r0 = x0 + y0; \ 548 #define __FP_FRAC_SUB_3(r2,r1,r0,x2,x1,x0,y2,y1,y0) \ 551 r0 = x0 - y0; \ 562 #define __FP_FRAC_SUB_4(r3,r2,r1,r0,x3,x2,x1,x0,y3,y2,y1,y0) \ 565 r0 = x0 - y0; \ 580 #define __FP_FRAC_DEC_3(x2,x1,x0,y2,y1,y0) \ 584 __FP_FRAC_SUB_3 (x2, x1, x0, _t2, _t1, _t0, y2, y1, y0); \ 589 #define __FP_FRAC_DEC_4(x3,x2,x1,x0,y3,y2,y1,y0) \ 593 __FP_FRAC_SUB_4 (x3,x2,x1,x0,_t3,_t2,_t1,_t0, y3,y2,y1,y0); \
|
/linux-4.1.27/drivers/gpu/drm/omapdrm/ |
H A D | tcm-sita.h | 87 void assign(struct tcm_area *a, u16 x0, u16 y0, u16 x1, u16 y1) assign() argument 90 a->p0.y = y0; assign()
|
H A D | tcm-sita.c | 58 static s32 is_area_free(struct tcm_area ***map, u16 x0, u16 y0, u16 w, u16 h); 60 static s32 update_candidate(struct tcm *tcm, u16 x0, u16 y0, u16 w, u16 h, 559 static s32 is_area_free(struct tcm_area ***map, u16 x0, u16 y0, u16 w, u16 h) is_area_free() argument 562 for (y = y0; y < y0 + h; y++) { is_area_free() 594 * @param x0, y0, w, h top, left, width, height of candidate area 602 static s32 update_candidate(struct tcm *tcm, u16 x0, u16 y0, u16 w, u16 h, update_candidate() argument 615 assign(&me.a, x0, y0, x0 + w - 1, y0 + h - 1); update_candidate()
|
H A D | omap_dmm_tiler.h | 32 u32 y0:8; member in struct:pat_area
|
H A D | omap_dmm_tiler.c | 212 int rows = (1 + area->y1 - area->y0); dmm_txn_append() 223 pat->area.y0 += engine->tcm->y_offset; dmm_txn_append() 317 .x0 = slice.p0.x, .y0 = slice.p0.y, fill()
|
/linux-4.1.27/arch/sh/include/asm/ |
H A D | switch_to_32.h | 23 "movs.l @r2+, y0\n\t" \ 44 "movs.l y0, @-r2\n\t" \
|
/linux-4.1.27/arch/sh/include/uapi/asm/ |
H A D | ptrace_32.h | 68 unsigned long y0; member in struct:pt_dspregs
|
/linux-4.1.27/drivers/gpu/drm/nouveau/dispnv04/ |
H A D | tvnv17.h | 117 static inline int interpolate(int y0, int y1, int y2, int x) interpolate() argument 119 return y1 + (x < 50 ? y1 - y0 : y2 - y1) * (x - 50) / 50; interpolate()
|
/linux-4.1.27/arch/m68k/lib/ |
H A D | mulsi3.S | 92 muluw sp@(8), d1 /* x1*y0 */
|
/linux-4.1.27/drivers/gpu/drm/i2c/ |
H A D | ch7006_priv.h | 158 static inline int interpolate(int y0, int y1, int y2, int x) interpolate() argument 160 return y1 + (x < 50 ? y1 - y0 : y2 - y1) * (x - 50) / 50; interpolate()
|
/linux-4.1.27/drivers/media/usb/gspca/ |
H A D | w996Xcf.c | 357 y0 = 0x0000, w9968cf_init() local 358 u0 = y0 + hw_bufsize / 2, w9968cf_init() 370 reg_w(sd, 0x20, y0 & 0xffff); /* Y buf.0, low */ w9968cf_init() 371 reg_w(sd, 0x21, y0 >> 16); /* Y buf.0, high */ w9968cf_init()
|
/linux-4.1.27/drivers/video/fbdev/ |
H A D | cg6.c | 199 u32 x0, y0, z0, color0; member in struct:cg6_fbc 373 sbus_writel(area->sy, &fbc->y0); cg6_copyarea() 430 sbus_writel(y, &fbc->y0); cg6_imageblit() 447 sbus_writel(y, &fbc->y0); cg6_imageblit()
|
H A D | hpfb.c | 125 static void topcat_blit(int x0, int y0, int x1, int y1, int w, int h, int rr) topcat_blit() argument 137 out_be16(fb_regs + SOURCE_Y, y0); topcat_blit()
|
/linux-4.1.27/arch/arm/crypto/ |
H A D | bsaes-armv7.pl | 171 #;* Mul_GF4: Input x0-x1,y0-y1 Output x0-x1 Temp t0 (8) * 173 my ($x0,$x1,$y0,$y1,$t0,$t1)=@_; 175 veor $t0, $y0, $y1 178 vand $t1, $x1, $y0 187 my ($x0,$x1,$y0,$y1,$t0)=@_; 189 veor $t0, $y0, $y1 192 vand $x1, $x1, $y0 201 my ($x0,$x1,$y0,$y1,$t0, 204 veor $t0, $y0, $y1 210 vand $x1, $x1, $y0
|
/linux-4.1.27/drivers/input/mouse/ |
H A D | elantech.c | 274 * byte 3: y7 y6 y5 y4 y3 y2 y1 y0 elantech_report_absolute_v1() 353 * byte 5: y7 y6 y5 y4 y3 y2 y1 y0 elantech_report_absolute_v2() 416 * byte 5: y7 y6 y5 y4 y3 y2 y1 y0 elantech_report_trackpoint() 420 * x7..x0 and y7..y0 the lower bits. elantech_report_trackpoint() 487 * byte 5: y7 y6 y5 y4 y3 y2 y1 y0 elantech_report_absolute_v3()
|
H A D | hgpk.c | 283 * byte 2: y7 y6 y5 y4 y3 y2 y1 y0 299 * byte 4: 0 y6 y5 y4 y3 y2 y1 y0
|
/linux-4.1.27/arch/tile/kernel/ |
H A D | unaligned.c | 154 * Test if a bundle's y0 and y1 pipelines are both nop or fnop.
|
/linux-4.1.27/arch/powerpc/include/asm/ |
H A D | io.h | 145 __asm__ __volatile__("sync;"#insn" %1,%y0" \
|