HomeSort by relevance Sort by last modified time
    Searched defs:Base (Results 151 - 175 of 396) sorted by null

1 2 3 4 5 67 8 91011>>

  /external/llvm/lib/Target/SystemZ/MCTargetDesc/
SystemZMCCodeEmitter.cpp 55 // The index or length, if any, is encoded first, followed by the base,
131 uint64_t Base = getMachineOpValue(MI, MI.getOperand(OpNum), Fixups, STI);
133 assert(isUInt<4>(Base) && isUInt<12>(Disp));
134 return (Base << 12) | Disp;
141 uint64_t Base = getMachineOpValue(MI, MI.getOperand(OpNum), Fixups, STI);
143 assert(isUInt<4>(Base) && isInt<20>(Disp));
144 return (Base << 20) | ((Disp & 0xfff) << 8) | ((Disp & 0xff000) >> 12);
151 uint64_t Base = getMachineOpValue(MI, MI.getOperand(OpNum), Fixups, STI);
154 assert(isUInt<4>(Base) && isUInt<12>(Disp) && isUInt<4>(Index));
155 return (Index << 16) | (Base << 12) | Disp
    [all...]
  /external/llvm/lib/Target/X86/Utils/
X86ShuffleDecode.cpp 75 unsigned Base = i + Offset;
77 if (Base >= NumLaneElts) Base += NumElts - NumLaneElts;
78 ShuffleMask.push_back(Base + l);
  /external/llvm/lib/Target/X86/
X86InstrBuilder.h 20 // (Operand), Base, Scale, Index, Displacement.
34 /// The base register can be a frame index, which will eventually be replaced
46 } Base;
57 Base.Reg = 0;
65 MO.push_back(MachineOperand::CreateReg(Base.Reg, false, false,
69 MO.push_back(MachineOperand::CreateFI(Base.FrameIndex));
128 MIB.addReg(AM.Base.Reg);
131 MIB.addFrameIndex(AM.Base.FrameIndex);
143 /// addFrameReference - This function is used to add a reference to the base of
145 /// reference has base register as the FrameIndex offset until it is resolved
    [all...]
  /external/llvm/unittests/Support/
CommandLineTest.cpp 47 typedef cl::opt<T> Base;
51 explicit StackOption(const M0t &M0) : Base(M0) {}
55 StackOption(const M0t &M0, const M1t &M1) : Base(M0, M1) {}
59 StackOption(const M0t &M0, const M1t &M1, const M2t &M2) : Base(M0, M1, M2) {}
64 : Base(M0, M1, M2, M3) {}
  /external/mesa3d/src/mesa/drivers/dri/swrast/
swrast_priv.h 61 /* mesa, base class, must be first */
62 struct gl_context Base;
82 /* mesa, base class, must be first */
83 struct gl_framebuffer Base;
105 struct swrast_renderbuffer Base;
  /external/clang/test/CodeGenCXX/
bitfield.cpp 288 struct Base {
289 virtual ~Base() {}
295 struct Derived : public Base {
299 unsigned read(Base* s) {
317 void write(Base* s, unsigned x) {
431 // Similar to N4 except that this adds a virtual base to the picture. (PR18430)
  /art/test/093-serialization/src/
Main.java 92 class Base implements Serializable {
99 public Base() {
106 class Sub extends Base {
  /external/chromium_org/base/
bind_helpers.h 7 // that are bound by the Bind() function in base/bind.h.
15 // The wrapper functions are base::Unretained(), base::Owned(), base::Passed(),
16 // base::ConstRef(), and base::IgnoreResult().
146 #include "base/basictypes.h"
147 #include "base/callback.h"
148 #include "base/memory/weak_ptr.h"
149 #include "base/template_util.h
151 namespace base { namespace
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/scripts/jsdoc-validator/tests/
proto.js 4 Base = function() {}
8 * @extends {Base}
14 * @extends {Base}
19 __proto__: Base
28 __proto__: Base.prototype
37 __proto__: Base.prototype
42 * @extends {Base}
52 * @extends {Base}
60 * @extends {Base}
66 __proto__: Base.prototyp
    [all...]
  /external/clang/lib/CodeGen/
CGCXX.cpp 31 /// Try to emit a base destructor as an alias to its primary
32 /// base-class destructor.
37 // Producing an alias to a base class ctor/dtor can degrade debug quality
67 // Try to find a unique base class with a non-trivial destructor.
71 // We're in the base destructor, so skip virtual bases.
74 // Skip base classes with trivial destructors.
75 const auto *Base =
77 if (Base->hasTrivialDestructor()) continue;
79 // If we've already found a base class with a non-trivial
82 UniqueBase = Base;
    [all...]
  /external/clang/test/Analysis/
array-struct-region.cpp 177 struct Base {
180 Base(int& x) : x(x) {}
183 struct Derived : public Base {
184 Derived(int& x) : Base(x) {}
  /external/clang/test/CXX/expr/expr.prim/expr.prim.general/
p3-0x.cpp 138 struct Base {
139 void bar(Base&) {} // FIXME: expected-note {{here}}
142 struct Derived : Base {
  /external/clang/test/Index/
load-stmts.cpp 13 // Test handling of C++ base specifiers.
94 struct Base {
95 Base(int);
98 struct Derived : public Base {
104 : member(x), Base(x) {
159 // CHECK: load-stmts.cpp:22:18: C++ base class specifier=class A:14:7 [access=public isVirtual=false]
160 // CHECK: load-stmts.cpp:22:29: C++ base class specifier=class B:18:7 [access=private isVirtual=false]
163 // CHECK: load-stmts.cpp:26:26: C++ base class specifier=class C:22:7 [access=public isVirtual=true]
164 // CHECK: load-stmts.cpp:26:45: C++ base class specifier=class A:14:7 [access=private isVirtual=true]
222 // CHECK: load-stmts.cpp:104:16: TypeRef=struct Base:94:8 Extent=[104:16 - 104:
    [all...]
  /external/clang/test/Parser/
cxx0x-decl.cpp 85 struct Base {
91 struct Derived : Base {
119 struct Base { virtual void f() = 0; virtual void g() = 0; virtual void h() = 0; };
120 struct MemberComponentOrder : Base {
  /external/clang/test/SemaCXX/
aggregate-initialization.cpp 13 struct Base { };
14 struct NonAggr2 : public Base { // expected-note 3 {{candidate constructor}}
default-assignment-operator.cpp 3 class Base { // expected-error {{cannot define the implicit copy assignment operator for 'Base', because non-static reference member 'ref' can't use copy assignment operator}} \
4 // expected-warning{{class 'Base' does not declare any constructor to initialize its non-modifiable members}}
9 class X : Base { // // expected-error {{cannot define the implicit copy assignment operator for 'X', because non-static const member 'cint' can't use copy assignment operator}} \
10 // expected-note{{assignment operator for 'Base' first required here}}
offsetof.cpp 16 struct Base { int x; };
17 struct Derived : Base { int y; };
40 // offsetof referring to members of a base class.
57 // offsetof referring to anonymous struct in base.
78 struct Base {
81 struct Derived : virtual Base {
83 expected-error {{invalid application of 'offsetof' to a field of a virtual base}}
vararg-non-pod.cpp 98 struct Base { virtual ~Base(); };
99 Base &get_base(...);
102 void test_typeid(Base &base) {
103 (void)typeid(get_base(base)); // expected-warning{{cannot pass object of non-POD type 'Base' through variadic function; call will abort at runtime}}
104 (void)typeid(eat_base(base)); // okay
  /external/clang/test/SemaTemplate/
dependent-base-classes.cpp 39 struct Base {
46 struct HasDepBase : Base<T> {
77 typedef typename Derived::type type; // expected-error{{member 'type' found in multiple base classes of different types}}
127 template <class T> struct Base {
128 Base* p;
131 template <class T> struct Derived: public Base<T> {
132 typename Derived::Base* p; // meaning Derived::Base<T>
instantiate-exception-spec-cxx11.cpp 76 struct base { struct in namespace:core_19754_example
77 base() {} function in struct:core_19754_example::base
78 base(const typename T::type1 &);
79 base(const typename T::type2 &);
84 wrap<typename T::base> base; member in struct:core_19754_example::type1
89 wrap<typename T::base> base; member in struct:core_19754_example::type2
93 typedef base<types> base; typedef in struct:core_19754_example::types
    [all...]
member-access-expr.cpp 4 x.Base::f0();
7 struct Base {
11 struct X0 : Base {
12 typedef Base CrazyBase;
26 call_f0_through_typedef<Base>(x0);
38 struct X1 : Base, OtherBase {
43 call_f0_through_typedef2<Base>(x0);
45 call_f0_through_typedef2<Base>(x1); // expected-note{{instantiation}}
114 struct Base {
118 template <class T> struct Foo : Base {
    [all...]
member-template-access-expr.cpp 129 struct Base {
134 struct X0 : Base<1, T> { };
141 this->x0.Base<1, int>::f();
  /external/eigen/Eigen/src/Core/
Diagonal.h 70 typedef typename internal::dense_xpr_base<Diagonal>::type Base;
DiagonalProduct.h 49 typedef MatrixBase<DiagonalProduct> Base;
Map.h 109 typedef MapBase<Map> Base;
112 typedef typename Base::PointerType PointerType;
140 : Base(cast_to_pointer_type(dataPtr)), m_stride(a_stride)
142 PlainObjectType::Base::_check_template_params();
152 : Base(cast_to_pointer_type(dataPtr), a_size), m_stride(a_stride)
154 PlainObjectType::Base::_check_template_params();
165 : Base(cast_to_pointer_type(dataPtr), nbRows, nbCols), m_stride(a_stride)
167 PlainObjectType::Base::_check_template_params();

Completed in 427 milliseconds

1 2 3 4 5 67 8 91011>>