Searched refs:rvalue (Results 1 - 16 of 16) sorted by relevance

/freebsd-10.1-release/contrib/nvi/vi/
H A Dv_replace.c122 vip->rvalue = ev.e_value;
156 if ((!quote && vip->rvalue == K_CR) || vip->rvalue == K_NL) {
H A Dvi.h240 e_key_t rvalue; /* Value of last replacement character. */ member in struct:_vi_private
/freebsd-10.1-release/contrib/llvm/tools/clang/lib/CodeGen/
H A DCGCall.h79 void add(RValue rvalue, QualType type, bool needscopy = false) { argument
80 push_back(CallArg(rvalue, type, needscopy));
H A DCGAtomic.cpp114 void emitCopyIntoMemory(RValue rvalue, LValue lvalue) const;
127 llvm::Value *materializeRValue(RValue rvalue) const;
835 void AtomicInfo::emitCopyIntoMemory(RValue rvalue, LValue dest) const { argument
836 // If we have an r-value, the rvalue should be of the atomic type,
839 if (rvalue.isAggregate()) {
841 rvalue.getAggregateAddr(),
843 (rvalue.isVolatileQualified()
857 // Okay, store the rvalue in.
858 if (rvalue.isScalar()) {
859 CGF.EmitStoreOfScalar(rvalue
886 EmitAtomicStore(RValue rvalue, LValue dest, bool isInit) argument
[all...]
H A DCodeGenFunction.cpp1424 CodeGenFunction::protectFromPeepholes(RValue rvalue) { argument
1429 if (!rvalue.isScalar()) return PeepholeProtection();
1430 llvm::Value *value = rvalue.getScalarVal();
H A DCodeGenFunction.h775 RValue rvalue)
776 : CGF(CGF), Data(OpaqueValueMappingData::bind(CGF, opaqueValue, rvalue)) {
1781 PeepholeProtection protectFromPeepholes(RValue rvalue);
1860 /// GetUndefRValue - Get an appropriate 'undef' rvalue for the given type.
1905 void EmitAtomicStore(RValue rvalue, LValue lvalue, bool isInit);
1949 /// rvalue, returning the rvalue.
1954 /// EmitStoreThroughLValue - Store the specified rvalue into the specified
773 OpaqueValueMapping(CodeGenFunction &CGF, const OpaqueValueExpr *opaqueValue, RValue rvalue) argument
H A DCGExprAgg.cpp648 RValue rvalue = RValue::getAggregate(valueAddr, atomicSlot.isVolatile()); local
649 return EmitFinalDestCopy(valueType, rvalue);
672 llvm_unreachable("should not be emitting lvalue bitcast as rvalue");
H A DCGDecl.cpp1168 RValue rvalue = EmitReferenceBindingToExpr(init); local
1171 EmitStoreThroughLValue(rvalue, lvalue, true);
H A DCGObjCMac.cpp1917 RValue rvalue = CGF.EmitCall(MSI.CallInfo, Fn, Return, ActualArgs); local
1918 return nullReturn.complete(CGF, rvalue, ResultType, CallArgs,
/freebsd-10.1-release/contrib/gcc/
H A Dstruct-equiv.c307 /* Update register liveness to reflect that X is now life (if rvalue is
308 nonzero) or dead (if rvalue is zero) in INFO->x_block, and likewise Y
312 note_local_live (struct equiv_info *info, rtx x, rtx y, int rvalue)
320 int x_change = assign_reg_reg_set (info->x_local_live, x, rvalue);
321 int y_change = assign_reg_reg_set (info->y_local_live, y, rvalue);
359 rtx_equiv_p (rtx *xp, rtx y, int rvalue, struct equiv_info *info)
414 if (!rvalue && info->cur.input_valid
421 && assign_reg_reg_set (info->common_live, x, rvalue))
433 if (! rvalue || info->input_cost < 0 || no_new_pseudos)
543 note_local_live (info, x, y, rvalue);
311 note_local_live(struct equiv_info *info, rtx x, rtx y, int rvalue) argument
358 rtx_equiv_p(rtx *xp, rtx y, int rvalue, struct equiv_info *info) argument
[all...]
/freebsd-10.1-release/contrib/bsnmp/lib/
H A Dsnmpcrypto.c312 int32_t err, rvalue[SNMP_AUTH_HMACSHA_KEY_SIZ / 4]; local
324 rvalue[i] = random();
327 memcpy(keychange + keylen, rvalue, keylen);
/freebsd-10.1-release/contrib/gcc/cp/
H A Drtti.c500 /* If T is a pointer type, v shall be an rvalue of a pointer to
501 complete class type, and the result is an rvalue of type T. */
563 expr = rvalue (expr);
H A Dtypeck.c1509 in an rvalue context: the lvalue-to-rvalue, array-to-pointer, and
1514 Although the returned value is being used as an rvalue, this
1594 promotion, and that, therefore, the type of the resulting rvalue
1598 /* We do not call rvalue() here because we do not want to wrap EXP
1615 operator that expects the rvalue for that operand, the
1616 lvalue-to-rvalue, array-to-pointer, or function-to-pointer
1618 rvalue.
4167 expression is always a rvalue. */
4168 arg = rvalue (ar
[all...]
H A Dtree.c99 rvalue we want to preserve that information. */
194 a class rvalue. */
218 (lvalue_p_1 (ref, /*class rvalue ok*/ 1) != clk_none);
383 /* EXPR is being used in an rvalue context. Return a version of EXPR
384 that is marked as an rvalue. */
387 rvalue (tree expr) function
H A Dcp-tree.h932 used to test whether or not it is OK to bind an rvalue to a
3174 clk_class = 2, /* An rvalue of class-type. */
4499 extern tree rvalue (tree);
H A Dcall.c428 (_expr.const_) rvalue of integer type that evaluates to zero. */
720 An rvalue of type "pointer to cv D," where D is a
721 class type, can be converted to an rvalue of type
810 An rvalue of arithmetic, enumeration, pointer, or pointer to
811 member type can be converted to an rvalue of type bool. */
982 rvalue of the right type is good enough. */
1213 If the initializer expression is an rvalue, with T2 a class type,
1217 -- The reference is bound to the object represented by the rvalue
3167 changed to an rvalue of type T2 that still refers to the original
3190 converted to an rvalue (o
[all...]

Completed in 328 milliseconds