HomeSort by relevance Sort by last modified time
    Searched refs:carry_out (Results 1 - 6 of 6) sorted by null

  /external/lldb/source/Plugins/Process/Utility/
ARMUtils.h 95 static inline uint32_t LSL_C(const uint32_t value, const uint32_t amount, uint32_t &carry_out, bool *success)
102 carry_out = amount <= 32 ? Bit32(value, 32 - amount) : 0;
119 static inline uint32_t LSR_C(const uint32_t value, const uint32_t amount, uint32_t &carry_out, bool *success)
126 carry_out = amount <= 32 ? Bit32(value, amount - 1) : 0;
143 static inline uint32_t ASR_C(const uint32_t value, const uint32_t amount, uint32_t &carry_out, bool *success)
153 carry_out = Bit32(value, amount - 1);
159 carry_out = (negative ? 1 : 0);
177 static inline uint32_t ROR_C(const uint32_t value, const uint32_t amount, uint32_t &carry_out, bool *success)
186 carry_out = Bit32(value, 31);
203 static inline uint32_t RRX_C(const uint32_t value, const uint32_t carry_in, uint32_t &carry_out, bool *success
312 uint32_t carry_out; local
360 uint32_t carry_out; local
    [all...]
  /external/chromium_org/v8/src/arm/
simulator-arm.cc     [all...]
simulator-arm.h 273 int32_t GetShiftRm(Instruction* instr, bool* carry_out);
274 int32_t GetImm(Instruction* instr, bool* carry_out);
  /external/chromium_org/third_party/yasm/source/patched-yasm/libyasm/
bitvect.c 2314 boolean carry_out = FALSE; local
2342 boolean carry_out = FALSE; local
2373 boolean carry_out = carry_in; local
2399 boolean carry_out = carry_in; local
    [all...]
  /external/lldb/source/Plugins/Instruction/ARM/
EmulateInstructionARM.cpp 2469 uint32_t carry_out; local
13260 uint8_t carry_out; local
    [all...]
EmulateInstructionARM.h 235 uint8_t carry_out; member in struct:lldb_private::EmulateInstructionARM::__anon4834

Completed in 94 milliseconds