Lines Matching refs:dst
134 target_ulong dst, v; in helper_taddcctv() local
141 dst = src1 + src2; in helper_taddcctv()
144 v = ~(src1 ^ src2) & (src1 ^ dst); in helper_taddcctv()
151 env->cc_N = dst; in helper_taddcctv()
152 env->icc_Z = dst; in helper_taddcctv()
154 env->xcc_Z = dst; in helper_taddcctv()
155 env->icc_C = dst ^ src1 ^ src2; in helper_taddcctv()
156 env->xcc_C = dst < src1; in helper_taddcctv()
158 env->icc_C = dst < src1; in helper_taddcctv()
161 return dst; in helper_taddcctv()
170 target_ulong dst, v; in helper_tsubcctv() local
177 dst = src1 - src2; in helper_tsubcctv()
180 v = (src1 ^ src2) & (src1 ^ dst); in helper_tsubcctv()
187 env->cc_N = dst; in helper_tsubcctv()
188 env->icc_Z = dst; in helper_tsubcctv()
190 env->xcc_Z = dst; in helper_tsubcctv()
191 env->icc_C = dst ^ src1 ^ src2; in helper_tsubcctv()
197 return dst; in helper_tsubcctv()