Searched refs:lvalue (Results 1 - 25 of 36) sorted by relevance

12

/freebsd-11-stable/usr.bin/bc/
H A Dextern.h23 struct lvalue { struct
H A Dbc.y146 struct lvalue lvalue;
172 %type <lvalue> named_expression
/freebsd-11-stable/lib/libc/gen/
H A Dsysconf.c80 long lvalue, defaultresult; local
190 lvalue = pathconf(path, _PC_NAME_MAX);
191 if (lvalue == -1 && errno != 0)
194 return (lvalue);
549 len = sizeof(lvalue);
551 if (sysctlbyname("kern.ipc.shmmin", &lvalue, &len, NULL,
598 len = sizeof(lvalue);
599 if (sysctlbyname("hw.availpages", &lvalue, &len, NULL, 0) == -1)
601 return (lvalue);
/freebsd-11-stable/contrib/llvm-project/clang/lib/CodeGen/
H A DCGAtomic.cpp43 AtomicInfo(CodeGenFunction &CGF, LValue &lvalue) argument
46 assert(!lvalue.isGlobalReg());
48 if (lvalue.isSimple()) {
49 AtomicTy = lvalue.getType();
71 if (lvalue.getAlignment().isZero())
72 lvalue.setAlignment(AtomicAlign);
74 LVal = lvalue;
75 } else if (lvalue.isBitField()) {
76 ValueTy = lvalue.getType();
78 auto &OrigBFI = lvalue
796 LValue lvalue = MakeAddrLValue(Ptr, AtomicTy); local
1954 EmitAtomicStore(RValue rvalue, LValue lvalue, bool isInit) argument
[all...]
H A DCGDecl.cpp717 LValue &lvalue,
719 lvalue.setAddress(CGF.emitBlockByrefAddress(lvalue.getAddress(CGF), var));
744 LValue lvalue, bool capturedByInit) {
745 Qualifiers::ObjCLifetime lifetime = lvalue.getObjCLifetime();
749 drillIntoBlockVariable(*this, lvalue, cast<VarDecl>(D));
750 EmitNullabilityCheck(lvalue, value, init->getExprLoc());
751 EmitStoreThroughLValue(RValue::get(value), lvalue, true); local
774 LValue tempLV = lvalue;
822 if (!accessedByInit && tryEmitARCCopyWeakInit(*this, lvalue, ini
716 drillIntoBlockVariable(CodeGenFunction &CGF, LValue &lvalue, const VarDecl *var) argument
743 EmitScalarInit(const Expr *init, const ValueDecl *D, LValue lvalue, bool capturedByInit) argument
1870 EmitExprAsInit(const Expr *init, const ValueDecl *D, LValue lvalue, bool capturedByInit) argument
1894 EmitAtomicInit(const_cast<Expr*>(init), lvalue); local
[all...]
H A DCGExprComplex.cpp346 ComplexPairTy ComplexExprEmitter::EmitLoadOfLValue(LValue lvalue, argument
348 assert(lvalue.isSimple() && "non-simple complex l-value?");
349 if (lvalue.getType()->isAtomicType())
350 return CGF.EmitAtomicLoad(lvalue, loc).getComplexVal();
352 Address SrcPtr = lvalue.getAddress(CGF);
353 bool isVolatile = lvalue.isVolatileQualified();
358 Address RealP = CGF.emitAddrOfRealComponent(SrcPtr, lvalue.getType());
363 Address ImagP = CGF.emitAddrOfImagComponent(SrcPtr, lvalue.getType());
372 void ComplexExprEmitter::EmitStoreOfComplex(ComplexPairTy Val, LValue lvalue, argument
374 if (lvalue
[all...]
H A DCGObjC.cpp515 LValue lvalue = EmitLValue(lvalueExpr); local
516 llvm::Value *result = EmitARCLoadWeakRetained(lvalue.getAddress(*this));
729 LValue lvalue, QualType type);
813 /// lvalue-to-rvalue expressions.
1533 LValue lvalue variable
1535 CGF.emitDestroy(lvalue.getAddress(CGF), ivar->getType(), destroyer,
2322 // lvalue is inadequately aligned.
2718 LValue lvalue,
2723 result = CGF.EmitLoadOfLValue(lvalue, SourceLocation()).getScalarVal();
2726 result = CGF.EmitARCLoadWeakRetained(lvalue
2717 tryEmitARCRetainLoadOfScalar(CodeGenFunction &CGF, LValue lvalue, QualType type) argument
[all...]
H A DCodeGenFunction.h1201 LValue lvalue)
1202 : CGF(CGF), Data(OpaqueValueMappingData::bind(CGF, opaqueValue, lvalue)) {
2318 void EmitExprAsInit(const Expr *init, const ValueDecl *D, LValue lvalue,
2654 /// this expression is used as an lvalue, for instance in "&Arr[Idx]".
2684 void EmitScalarInit(const Expr *init, const ValueDecl *D, LValue lvalue,
3283 /// Emits the lvalue for the expression with possibly captured variable.
3373 /// If this returns a normal address, and if the lvalue's C type is fixed
3375 /// an LLVM type of the same size of the lvalue's type. If the lvalue has a
3388 void EmitAtomicInit(Expr *E, LValue lvalue);
1199 OpaqueValueMapping(CodeGenFunction &CGF, const OpaqueValueExpr *opaqueValue, LValue lvalue) argument
[all...]
H A DCGExpr.cpp575 "materialized temporary field is not a simple lvalue");
594 // Emit the expression as an lvalue.
1012 // Store the updated result through the lvalue.
1241 /// If this returns a normal address, and if the lvalue's C type is fixed size,
1243 /// type of the same size of the lvalue's type. If the lvalue has a variable
1319 // bitfield lvalue or some other non-simple lvalue?
1527 llvm::Value *CodeGenFunction::EmitLoadOfScalar(LValue lvalue, argument
1529 return EmitLoadOfScalar(lvalue
1767 EmitStoreOfScalar(llvm::Value *value, LValue lvalue, bool isInit) argument
5070 LValue lvalue = MakeAddrLValue(addr, type, AlignmentSource::Decl); local
[all...]
/freebsd-11-stable/sys/dev/usb/video/
H A Dudl.c865 uint16_t lvalue;
867 lvalue = htobe16(value);
868 bcopy(&lvalue, cb->buf + cb->off, 2);
878 uint32_t lvalue; local
881 lvalue = htobe32(value) << 8;
883 lvalue = htobe32(value) >> 8;
885 bcopy(&lvalue, cb->buf + cb->off, 3);
894 uint32_t lvalue;
896 lvalue = htobe32(value);
897 bcopy(&lvalue, c
[all...]
/freebsd-11-stable/sbin/tunefs/
H A Dtunefs.c87 const char *avalue, *jvalue, *Jvalue, *Lvalue, *lvalue, *Nvalue, *nvalue; local
104 avalue = jvalue = Jvalue = Lvalue = lvalue = Nvalue = nvalue = NULL;
205 lvalue = optarg;
206 if (strcmp(lvalue, "enable") &&
207 strcmp(lvalue, "disable")) {
434 if (strcmp(lvalue, "enable") == 0) {
441 } else if (strcmp(lvalue, "disable") == 0) {
/freebsd-11-stable/usr.bin/tip/tip/
H A Dtip.h154 #define lvalue(v) (long)vtable[v].v_value macro
H A Dcmds.c362 alarm((unsigned int)lvalue(ETIMEOUT));
450 alarm((unsigned int)lvalue(ETIMEOUT));
/freebsd-11-stable/contrib/gcc/cp/
H A Dtypeck.c1508 /* Perform the conversions in [expr] that apply when an lvalue appears
1509 in an rvalue context: the lvalue-to-rvalue, array-to-pointer, and
1517 that the return value is no longer an lvalue. */
1539 /* build_c_cast puts on a NOP_EXPR to make the result not an lvalue.
1540 Leave such NOP_EXPRs, since RHS is being used in non-lvalue context. */
1570 error ("invalid use of non-lvalue array");
1614 Whenever an lvalue expression appears as an operand of an
1616 lvalue-to-rvalue, array-to-pointer, or function-to-pointer
1718 can, for example, use as an lvalue. This code used to be in
1722 this was with CODE == ADDR_EXPR, since it's not an lvalue whe
4637 tree lvalue = TREE_OPERAND (arg, 0); local
[all...]
H A Dcall.c980 an lvalue of the appropriate type. From the
1095 purposes of reference binding. For lvalue binding, either pass a
1096 reference type to FROM or an lvalue expression to EXPR. If the
1121 /* Anything with reference type is an lvalue. */
1145 -- is an lvalue (but not an lvalue for a bit-field), and "cv1 T1"
1149 lvalue. */
1176 implicitly converted to an lvalue of type "cv3 T3," where
1182 the reference is bound to the lvalue result of the conversion
2537 If TOTYPE is a REFERENCE_TYPE, we're trying to find an lvalue bindin
4438 cp_lvalue_kind lvalue = real_lvalue_p (expr); local
[all...]
/freebsd-11-stable/sys/kern/
H A Dvfs_bio.c397 long lvalue; local
402 lvalue = *(long *)arg1;
403 if (lvalue > INT_MAX)
405 return (sysctl_handle_long(oidp, &lvalue, 0, req));
406 ivalue = lvalue;
/freebsd-11-stable/contrib/gcc/
H A Dgimplify.c1817 /* Step 2 is to gimplify the base expression. Make sure lvalue is set
1837 expressions into a minimal gimple lvalue. However, that
1898 tree lhs, lvalue, rhs, t1, post = NULL, *orig_post_p = post_p;
1926 /* Gimplify the LHS into a GIMPLE lvalue. */
1927 lvalue = TREE_OPERAND (*expr_p, 0);
1928 ret = gimplify_expr (&lvalue, pre_p, post_p, is_gimple_lvalue, fb_lvalue);
1933 lhs = lvalue;
1946 t1 = build2 (MODIFY_EXPR, TREE_TYPE (lvalue), lvalue, t1);
3917 value; output operands should be a gimple lvalue
1897 tree lhs, lvalue, rhs, t1, post = NULL, *orig_post_p = post_p; local
[all...]
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Sema/
H A DDeclSpec.h1218 /// True if this is an lvalue reference, false if it's an rvalue reference.
1289 /// Whether the ref-qualifier (if any) is an lvalue reference.
1591 bool lvalue) {
1596 I.Ref.LValueRef = lvalue;
1590 getReference(unsigned TypeQuals, SourceLocation Loc, bool lvalue) argument
/freebsd-11-stable/contrib/opie/
H A Dconfigure1843 "k.c", line 2.27: 1506-025 (S) Operand must be a modifiable lvalue. */
/freebsd-11-stable/contrib/bmake/
H A Dconfigure5031 "k.c", line 2.27: 1506-025 (S) Operand must be a modifiable lvalue. */
/freebsd-11-stable/contrib/gcclibs/libdecnumber/
H A Dconfigure6187 "k.c", line 2.27: 1506-025 (S) Operand must be a modifiable lvalue. */
/freebsd-11-stable/contrib/libreadline/
H A Dconfigure3413 "k.c", line 2.27: 1506-025 (S) Operand must be a modifiable lvalue. */
/freebsd-11-stable/contrib/gcclibs/libcpp/
H A Dconfigure3788 "k.c", line 2.27: 1506-025 (S) Operand must be a modifiable lvalue. */
/freebsd-11-stable/contrib/gcclibs/libiberty/
H A Dconfigure3146 "k.c", line 2.27: 1506-025 (S) Operand must be a modifiable lvalue. */
/freebsd-11-stable/contrib/binutils/libiberty/
H A Dconfigure3243 "k.c", line 2.27: 1506-025 (S) Operand must be a modifiable lvalue. */

Completed in 683 milliseconds

12