/external/llvm/lib/CodeGen/SelectionDAG/ |
DAGCombiner.cpp | 290 /// shift amount - before type legalization these can be huge. 811 /// PromoteIntShiftOp - Promote the specified integer shift operation if the [all...] |
TargetLowering.cpp | [all...] |
SelectionDAGISel.cpp | [all...] |
SelectionDAG.cpp | [all...] |
LegalizeDAG.cpp | [all...] |
/external/llvm/lib/Target/ARM/AsmParser/ |
ARMAsmParser.cpp | 229 } Shift; 280 Shift = o.Shift; 474 return false; // No shift with offset reg allowed 592 ARM_AM::getSORegOpc(Shift.ShiftTy, 0))); 853 Op->Shift.ShiftTy = ShTy; 901 "Cannot have shift amount without shifted register offset!"); 983 OS << " offset-shift-type:" << getMemShiftType(); 984 OS << " offset-shift-amount:" << *getMemShiftAmount(); [all...] |
/external/libvpx/vp8/common/arm/neon/ |
buildintrapredictorsmby_neon.asm | 50 ; compute shift and jump 120 add r7, r7, #3 ; Shift 333 ; compute shift and jump 403 add r7, r7, #3 ; Shift
|
/external/llvm/include/llvm/CodeGen/ |
ScheduleDAG.h | 677 /// by means of the Shift method. 680 /// Shift - reassign topological indexes for the nodes in the DAG 682 void Shift(BitVector& Visited, int LowerBound, int UpperBound);
|
/external/llvm/lib/Target/MSP430/ |
MSP430ISelLowering.cpp | 602 assert(0 && "Invalid shift opcode!"); 617 // FIXME: for some shift amounts this might be done better! 791 bool Shift = false; 809 Shift = true; 814 Shift = true; 824 if (Shift) [all...] |
/external/libvpx/vp8/encoder/arm/neon/ |
variance_neon.asm | 82 ;sum is in [-255x256, 255x256]. sumxsum is 32-bit. Shift to right should
|
/frameworks/base/media/libeffects/lvm/wrapper/Bundle/ |
EffectBundle.cpp | [all...] |
/external/llvm/lib/Transforms/InstCombine/ |
InstCombineCasts.cpp | 43 // This is a value scaled by '1 << the shift amt'. 375 // If we are truncating the result of this SHL, and if it's a shift of a 474 // If the shift amount is larger than the size of A, then the result is 479 // Since we're doing an lshr and a zero extend, and know that the shift 480 // amount is smaller than ASize, it is always safe to do the shift in A's 482 Value *Shift = Builder->CreateLShr(A, Cst->getZExtValue()); 483 Shift->takeName(Src); 484 return CastInst::CreateIntegerCast(Shift, CI.getType(), false); 505 // to an integer, then shift the bit to the appropriate place and then 568 // Insert the shift to put the result in the low bit [all...] |
/external/libffi/src/mips/ |
n32.S | 218 # Shift the return type flag over
|
/external/valgrind/main/VEX/priv/ |
host_arm_defs.h | 139 UInt shift; /* 0, 1 2 or 3 */ member in struct:__anon11739::__anon11740::__anon11742 146 extern ARMAMode1* ARMAMode1_RRS ( HReg base, HReg index, UInt shift ); 632 } Shift;
|
/external/chromium/chrome/browser/resources/ |
keyboard_overlay.js | 43 glyph_shift: 'shift', 49 shift: 'shift', 54 'SHIFT': 'modifier-shift', 60 '2A': 'is-shift', 125 16: 'SHIFT', 128 91: 'ALT', // left ALT pressed with SHIFT 129 92: 'ALT', // right ALT pressed with SHIFT 132 var isPressed = {'SHIFT': e.shiftKey, 'CTRL': e.ctrlKey, 'ALT': e.altKey} [all...] |
/external/v8/test/mjsunit/ |
array-functions-prototype-misc.js | 29 * @fileoverview Test splice, shift, unshift, slice and join on small 86 return array.shift(); 120 return Array.prototype.shift.call(array); 254 // Shift.
|
unicode-test.js | [all...] |
/external/webkit/Source/WebCore/inspector/front-end/ |
ScriptsPanel.js | [all...] |
TextViewer.js | 262 this._shortcuts[WebInspector.KeyboardShortcut.makeKey("z", modifiers.Shift | modifiers.CtrlOrMeta)] = handleRedo; 267 this._shortcuts[WebInspector.KeyboardShortcut.makeKey(keys.Tab.code, modifiers.Shift)] = handleShiftTabKey; [all...] |
ConsoleView.js | 505 shortcut.shortcutToString(shortcut.Keys.Tab, shortcut.Modifiers.Shift) [all...] |
inspector.js | 550 InspectorBackend.dispatch(messagesToDispatch.shift()); 680 shortcut.shortcutToString("g", shortcut.Modifiers.Meta | shortcut.Modifiers.Shift) [all...] |
/external/chromium/chrome/browser/resources/bookmark_manager/js/ |
main.js | [all...] |
/external/clang/lib/Parse/ |
ParseExpr.cpp | 55 return prec::Shift; 82 case tok::lessless: return prec::Shift; 123 /// shift-expression: [C99 6.5.7] 125 /// shift-expression '<<' additive-expression 126 /// shift-expression '>>' additive-expression 129 /// shift-expression 130 /// relational-expression '<' shift-expression 131 /// relational-expression '>' shift-expression 132 /// relational-expression '<=' shift-expression 133 /// relational-expression '>=' shift-expressio [all...] |
/external/clang/include/clang/Parse/ |
Parser.h | 65 Shift = 11, // <<, >> [all...] |
/external/llvm/lib/Target/ARM/ |
ARMISelDAGToDAG.cpp | 91 bool isShifterOpProfitable(const SDValue &Shift, 357 bool ARMDAGToDAGISel::isShifterOpProfitable(const SDValue &Shift, 362 if (Shift.hasOneUse()) 499 // Check to see if the RHS of the shift is a constant, if not, we can't fold 520 // Check to see if the RHS of the shift is a constant, if not, we can't 640 // Check to see if the RHS of the shift is a constant, if not, we can't fold 661 // Check to see if the RHS of the shift is a constant, if not, we can't 707 // Check to see if the RHS of the shift is a constant, if not, we can't fold [all...] |