HomeSort by relevance Sort by last modified time
    Searched refs:Left (Results 1 - 25 of 169) sorted by null

1 2 3 4 5 6 7

  /external/chromium_org/tools/clang/blink_gc_plugin/tests/
left_most_gc_base.h 16 class Left : public GarbageCollected<Left>, public B, public A { };
18 class DerivedRight : public Right, public Left { }; // Error
19 class DerivedLeft : public Left, public Right { };
  /external/chromium_org/third_party/libvpx/source/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/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);
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/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/clang/test/CodeGenCXX/
microsoft-abi-multiple-nonvirtual-inheritance.cpp 3 struct Left {
4 virtual void left();
11 struct ChildNoOverride : Left, Right {
14 struct ChildOverride : Left, Right {
15 virtual void left();
25 child->left();
26 // Only need to cast 'this' to Left*.
27 // CHECK: %[[LEFT:.*]] = bitcast %struct.ChildNoOverride* %[[CHILD]] to %struct.Left*
28 // CHECK: %[[VFPTR:.*]] = bitcast %struct.Left* %[[LEFT]] to void (%struct.Left*)**
36 void ChildOverride::left() { function in class:ChildOverride
    [all...]
  /external/clang/test/Modules/Inputs/
category_left.h 3 @interface Foo(Left)
4 -(void)left;
8 -(void)left;
  /external/chromium_org/third_party/libvpx/source/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...]
  /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...]
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/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...]
  /external/clang/lib/Format/
TokenAnnotator.cpp 47 FormatToken *Left = CurrentToken->Previous;
52 Left->Previous && Left->Previous->Tok.isNot(tok::kw_template);
56 Left->MatchingParen = CurrentToken;
57 CurrentToken->MatchingParen = Left;
80 updateParameterCount(Left, CurrentToken);
97 FormatToken *Left = CurrentToken->Previous;
100 Left->Type = TT_ObjCBlockLParen;
101 } else if (FormatToken *MaybeSel = Left->Previous) {
109 if (Left->Previous &
    [all...]
  /external/clang/include/clang/AST/
AttrIterator.h 99 friend bool operator==(specific_attr_iterator Left,
101 assert((Left.Current == nullptr) == (Right.Current == nullptr));
102 if (Left.Current < Right.Current)
103 Left.AdvanceToNext(Right.Current);
105 Right.AdvanceToNext(Left.Current);
106 return Left.Current == Right.Current;
108 friend bool operator!=(specific_attr_iterator Left,
110 return !(Left == Right);
  /external/lzma/CPP/7zip/UI/Common/
DefaultName.cpp 17 return fileName.Left(dotPos) + addSubExtension;
21 return fileName.Left(dotPos) + addSubExtension;
ArchiveName.cpp 42 UString archiveName2 = resultName.Left(dotPos);
WorkDir.cpp 23 UString prefix = path.Left(3);
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderDetailsMarker.h 32 enum Orientation { Up, Down, Left, Right };
RenderDetailsMarker.cpp 78 return isOpen() ? Down : Left;
81 return isOpen() ? Left : Down;
82 return isOpen() ? Left : Up;
90 return isOpen() ? Up : Left;
98 case Left: return createLeftArrowPath();
  /external/chromium_org/third_party/webrtc/modules/video_render/ios/
video_render_ios_view.h 25 Left:(const float)left
  /external/clang/tools/diagtool/
DiagnosticNames.cpp 47 static bool orderByID(const DiagnosticRecord &Left,
49 return Left.DiagID < Right.DiagID;
  /external/clang/lib/StaticAnalyzer/Checkers/
CastSizeChecker.cpp 81 CharUnits Left = RegionSize - TypeSize;
82 if (Left.isNegative())
85 if (Left % FlexSize == 0)
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/test/
test_tools.hpp 70 // L - left argument
533 template <class Left, class Right>
534 predicate_result equal_impl( Left const& left, Right const& right )
536 return left == right;
541 predicate_result BOOST_TEST_DECL equal_impl( char const* left, char const* right );
542 inline predicate_result equal_impl( char* left, char const* right ) { return equal_impl( static_cast<char const*>(left), static_cast<char const*>(right) ); }
543 inline predicate_result equal_impl( char const* left, char* right ) { return equal_impl( static_cast<char const*>(left), static_cast<char const*>(right) );
    [all...]
  /external/chromium_org/ui/keyboard/resources/layouts/
symbol-altkeys.js 30 '"': ['\u201C', // Left double quote
33 '\u00AB', // Left double angle quote
  /external/lzma/CPP/Windows/
FileName.cpp 44 pureName = fullName.Left(index);
  /frameworks/base/core/tests/coretests/src/android/widget/listview/
ListButtonsDiagonalAcrossItems.java 52 final Slot slot = position == 0 ? Slot.Left :
  /external/chromium_org/third_party/skia/src/images/
SkMovie_gif.cpp 135 uint32_t* dst = bm->getAddr32(imageDesc.Left, imageDesc.Top + row);
150 if (frame->ImageDesc.Left + copyWidth > width) {
151 copyWidth = width - frame->ImageDesc.Left;
181 uint32_t* dst = bm->getAddr32(frame->ImageDesc.Left, frame->ImageDesc.Top);
183 if (frame->ImageDesc.Left + copyWidth > width) {
184 copyWidth = width - frame->ImageDesc.Left;
199 static void fillRect(SkBitmap* bm, GifWord left, GifWord top, GifWord width, GifWord height,
204 uint32_t* dst = bm->getAddr32(left, top);
206 if (left + copyWidth > bmWidth) {
207 copyWidth = bmWidth - left;
    [all...]

Completed in 4491 milliseconds

1 2 3 4 5 6 7