Searched refs:oldC (Results 1 – 6 of 6) sorted by relevance
/external/valgrind/main/VEX/priv/ |
D | guest_arm_helpers.c | 143 UInt oldC = cc_dep3; in armg_calculate_flag_n() local 144 vassert((oldC & ~1) == 0); in armg_calculate_flag_n() 145 UInt res = argL + argR + oldC; in armg_calculate_flag_n() 153 UInt oldC = cc_dep3; in armg_calculate_flag_n() local 154 vassert((oldC & ~1) == 0); in armg_calculate_flag_n() 155 UInt res = argL - argR - (oldC ^ 1); in armg_calculate_flag_n() 223 UInt oldC = cc_dep3; in armg_calculate_flag_z() local 224 vassert((oldC & ~1) == 0); in armg_calculate_flag_z() 225 UInt res = argL + argR + oldC; in armg_calculate_flag_z() 233 UInt oldC = cc_dep3; in armg_calculate_flag_z() local [all …]
|
D | guest_arm_toIR.c | 1764 IRTemp oldC = newTemp(Ity_I32); in compute_result_and_C_after_LSL_by_reg() local 1765 assign(oldC, mk_armg_calculate_flag_c() ); in compute_result_and_C_after_LSL_by_reg() 1790 mkexpr(oldC) in compute_result_and_C_after_LSL_by_reg() 1876 IRTemp oldC = newTemp(Ity_I32); in compute_result_and_C_after_LSR_by_reg() local 1877 assign(oldC, mk_armg_calculate_flag_c() ); in compute_result_and_C_after_LSR_by_reg() 1902 mkexpr(oldC) in compute_result_and_C_after_LSR_by_reg() 1988 IRTemp oldC = newTemp(Ity_I32); in compute_result_and_C_after_ASR_by_reg() local 1989 assign(oldC, mk_armg_calculate_flag_c() ); in compute_result_and_C_after_ASR_by_reg() 2020 mkexpr(oldC) in compute_result_and_C_after_ASR_by_reg() 2058 IRTemp oldC = newTemp(Ity_I32); in compute_result_and_C_after_ROR_by_reg() local [all …]
|
D | guest_x86_helpers.c | 193 Int argL, argR, oldC, res; \ 194 oldC = CC_NDEP & X86G_CC_MASK_C; \ 196 argR = CC_DEP2 ^ oldC; \ 197 res = (argL + argR) + oldC; \ 198 if (oldC) \ 218 Int argL, argR, oldC, res; \ 219 oldC = CC_NDEP & X86G_CC_MASK_C; \ 221 argR = CC_DEP2 ^ oldC; \ 222 res = (argL - argR) - oldC; \ 223 if (oldC) \
|
D | guest_amd64_helpers.c | 235 Long argL, argR, oldC, res; \ 236 oldC = CC_NDEP & AMD64G_CC_MASK_C; \ 238 argR = CC_DEP2 ^ oldC; \ 239 res = (argL + argR) + oldC; \ 240 if (oldC) \ 260 Long argL, argR, oldC, res; \ 261 oldC = CC_NDEP & AMD64G_CC_MASK_C; \ 263 argR = CC_DEP2 ^ oldC; \ 264 res = (argL - argR) - oldC; \ 265 if (oldC) \
|
/external/webkit/Source/JavaScriptCore/wtf/text/ |
D | StringImpl.cpp | 774 PassRefPtr<StringImpl> StringImpl::replace(UChar oldC, UChar newC) in replace() argument 776 if (oldC == newC) in replace() 780 if (m_data[i] == oldC) in replace() 790 if (ch == oldC) in replace()
|
/external/clang/tools/libclang/ |
D | CIndex.cpp | 5134 CXCursor &oldC = Annotated[rawEncoding]; in Visit() local 5135 if (!clang_isPreprocessing(oldC.kind)) in Visit() 5136 oldC = cursor; in Visit()
|