HomeSort by relevance Sort by last modified time
    Searched full:rvalue (Results 101 - 125 of 408) sorted by null

1 2 3 45 6 7 8 91011>>

  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/utility/pairs/pair.astuple/
pairs.by.type.pass.cpp 38 upint p = std::get<0>(std::move(t)); // get rvalue
  /external/clang/lib/CodeGen/
CGStmtOpenMP.cpp 716 RValue::get(Size));
    [all...]
CGCleanup.cpp 27 bool DominatingValue<RValue>::saved_type::needsSaving(RValue rv) {
35 DominatingValue<RValue>::saved_type
36 DominatingValue<RValue>::saved_type::save(CodeGenFunction &CGF, RValue rv) {
46 CGF.CreateDefaultAlignTempAlloca(V->getType(), "saved-rvalue");
73 CGF.CreateTempAlloca(V.getType(), CGF.getPointerAlign(), "saved-rvalue");
82 RValue DominatingValue<RValue>::saved_type::restore(CodeGenFunction &CGF) {
89 return RValue::get(Value)
    [all...]
CGExprComplex.cpp 230 RValue &Val);
316 /// EmitLoadOfLValue - Given an RValue reference for a complex, emit code to
348 return CGF.EmitAtomicStore(RValue::getComplex(Val), lvalue, isInit);
576 Args.add(RValue::get(Op.LHS.first),
578 Args.add(RValue::get(Op.LHS.second),
580 Args.add(RValue::get(Op.RHS.first),
582 Args.add(RValue::get(Op.RHS.second),
604 RValue Res = CGF.EmitCall(FuncInfo, Func, ReturnValueSlot(), Args,
825 RValue &Val) {
    [all...]
CGExpr.cpp 136 /// can have any type. The result is returned as an RValue struct.
139 RValue CodeGenFunction::EmitAnyExpr(const Expr *E,
144 return RValue::get(EmitScalarExpr(E, ignoreResult));
146 return RValue::getComplex(EmitComplexExpr(E, ignoreResult, ignoreResult));
158 RValue CodeGenFunction::EmitAnyExprToTemp(const Expr *E) {
188 RValue RV = RValue::get(EmitScalarExpr(E, /*Ignore*/ false));
459 RValue
476 return RValue::get(Value);
    [all...]
CGExprAgg.cpp 81 void EmitFinalDestCopy(QualType type, RValue src);
85 void EmitMoveFromReturnSlot(const Expr *E, RValue Src);
202 RValue Res = CGF.EmitAtomicExpr(E);
248 /// RValue Result = EmitSomething(..., getReturnValueSlot());
254 void AggExprEmitter::EmitMoveFromReturnSlot(const Expr *E, RValue src) {
268 void AggExprEmitter::EmitFinalDestCopy(QualType type, RValue src) {
350 CGF.EmitStoreThroughLValue(RValue::get(ArrayStart), Start);
367 CGF.EmitStoreThroughLValue(RValue::get(ArrayEnd), EndOrLength);
370 CGF.EmitStoreThroughLValue(RValue::get(Size), EndOrLength);
682 RValue rvalue = RValue::getAggregate(valueAddr, atomicSlot.isVolatile()) local
    [all...]
CGBuiltin.cpp 136 static RValue EmitBinaryAtomic(CodeGenFunction &CGF,
139 return RValue::get(MakeBinaryAtomicValue(CGF, Kind, E));
145 static RValue EmitBinaryAtomicPost(CodeGenFunction &CGF,
178 return RValue::get(Result);
261 static RValue emitLibraryCall(CodeGenFunction &CGF, const FunctionDecl *Fn,
410 RValue CodeGenFunction::EmitBuiltinExpr(const FunctionDecl *FD,
418 return RValue::get(llvm::ConstantInt::get(getLLVMContext(),
421 return RValue::get(llvm::ConstantFP::get(getLLVMContext(),
429 return RValue::get(CGM.EmitConstantExpr(E, E->getType(), nullptr));
434 return RValue::get
    [all...]
  /external/clang/test/SemaCXX/
nullptr.cpp 59 // nullptr is an rvalue, null is an lvalue
60 (void)&nullptr; // expected-error {{cannot take the address of an rvalue of type 'nullptr_t'}}
enum.cpp 103 int a = (E)3; // expected-error{{cannot initialize a variable of type 'int' with an rvalue of type 'E'}}
  /external/clang/test/SemaTemplate/
instantiate-expr-1.cpp 144 int *ip = I; // expected-error{{cannot initialize a variable of type 'int *' with an rvalue of type 'int'}}
159 int *ip = I; // expected-error{{cannot initialize a variable of type 'int *' with an rvalue of type 'int'}}
instantiate-init.cpp 94 const Data<T> Description<T>::data[] = {{ 1 }}; // expected-error{{cannot initialize a member subobject of type 'int *' with an rvalue of type 'int'}}
instantiate-member-class.cpp 125 struct C { C() { int *ptr = I; } }; // expected-error{{cannot initialize a variable of type 'int *' with an rvalue of type 'int'}} \
  /external/pdfium/core/include/fxcrt/
fx_basic.h 662 FX_BOOL Lookup(void* key, void*& rValue) const;
680 void*& rValue) const;
713 FX_BOOL Lookup(KeyType key, ValueType& rValue) const {
718 rValue = (ValueType)(uintptr_t)pValue;
736 ValueType& rValue) const {
741 rValue = (ValueType)(uintptr_t)pValue;
757 void*& rValue) const;
761 FX_BOOL Lookup(const CFX_ByteStringC& key, void*& rValue) const;
  /external/iproute2/tc/
em_meta.c 354 PARSE_ERR(arg, "lvalue and rvalue are not compatible.");
364 unsigned long lvalue = 0, rvalue = 0; local
394 return PARSE_ERR(args, "meta: missing rvalue");
397 a = parse_object(args, a, &meta_hdr.right, &rvalue, &meta_hdr.left);
409 dump_value(n, TCA_EM_META_RVALUE, rvalue, &meta_hdr.right);
  /frameworks/av/media/libstagefright/yuv/
YUVImage.cpp 401 uint8_t rValue;
404 yuv2rgb(yValue, uValue, vValue, &rValue, &gValue, &bValue);
406 fprintf(fp, "%d %d %d\n", (int32_t)rValue, (int32_t)gValue, (int32_t)bValue);
  /external/clang/test/Analysis/inlining/
false-positive-suppression.cpp 108 // Separate the lvalue-to-rvalue conversion from the subsequent dereference.
  /external/clang/test/CXX/expr/expr.prim/expr.prim.lambda/
blocks.mm 23 T *ptr = 1; // expected-error{{cannot initialize a variable of type 'float *' with an rvalue of type 'int'}}
  /external/clang/test/CodeGen/
aarch64-inline-asm.c 3 // The only part clang really deals with is the lvalue/rvalue
  /external/clang/test/CodeGenObjCXX/
arc-references.mm 9 // Lifetime extension for binding a reference to an rvalue
  /external/eigen/doc/
tutorial.cpp 19 // demo fixed-size block() expression as lvalue and as rvalue
  /external/libcxx/test/std/utilities/function.objects/func.require/
invoke_helpers.h 39 // RValue - True if the resulting object should be an RValue reference.
41 template <class QualTag, bool RValue = false>
48 typedef typename std::conditional<RValue,
  /external/libcxx/test/std/utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.const/
auto_ptr.pass.cpp 95 // Without rvalue references, ptr got copied into
  /external/libcxx/test/std/utilities/tuple/tuple.tuple/tuple.elem/
get_non_const.pass.cpp 73 { // get on an rvalue tuple
tuple.by.type.pass.cpp 54 upint p = std::get<upint>(std::move(t)); // get rvalue
  /external/llvm/unittests/Support/
ErrorOrTest.cpp 86 "do not invoke explicit ctors in implicit conversion from rvalue");

Completed in 595 milliseconds

1 2 3 45 6 7 8 91011>>