Lines Matching refs:res
9 unsigned char res; in btsl_mem() local
13 : "=m" (*base), "=q" (res) in btsl_mem()
18 return res; in btsl_mem()
23 unsigned char res; in btrl_mem() local
27 : "=m" (*base), "=q" (res) in btrl_mem()
29 return res; in btrl_mem()
34 unsigned char res; in btcl_mem() local
38 : "=m" (*base), "=q" (res) in btcl_mem()
40 return res; in btcl_mem()
45 unsigned char res; in btl_mem() local
49 : "=m" (*base), "=q" (res) in btl_mem()
52 return res; in btl_mem()
61 unsigned char res; in btsl_reg() local
68 : "=q" (res), "=r" (reg_out) in btsl_reg()
72 return res; in btsl_reg()
79 unsigned char res; in btrl_reg() local
86 : "=q" (res), "=r" (reg_out) in btrl_reg()
90 return res; in btrl_reg()
97 unsigned char res; in btcl_reg() local
104 : "=q" (res), "=r" (reg_out) in btcl_reg()
108 return res; in btcl_reg()
115 unsigned char res; in btl_reg() local
122 : "=q" (res), "=r" (reg_out) in btl_reg()
126 return res; in btl_reg()
146 UInt carrydep, c, res; in main() local
173 res = 0; in main()
177 res = rol1(res) ^ (UInt)ch; in main()
180 printf("MEM-L: final res 0x%x, carrydep 0x%x\n", res, carrydep); in main()