HomeSort by relevance Sort by last modified time
    Searched defs:Left (Results 1 - 22 of 22) sorted by null

  /external/libvpx/libvpx/vp8/common/arm/
reconintra_arm.c 24 int Left);
33 int Left = x->left_available;
35 vp8_build_intra_predictors_mby_neon_func(y_buffer, ypred_ptr, y_stride, mode, Up, Left);
44 int Left);
53 int Left = x->left_available;
55 vp8_build_intra_predictors_mby_s_neon_func(y_buffer, ypred_ptr, y_stride, mode, Up, Left);
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderDetailsMarker.h 32 enum Orientation { Up, Down, Left, Right };
  /external/libvpx/libvpx/vp8/common/
reconintra4x4.c 24 unsigned char Left[4];
25 Left[0] = yleft[0];
26 Left[1] = yleft[left_stride];
27 Left[2] = yleft[2 * left_stride];
28 Left[3] = yleft[3 * left_stride];
39 expected_dc += Left[i];
62 int pred = Above[c] - top_left + Left[r];
106 lp[0] = (top_left + 2 * Left[0] + Left[1] + 2) >> 2;
107 lp[1] = (Left[0] + 2 * Left[1] + Left[2] + 2) >> 2
    [all...]
  /frameworks/av/media/libeffects/lvm/lib/Common/src/
AGC_MIX_VOL_2St1Mon_D32_WRA.c 84 LVM_INT32 Left; /* Left sample */
125 Left = *pStSrc++; /* Get the left sample */
136 Left += Mono; /* Mix in the mono signal */
143 HighWord = (Vol_Mult * (Left >> 16)); /* signed long (Left) by unsigned short (Vol_Mult) multiply */
144 LowWord = (Vol_Mult * (Left & 0xffff));
145 Left = (HighWord + (LowWord >> 16)) << (Vol_Shift);
149 *pDst++ = Left; /* Save the results *
    [all...]
  /cts/tests/src/android/widget/cts/util/
ListItemFactory.java 35 * The filler is sized to take up any space left over within desiredHeight.
78 Left,
101 boolean left = false;
106 case Left:
107 left = true;
118 if (left) {
120 button.setText("left");
249 t1.setGravity(Gravity.LEFT | Gravity.CENTER_VERTICAL);
  /external/llvm/lib/Target/X86/
X86SelectionDAGInfo.cpp 150 SDValue Left = DAG.getNode(ISD::AND, dl, CVT, Count,
154 Left, InFlag);
  /external/openfst/src/include/fst/
heap.h 125 // Compute left child of parent
126 int Left(int i) {
163 int l = Left(i);
  /external/srec/tools/thirdparty/OpenFst/fst/lib/
heap.h 117 // compute left child of parent
118 int Left(int i) {
150 int l = Left(i);
  /frameworks/base/core/tests/coretests/src/android/util/
ListItemFactory.java 35 * The filler is sized to take up any space left over within desiredHeight.
78 Left,
101 boolean left = false;
106 case Left:
107 left = true;
118 if (left) {
120 button.setText("left");
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/
cursslk.h 47 typedef enum { Left=0, Center=1, Right=2 } Justification;
54 Soft_Label_Key() : label(NULL), format(Left), num(-1) {
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/
cursslk.h 47 typedef enum { Left=0, Center=1, Right=2 } Justification;
54 Soft_Label_Key() : label(NULL), format(Left), num(-1) {
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/
cursslk.h 47 typedef enum { Left=0, Center=1, Right=2 } Justification;
54 Soft_Label_Key() : label(NULL), format(Left), num(-1) {
  /external/chromium_org/third_party/sqlite/src/contrib/
sqlitecon.tcl 50 pack $w.mb.file $w.mb.edit -side left -padx 8 -pady 1
104 bind Sqlitecon <Left> {sqlitecon::Left %W}
105 bind Sqlitecon <Control-b> {sqlitecon::Left %W}
135 # Move the cursor one character to the left
137 proc sqlitecon::Left {w} {
145 # Erase the character to the left of the cursor
659 -side left -padx 5 -pady 5 -expand 1
665 pack $w.t -side left -fill both -expand 1
667 pack $w.sb -side left -fill
    [all...]
  /external/jmonkeyengine/engine/src/core/com/jme3/font/
BitmapFont.java 53 * Align text on the left of the text block
55 Left,
236 // over the left. So we subtract.
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/
CodeMirrorTextEditor.js 78 "Left": "goCharLeft",
103 "Ctrl-Left": "goGroupLeft",
105 "Alt-Left": "goLineStart",
119 "Alt-Left": "goGroupLeft",
121 "Cmd-Left": "goLineStartSmart",
432 x: metrics.left,
452 var coords = this._codeMirror.coordsChar({left: x, top: y});
711 * @param {{left: number, top: number, width: number, height: number, clientWidth: number, clientHeight: number}} scrollInfo
881 this._codeMirror.scrollTo(scrollInfo.left, scrollInfo.top);
    [all...]
  /external/llvm/lib/CodeGen/
MachineCSE.cpp 611 unsigned Left = --OpenChildren[Parent];
612 if (Left != 0)
MachineLICM.cpp 676 unsigned Left = --OpenChildren[Parent];
677 if (Left != 0)
    [all...]
  /external/lzma/CPP/Common/
MyString.h 332 CStringBase Left(int count) const
  /external/clang/lib/Format/
TokenAnnotator.cpp 43 FormatToken *Left = CurrentToken->Previous;
47 Left->MatchingParen = CurrentToken;
48 CurrentToken->MatchingParen = Left;
67 updateParameterCount(Left, CurrentToken);
84 FormatToken *Left = CurrentToken->Previous;
87 Left->Type = TT_ObjCBlockLParen;
88 } else if (FormatToken *MaybeSel = Left->Previous) {
96 if (Left->Previous && Left->Previous->is(tok::kw_static_assert))
101 Left->Type = TT_ObjCMethodExpr
    [all...]
  /external/giflib/
gif_lib.h 47 GifWord Left, Top, Width, Height; /* Current image dimensions. */
  /external/clang/lib/StaticAnalyzer/Checkers/
CStringChecker.cpp 191 NonLoc left,
542 NonLoc left,
566 maxMinusRight = svalBuilder.evalBinOpNN(state, BO_Sub, maxVal, left,
568 left = right;
573 // If left > max - right, we have an overflow.
574 SVal willOverflow = svalBuilder.evalBinOpNN(state, BO_GT, left,
    [all...]
  /external/clang/lib/Sema/
SemaChecking.cpp     [all...]

Completed in 2559 milliseconds