Lines Matching refs:eax
51 movl TERM_SIZE,%eax
53 addl %eax,%edi
59 xor %eax,%eax
60 movl %eax,SUM_LS
68 xor %eax,%eax
69 movl %eax,ACCUM_MS
70 movl %eax,ACCUM_MIDDLE
72 movl SUM_MIDDLE,%eax
76 movl SUM_MIDDLE,%eax
78 addl %eax,ACCUM_LS
82 movl SUM_MS,%eax
84 addl %eax,ACCUM_LS
88 movl SUM_MS,%eax
90 addl %eax,ACCUM_MIDDLE
96 movl (%esi),%eax
97 addl %eax,ACCUM_MIDDLE
98 movl 4(%esi),%eax
99 adcl %eax,ACCUM_MS /* This could overflow too */
107 movl ACCUM_LS,%eax
108 addl (%edi),%eax /* term ls long */
109 movl %eax,SUM_LS
110 movl ACCUM_MIDDLE,%eax
111 adcl (%edi),%eax /* term ls long */
112 movl %eax,SUM_MIDDLE
113 movl ACCUM_MS,%eax
114 adcl 4(%edi),%eax /* term ms long */
115 movl %eax,SUM_MS
125 movl SUM_LS,%eax
126 addl %eax,(%edi)
127 movl SUM_MIDDLE,%eax
128 adcl %eax,4(%edi)
129 movl SUM_MS,%eax
130 adcl %eax,8(%edi)