HomeSort by relevance Sort by last modified time
    Searched refs:Shift (Results 26 - 50 of 77) sorted by null

12 3 4

  /external/chromium/third_party/libjingle/source/talk/base/
bytebuffer.h 67 void Shift(size_t size);
bytebuffer.cc 202 void ByteBuffer::Shift(size_t size) {
  /frameworks/base/media/libeffects/lvm/lib/Common/src/
LVC_Mixer_Private.h 34 LVM_INT32 Shift; /* Left Shift for Integer part of Gain */
  /external/llvm/lib/Target/CellSPU/
SPUISelDAGToDAG.cpp 771 // Take care of the additional shift, if present:
772 SDValue shift = CurDAG->getTargetConstant(shift_amt, MVT::i32); local
779 shift);
    [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstCombinePHI.cpp 417 // Can fold binop, compare or shift here if the RHS is a constant,
558 unsigned Shift; // The amount shifted.
562 : PHIId(pn), Shift(Sh), Inst(User) {}
567 if (Shift < RHS.Shift) return true;
568 if (Shift > RHS.Shift) return false;
576 unsigned Shift; // The amount shifted.
580 : PN(pn), Shift(Sh), Width(Ty->getPrimitiveSizeInBits()) {}
584 : PN(pn), Shift(Sh), Width(0) {
    [all...]
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...]
InstCombineCompares.cpp     [all...]
  /external/llvm/lib/Target/PowerPC/
PPCISelDAGToDAG.cpp 85 /// isRotateAndMask - Returns true if Mask and Shift can be folded into a
339 unsigned Shift = 32;
343 !isInt32Immediate(N->getOperand(1).getNode(), Shift) || (Shift > 31))
347 // apply shift left to mask if it comes first
348 if (isShiftMask) Mask = Mask << Shift;
349 // determine which bits are made indeterminant by shift
350 Indeterminant = ~(0xFFFFFFFFu << Shift);
352 // apply shift right to mask if it comes first
353 if (isShiftMask) Mask = Mask >> Shift;
    [all...]
  /external/chromium/net/server/
http_server.h 66 void Shift(int num_bytes);
http_server.cc 205 void HttpServer::Connection::Shift(int num_bytes) {
385 connection->Shift(pos);
408 connection->Shift(pos);
414 connection->Shift(pos);
  /external/webkit/Source/WebCore/inspector/front-end/
KeyboardShortcut.js 40 Shift: 1,
109 modifiers |= WebInspector.KeyboardShortcut.Modifiers.Shift;
163 if (modifiers & WebInspector.KeyboardShortcut.Modifiers.Shift)
164 res += isMac ? shiftKey : "<Shift> + ";
StylesSidebarPane.js 537 shortcut.shortcutToString(shortcut.Keys.Tab, shortcut.Modifiers.Shift)
546 shortcut.shortcutToString(shortcut.Keys.Up, shortcut.Modifiers.Shift),
547 shortcut.shortcutToString(shortcut.Keys.Down, shortcut.Modifiers.Shift)
556 shortcut.shortcutToString(shortcut.Keys.PageUp, shortcut.Modifiers.Shift),
557 shortcut.shortcutToString(shortcut.Keys.PageDown, shortcut.Modifiers.Shift)
    [all...]
  /frameworks/base/media/libstagefright/codecs/on2/h264dec/omxdl/arm_neon/vc/m4p10/src/
omxVCM4P10_TransformDequantLumaDCFromPair_s.s 59 Shift RN 4
141 LDRSB Shift, [pQPDivTable, QP] ;// ARM CODE: Shift = pQPDivTable[QP]
147 LSL Scale, Scale, Shift ;// ARM CODE: Scale = Scale << Shift
174 ;// Both the cases i.e., Shift>=0 and Shift<0 cases are covered together
175 ;// We do not subtract 2 from Shift as in C reference, instead perform a
176 ;// Scale << Shift once in the beginning and do a right shift by a
    [all...]
  /frameworks/base/media/libstagefright/codecs/on2/h264dec/omxdl/arm11/vc/m4p10/src/
omxVCM4P10_TransformDequantLumaDCFromPair_s.s 119 Shift RN 10
326 LDRSB Shift, [pQPDivTable, QP] ;// Shift = pQPDivTable[QP]
336 ;// Both the cases i.e., Shift>=0 and Shift<0 cases are covered together
337 ;// We do not subtract 2 from Shift as in C reference, instead perform a
338 ;// Scale << Shift once in the beginning and do a right shift by a
347 LSL Scale, Scale, Shift ;// Scale = Scale << Shift
    [all...]
  /external/chromium/third_party/libjingle/source/talk/examples/login/
xmppsocket.cc 96 buffer_.Shift(written);
157 buffer_.Shift(written);
  /external/llvm/lib/Transforms/Scalar/
ScalarReplAggregates.cpp 735 // full alloca type, we need to do a shift to get the right bits.
794 // Convert the stored type to the actual type, shift it left to insert
    [all...]
  /external/llvm/lib/Archive/
ArchiveReader.cpp 24 unsigned Shift = 0;
30 Result |= (unsigned)((*At++) & 0x7F) << Shift;
31 Shift += 7;
  /external/v8/src/
fixed-dtoa.cc 62 void Shift(int shift_amount) {
270 fractionals128.Shift(-exponent - 64);
  /external/llvm/lib/Target/X86/
X86ISelDAGToDAG.cpp     [all...]
  /external/bison/lib/
hash.c 397 # define ROTATE_LEFT(Value, Shift) \
398 ((Value) << (Shift) | (Value) >> ((sizeof (size_t) * CHAR_BIT) - (Shift)))
  /frameworks/base/media/libeffects/lvm/lib/Common/lib/
BIQUAD.h 76 /*** First order coefficients with Shift*****************************************************/
82 LVM_INT16 Shift; /* Shift */
  /frameworks/base/media/libeffects/lvm/lib/StereoWidening/src/
LVCS_BypassMix.c 53 /* The overall gain is corrected by a combination of a shift with saturation and a */
55 /* and also corrects for any excess gain in the shift. */
128 * Setup the output gain shift
130 pConfig->Output_Shift = pOutputGainTable[Offset].Shift;
154 * Apply the gain correction and shift, note the result is in Q3.13 format
233 * Apply output gain correction shift
  /external/llvm/lib/CodeGen/
ScheduleDAG.cpp 432 /// the nodes reachable from Y, and then shifts them using Shift to lie
502 Shift(Visited, LowerBound, UpperBound);
515 /// topological indexes by means of the Shift method.
540 /// Shift - Renumber the nodes so that the topological ordering is
542 void ScheduleDAGTopologicalSort::Shift(BitVector& Visited, int LowerBound,
545 int shift = 0;
555 shift = shift + 1;
557 Allocate(w, i - shift);
562 Allocate(L[j], i - shift);
    [all...]
  /external/v8/test/mjsunit/
array-functions-prototype.js 55 // shift.
61 // Shift away the zero.
62 assertEquals('zero', array.shift());
63 assertEquals('zero', Array.prototype.shift.call(nonArray));
  /external/valgrind/main/VEX/priv/
host_arm_defs.c 227 ARMAMode1* ARMAMode1_RRS ( HReg base, HReg index, UInt shift ) {
232 am->ARMam1.RRS.shift = shift;
233 vassert(0 <= shift && shift <= 3);
249 vex_printf(",%u)", am->ARMam1.RRS.shift);
    [all...]

Completed in 2930 milliseconds

12 3 4