HomeSort by relevance Sort by last modified time
    Searched full:leftshift (Results 1 - 25 of 60) sorted by null

1 2 3

  /external/chromium_org/third_party/skia/bench/
ChartBench.cpp 31 // The plots are animated by rotating the data points by leftShift.
36 int leftShift,
47 leftShift %= topData.count();
50 // Account for the leftShift using two loops
51 int shiftToEndCount = topData.count() - leftShift;
52 plot->moveTo(x, topData[leftShift]);
53 fill->moveTo(x, topData[leftShift]);
56 plot->lineTo(x, topData[i + leftShift]);
57 fill->lineTo(x, topData[i + leftShift]);
61 for (int i = 0; i < leftShift; ++i)
    [all...]
  /external/chromium_org/third_party/skia/samplecode/
SampleChart.cpp 27 // The plots are animated by rotating the data points by leftShift.
32 int leftShift,
43 leftShift %= topData.count();
46 // Account for the leftShift using two loops
47 int shiftToEndCount = topData.count() - leftShift;
48 plot->moveTo(x, topData[leftShift]);
49 fill->moveTo(x, topData[leftShift]);
52 plot->lineTo(x, topData[i + leftShift]);
53 fill->lineTo(x, topData[i + leftShift]);
57 for (int i = 0; i < leftShift; ++i)
    [all...]
  /external/skia/bench/
ChartBench.cpp 31 // The plots are animated by rotating the data points by leftShift.
36 int leftShift,
47 leftShift %= topData.count();
50 // Account for the leftShift using two loops
51 int shiftToEndCount = topData.count() - leftShift;
52 plot->moveTo(x, topData[leftShift]);
53 fill->moveTo(x, topData[leftShift]);
56 plot->lineTo(x, topData[i + leftShift]);
57 fill->lineTo(x, topData[i + leftShift]);
61 for (int i = 0; i < leftShift; ++i)
    [all...]
  /external/skia/samplecode/
SampleChart.cpp 27 // The plots are animated by rotating the data points by leftShift.
32 int leftShift,
43 leftShift %= topData.count();
46 // Account for the leftShift using two loops
47 int shiftToEndCount = topData.count() - leftShift;
48 plot->moveTo(x, topData[leftShift]);
49 fill->moveTo(x, topData[leftShift]);
52 plot->lineTo(x, topData[i + leftShift]);
53 fill->lineTo(x, topData[i + leftShift]);
57 for (int i = 0; i < leftShift; ++i)
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/include/python2.7/
token.h 46 #define LEFTSHIFT 34
  /prebuilts/python/linux-x86/2.7.5/include/python2.7/
token.h 46 #define LEFTSHIFT 34
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/pgen2/
token.py 43 LEFTSHIFT = 34
grammar.py 161 << LEFTSHIFT
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/pgen2/
token.py 43 LEFTSHIFT = 34
grammar.py 161 << LEFTSHIFT
  /external/opencv/cv/src/
cvsnakes.cpp 300 int leftshift = x ? 1 : 0; local
303 CvRect g_roi = { x*WTILE_SIZE - leftshift, y*WTILE_SIZE - upshift,
304 leftshift + WTILE_SIZE + rightshift, upshift + WTILE_SIZE + bottomshift };
316 (float) (dx[(l + upshift) * TILE_SIZE + m + leftshift] *
317 dx[(l + upshift) * TILE_SIZE + m + leftshift] +
318 dy[(l + upshift) * TILE_SIZE + m + leftshift] *
319 dy[(l + upshift) * TILE_SIZE + m + leftshift]);
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
token.py 47 LEFTSHIFT = 34
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
token.py 47 LEFTSHIFT = 34
  /external/antlr/antlr-3.4/runtime/JavaScript/tests/functional/
Python.g 296 shift_expr: arith_expr ((LEFTSHIFT|RIGHTSHIFT) arith_expr)*
442 LEFTSHIFT : '<<' ;
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
hidpi.h 61 ULONG LeftShift : 1;
  /external/deqp/modules/gles3/functional/
es3fShaderOperatorTests.cpp 81 template<typename T> inline T leftShift (T value, int amount) { return value << amount; }
86 template<typename T, int Size> Vector<T, Size> leftShift (const Vector<T, Size>& value, const Vector<int, Size>& amount)
90 result[i] = leftShift(value[i], amount[i]);
102 template<typename T, int Size> Vector<T, Size> leftShiftVecScalar (const Vector<T, Size>& value, int amount) { return leftShift(value, Vector<int, Size>(amount)); }
    [all...]
  /external/qemu/android/
hw-events.h 97 KEY_CODE(LEFTSHIFT ,42) \
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm11/src/
armCOMM.c 718 * output = Saturate_in_16Bits( ( Right/LeftShift( (Round(input) , shift ) )
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm_neon/src/
armCOMM.c 718 * output = Saturate_in_16Bits( ( Right/LeftShift( (Round(input) , shift ) )
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/reference/src/
armCOMM.c 718 * output = Saturate_in_16Bits( ( Right/LeftShift( (Round(input) , shift ) )
  /external/aac/libAACenc/src/
psy_main.cpp 661 /* Calc possible spectrum leftshift for each sfb (1 means: 1 bit left shift is possible without overflow) */
682 /* Calc possible energy leftshift for each sfb (1 means: 1 bit left shift is possible without overflow) */
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/compiler/
ast.py 803 class LeftShift(Node):
816 return "LeftShift((%s, %s))" % (repr(self.left), repr(self.right))
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/compiler/
ast.py 803 class LeftShift(Node):
816 return "LeftShift((%s, %s))" % (repr(self.left), repr(self.right))
    [all...]
  /external/chromium_org/ui/events/keycodes/dom4/
keycode_converter_data.h 165 // This key is typically located near LeftShift key.
  /developers/build/lib/
buildSrc.jar 

Completed in 1037 milliseconds

1 2 3