HomeSort by relevance Sort by last modified time
    Searched refs:Shift (Results 151 - 175 of 445) sorted by null

1 2 3 4 5 67 8 91011>>

  /external/swiftshader/third_party/subzero/src/
IceTypes.cpp 148 int8_t Shift = typeWidthInBytesLog2(Ty);
149 return (Shift < 0) ? 0 : 1 << Shift;
IceTargetLoweringX8632.cpp 184 uint16_t Shift = 0;
189 Shift = Mem->getShift();
197 Func, Mem->getType(), RebasePtrR, Mem->getOffset(), T, Shift,
337 Addr->Shift = 0;
IceTargetLoweringX8664.cpp 349 uint16_t Shift = 0;
378 Shift = Mem->getShift();
404 if (Shift == 0 && isAssignedToRspOrRbp(Index) && ZeroReg == RebasePtr) {
408 Shift = Mem->getShift();
478 if (Shift == 0) {
484 Func, Mem->getType(), Base, Offset, Index, Shift,
489 Shift = 0;
495 Func, Mem->getType(), ZeroReg, Offset, T, Shift,
566 Addr->Shift = 0;
  /device/linaro/bootloader/edk2/AppPkg/Applications/Sockets/WebServer/
HTTP.c 1190 INT32 Shift;
1201 Shift = (( Bits + 3 ) & ( ~3 )) - 4;
1202 while ( 0 <= Shift ) {
1206 Digit = (UINT32)(( Value >> Shift ) & 0xf );
1220 // Set the next shift
1222 Shift -= 4;
1250 INT32 Shift;
1262 Shift = 60;
1267 Digit = (UINT32)(( Value >> Shift ) & 0xf );
1275 if (( 0 != Digit ) || bDisplayZeros || ( 0 == Shift )) {
    [all...]
  /external/llvm/lib/Analysis/
BlockFrequencyInfoImpl.cpp 185 static uint64_t shiftRightAndRound(uint64_t N, int Shift) {
186 assert(Shift >= 0);
187 assert(Shift < 64);
188 if (!Shift)
190 return (N >> Shift) + (UINT64_C(1) & N >> (Shift - 1));
209 // Determine how much to shift right so that the total fits into 32-bits.
211 // If we shift at all, shift by 1 extra. Otherwise, the lower limit of 1
213 int Shift = 0
    [all...]
  /external/vixl/src/aarch32/
operands-aarch32.h 47 // <Rm>, <shift> <#amount> - immediate shifted register
48 // <Rm>, <shift> <Rs> - register shifted register
82 // rm, <shift>
84 // <shift> is RRX
85 Operand(Register rm, Shift shift)
86 : imm_(0), rm_(rm), shift_(shift), amount_(0), rs_(NoReg) {
91 // rm, <shift> #<amount>
93 // <shift> is one of {LSL, LSR, ASR, ROR}, and
95 Operand(Register rm, Shift shift, uint32_t amount
    [all...]
instructions-aarch32.h     [all...]
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Compatibility/Fv2OnFvThunk/
Fv2OnFvThunk.c     [all...]
  /external/llvm/lib/ExecutionEngine/RuntimeDyld/Targets/
RuntimeDyldMachOARM.h 47 // Now we've got the shifted immediate, shift by 2, sign extend and ret.
274 unsigned Shift = (HalfDiffKindBits & 0x1) ? 16 : 0;
275 uint32_t FullImmVal = (Immediate << Shift) | (OtherHalf << (16 - Shift));
  /external/llvm/lib/IR/
AutoUpgrade.cpp 426 Value *Op, unsigned Shift) {
437 // If shift is less than 16, emit a shuffle to move the bytes. Otherwise,
439 if (Shift < 16) {
444 unsigned Idx = NumElts + i - Shift;
460 unsigned Shift) {
471 // If shift is less than 16, emit a shuffle to move the bytes. Otherwise,
473 if (Shift < 16) {
478 unsigned Idx = i + Shift;
523 Value *Op0, Value *Op1, Value *Shift,
525 unsigned ShiftVal = cast<llvm::ConstantInt>(Shift)->getZExtValue()
    [all...]
  /external/tensorflow/tensorflow/python/client/
notebook.py 22 Press "Shift+Enter" to execute a cell
  /frameworks/av/media/libeffects/lvm/lib/Common/src/
LVC_Mixer_Private.h 43 LVM_INT32 Shift; /* Left Shift for Integer part of Gain */
LVC_MixSoft_1St_2i_D16C31_SAT.c 258 TargetGain=pInstance1->Target>>(16-pInstance1->Shift); // TargetGain in Q16.15 format
272 TargetGain=pInstance2->Target>>(16-pInstance2->Shift); // TargetGain in Q16.15 format
  /external/pdfium/fxjs/xfa/
cjx_eventpseudomodel.cpp 129 void CJX_EventPseudoModel::shift(CFXJSE_Value* pValue, function in class:CJX_EventPseudoModel
132 Property(pValue, XFA_Event::Shift, bSetting);
242 case XFA_Event::Shift:
  /external/swiftshader/third_party/LLVM/lib/Transforms/InstCombine/
InstCombineShifts.cpp 26 // See if we can fold away this shift.
40 // X shift (A srem B) -> X shift (A and B-1) iff B is a power of 2.
77 // If this is the opposite shift, we can directly reuse the input of the shift
79 // the value which means that we don't care if the shift has multiple uses.
80 // TODO: Handle opposite shift by exact value.
116 // We can often fold the shift into shifts-by-a-constant.
140 // We can often fold the shift into shifts-by-a-constant.
219 // If this is oversized composite shift, then unsigned shifts get 0
    [all...]
  /external/vixl/src/aarch64/
operands-aarch64.h 742 // rm, {<shift> #<shift_amount>}
743 // where <shift> is one of {LSL, LSR, ASR, ROR}.
748 Shift shift = LSL,
762 // This returns an LSL shift (<= 4) operand as an equivalent extend operand,
785 Shift GetShift() const {
789 VIXL_DEPRECATED("GetShift", Shift shift() const) { return GetShift(); }
808 Shift shift_;
824 Shift shift = LSL
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4393122/include/llvm/Support/
LowLevelTypeImpl.h 246 static uint64_t maskAndShift(uint64_t Val, uint64_t Mask, uint8_t Shift) {
248 return (Val & Mask) << Shift;
  /prebuilts/clang/host/darwin-x86/clang-4479392/include/llvm/Support/
LowLevelTypeImpl.h 246 static uint64_t maskAndShift(uint64_t Val, uint64_t Mask, uint8_t Shift) {
248 return (Val & Mask) << Shift;
  /prebuilts/clang/host/darwin-x86/clang-4579689/include/llvm/Support/
LowLevelTypeImpl.h 246 static uint64_t maskAndShift(uint64_t Val, uint64_t Mask, uint8_t Shift) {
248 return (Val & Mask) << Shift;
  /prebuilts/clang/host/darwin-x86/clang-4630689/include/llvm/Support/
LowLevelTypeImpl.h 246 static uint64_t maskAndShift(uint64_t Val, uint64_t Mask, uint8_t Shift) {
248 return (Val & Mask) << Shift;
  /prebuilts/clang/host/darwin-x86/clang-4639204/include/llvm/Support/
LowLevelTypeImpl.h 246 static uint64_t maskAndShift(uint64_t Val, uint64_t Mask, uint8_t Shift) {
248 return (Val & Mask) << Shift;
  /prebuilts/clang/host/darwin-x86/clang-4691093/include/llvm/Support/
LowLevelTypeImpl.h 246 static uint64_t maskAndShift(uint64_t Val, uint64_t Mask, uint8_t Shift) {
248 return (Val & Mask) << Shift;
  /prebuilts/clang/host/linux-x86/clang-4393122/include/llvm/Support/
LowLevelTypeImpl.h 246 static uint64_t maskAndShift(uint64_t Val, uint64_t Mask, uint8_t Shift) {
248 return (Val & Mask) << Shift;
  /prebuilts/clang/host/linux-x86/clang-4479392/include/llvm/Support/
LowLevelTypeImpl.h 246 static uint64_t maskAndShift(uint64_t Val, uint64_t Mask, uint8_t Shift) {
248 return (Val & Mask) << Shift;
  /prebuilts/clang/host/linux-x86/clang-4579689/include/llvm/Support/
LowLevelTypeImpl.h 246 static uint64_t maskAndShift(uint64_t Val, uint64_t Mask, uint8_t Shift) {
248 return (Val & Mask) << Shift;

Completed in 1207 milliseconds

1 2 3 4 5 67 8 91011>>