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

  /external/clang/test/CodeGenCXX/
uncopyable-args.cpp 4 namespace trivial { namespace
5 // Trivial structs should be passed directly.
14 // CHECK: alloca %"struct.trivial::A"
19 // WIN64-LABEL: declare void @"\01?foo@trivial@@YAXUA@1@@Z"(i64)
44 // The presence of a move constructor implicitly deletes the trivial copy ctor
198 // FIXME: This class has a non-trivial copy ctor and a trivial copy ctor. It's
  /external/eigen/unsupported/test/
cxx11_tensor_ref.cpp 211 array<std::pair<ptrdiff_t, ptrdiff_t>, 4> trivial; local
212 trivial[0] = std::make_pair(0, 0);
213 trivial[1] = std::make_pair(0, 0);
214 trivial[2] = std::make_pair(0, 0);
215 trivial[3] = std::make_pair(0, 0);
216 Tensor<float, 4> padded = ref.shuffle(shuffle_dims).pad(trivial);
  /external/swiftshader/third_party/LLVM/lib/CodeGen/
Spiller.cpp 32 enum SpillerName { trivial, standard, inline_ }; enumerator in enum:__anon31198::SpillerName
39 cl::values(clEnumVal(trivial, "trivial spiller"),
86 DEBUG(dbgs() << "Trivial spill everywhere of reg" << li->reg << "\n");
237 case trivial: return new TrivialSpiller(pass, mf, vrm);
VirtRegRewriter.cpp 46 enum RewriterName { local, trivial }; enumerator in enum:__anon31215::RewriterName
54 clEnumVal(trivial, "trivial rewriter"),
    [all...]
  /external/clang/test/CXX/drs/
dr5xx.cpp 71 // expected-error@-2 {{has a non-trivial constructor}}
489 // trivial default constructor, so we never notice that defining the
494 // constructor, even if it is trivial.
651 class trivial : x { class in namespace:dr568
656 int check_trivial[__is_trivial(trivial) ? 1 : -1];
670 trivial t;
676 void g(trivial t) { f(t); }
687 trivial t;
  /external/swiftshader/src/OpenGL/compiler/
OutputASM.cpp 802 if(trivial(right, 6))
826 if(trivial(right, 6))
2641 bool OutputASM::trivial(TIntermTyped *expression, int budget) function in class:glsl::OutputASM
    [all...]
  /external/clang/lib/Sema/
SemaType.cpp 152 /// Whether there are non-trivial modifications to the decl spec.
153 bool trivial; member in class:__anon14173::TypeProcessingState
169 trivial(true), hasSavedAttrs(false) {}
207 trivial &= savedAttrs.empty();
225 if (trivial) return;
    [all...]

Completed in 1769 milliseconds