Home
last modified time | relevance | path

Searched refs:lvalue (Results 1 – 25 of 33) sorted by relevance

12

/freebsd/lib/libc/gen/
H A Dsysconf.c76 long lvalue, defaultresult; in sysconf() local
186 lvalue = pathconf(path, _PC_NAME_MAX); in sysconf()
187 if (lvalue == -1 && errno != 0) in sysconf()
190 return (lvalue); in sysconf()
542 len = sizeof(lvalue); in sysconf()
544 if (sysctlbyname("kern.ipc.shmmin", &lvalue, &len, NULL, in sysconf()
591 len = sizeof(lvalue); in sysconf()
592 if (sysctlbyname("hw.availpages", &lvalue, &len, NULL, 0) == -1) in sysconf()
594 return (lvalue); in sysconf()
/freebsd/contrib/llvm-project/clang/lib/CodeGen/
H A DCGAtomic.cpp43 AtomicInfo(CodeGenFunction &CGF, LValue &lvalue) in AtomicInfo() argument
46 assert(!lvalue.isGlobalReg()); in AtomicInfo()
48 if (lvalue.isSimple()) { in AtomicInfo()
49 AtomicTy = lvalue.getType(); in AtomicInfo()
71 if (lvalue.getAlignment().isZero()) in AtomicInfo()
72 lvalue.setAlignment(AtomicAlign); in AtomicInfo()
74 LVal = lvalue; in AtomicInfo()
75 } else if (lvalue.isBitField()) { in AtomicInfo()
76 ValueTy = lvalue.getType(); in AtomicInfo()
78 auto &OrigBFI = lvalue.getBitFieldInfo(); in AtomicInfo()
[all …]
H A DCGDecl.cpp768 LValue &lvalue, in drillIntoBlockVariable() argument
770 lvalue.setAddress(CGF.emitBlockByrefAddress(lvalue.getAddress(), var)); in drillIntoBlockVariable()
795 LValue lvalue, bool capturedByInit) { in EmitScalarInit() argument
796 Qualifiers::ObjCLifetime lifetime = lvalue.getObjCLifetime(); in EmitScalarInit()
800 drillIntoBlockVariable(*this, lvalue, cast<VarDecl>(D)); in EmitScalarInit()
801 EmitNullabilityCheck(lvalue, value, init->getExprLoc()); in EmitScalarInit()
802 EmitStoreThroughLValue(RValue::get(value), lvalue, true); in EmitScalarInit()
813 return EmitScalarInit(EWC->getSubExpr(), D, lvalue, capturedByInit); in EmitScalarInit()
824 LValue tempLV = lvalue; in EmitScalarInit()
871 if (!accessedByInit && tryEmitARCCopyWeakInit(*this, lvalue, init)) { in EmitScalarInit()
[all …]
H A DCGExprComplex.cpp439 ComplexPairTy ComplexExprEmitter::EmitLoadOfLValue(LValue lvalue, in EmitLoadOfLValue() argument
441 assert(lvalue.isSimple() && "non-simple complex l-value?"); in EmitLoadOfLValue()
442 if (lvalue.getType()->isAtomicType()) in EmitLoadOfLValue()
443 return CGF.EmitAtomicLoad(lvalue, loc).getComplexVal(); in EmitLoadOfLValue()
445 Address SrcPtr = lvalue.getAddress(); in EmitLoadOfLValue()
446 bool isVolatile = lvalue.isVolatileQualified(); in EmitLoadOfLValue()
451 Address RealP = CGF.emitAddrOfRealComponent(SrcPtr, lvalue.getType()); in EmitLoadOfLValue()
456 Address ImagP = CGF.emitAddrOfImagComponent(SrcPtr, lvalue.getType()); in EmitLoadOfLValue()
465 void ComplexExprEmitter::EmitStoreOfComplex(ComplexPairTy Val, LValue lvalue, in EmitStoreOfComplex() argument
467 if (lvalue.getType()->isAtomicType() || in EmitStoreOfComplex()
[all …]
H A DCGObjC.cpp588 LValue lvalue = EmitLValue(lvalueExpr); in EmitObjCMessageExpr() local
589 llvm::Value *result = EmitARCLoadWeakRetained(lvalue.getAddress()); in EmitObjCMessageExpr()
803 LValue lvalue, QualType type);
1656 LValue lvalue in Emit() local
1658 CGF.emitDestroy(lvalue.getAddress(), ivar->getType(), destroyer, in Emit()
2893 LValue lvalue, in tryEmitARCRetainLoadOfScalar() argument
2898 result = CGF.EmitLoadOfLValue(lvalue, SourceLocation()).getScalarVal(); in tryEmitARCRetainLoadOfScalar()
2901 result = CGF.EmitARCLoadWeakRetained(lvalue.getAddress()); in tryEmitARCRetainLoadOfScalar()
3269 LValue lvalue = in visitBinAssignUnsafeUnretained() local
3272 lvalue); in visitBinAssignUnsafeUnretained()
[all …]
H A DCGExpr.cpp1841 llvm::Value *CodeGenFunction::EmitLoadOfScalar(LValue lvalue, in EmitLoadOfScalar() argument
1843 return EmitLoadOfScalar(lvalue.getAddress(), lvalue.isVolatile(), in EmitLoadOfScalar()
1844 lvalue.getType(), Loc, lvalue.getBaseInfo(), in EmitLoadOfScalar()
1845 lvalue.getTBAAInfo(), lvalue.isNontemporal()); in EmitLoadOfScalar()
2092 static void EmitStoreOfMatrixScalar(llvm::Value *value, LValue lvalue, in EmitStoreOfMatrixScalar() argument
2094 Address Addr = MaybeConvertMatrixAddress(lvalue.getAddress(), CGF, in EmitStoreOfMatrixScalar()
2096 CGF.EmitStoreOfScalar(value, Addr, lvalue.isVolatile(), lvalue.getType(), in EmitStoreOfMatrixScalar()
2097 lvalue.getBaseInfo(), lvalue.getTBAAInfo(), isInit, in EmitStoreOfMatrixScalar()
2098 lvalue.isNontemporal()); in EmitStoreOfMatrixScalar()
2150 void CodeGenFunction::EmitStoreOfScalar(llvm::Value *value, LValue lvalue, in EmitStoreOfScalar() argument
[all …]
H A DCodeGenFunction.h1465 LValue lvalue)
1466 : CGF(CGF), Data(OpaqueValueMappingData::bind(CGF, opaqueValue, lvalue)) {
2929 void EmitExprAsInit(const Expr *init, const ValueDecl *D, LValue lvalue,
3340 void EmitScalarInit(const Expr *init, const ValueDecl *D, LValue lvalue,
4139 void EmitAtomicInit(Expr *E, LValue lvalue);
4146 RValue EmitAtomicLoad(LValue lvalue, SourceLocation loc,
4150 void EmitAtomicStore(RValue rvalue, LValue lvalue, bool isInit);
4152 void EmitAtomicStore(RValue rvalue, LValue lvalue, llvm::AtomicOrdering AO,
4202 llvm::Value *EmitLoadOfScalar(LValue lvalue, SourceLocation Loc);
4225 void EmitStoreOfScalar(llvm::Value *value, LValue lvalue, bool isInit=false);
[all …]
/freebsd/sys/dev/usb/video/
H A Dudl.c864 uint16_t lvalue;
866 lvalue = htobe16(value);
867 bcopy(&lvalue, cb->buf + cb->off, 2);
877 uint32_t lvalue; in udl_cmd_insert_int_3() local
880 lvalue = htobe32(value) << 8; in udl_cmd_insert_int_3()
882 lvalue = htobe32(value) >> 8; in udl_cmd_insert_int_3()
884 bcopy(&lvalue, cb->buf + cb->off, 3); in udl_cmd_insert_int_3()
893 uint32_t lvalue;
895 lvalue = htobe32(value);
896 bcopy(&lvalue, cb->buf + cb->off, 4);
/freebsd/sys/kern/
H A Dkern_mib.c151 u_long lvalue; in sysctl_maxphys() local
154 lvalue = maxphys; in sysctl_maxphys()
156 return (sysctl_handle_long(oidp, &lvalue, 0, req)); in sysctl_maxphys()
157 if (lvalue > INT_MAX) in sysctl_maxphys()
158 return (sysctl_handle_long(oidp, &lvalue, 0, req)); in sysctl_maxphys()
159 ivalue = lvalue; in sysctl_maxphys()
H A Dvfs_bio.c479 long lvalue; in sysctl_bufspace() local
483 lvalue = 0; in sysctl_bufspace()
485 lvalue += bdomain[i].bd_bufspace; in sysctl_bufspace()
487 return (sysctl_handle_long(oidp, &lvalue, 0, req)); in sysctl_bufspace()
488 if (lvalue > INT_MAX) in sysctl_bufspace()
490 return (sysctl_handle_long(oidp, &lvalue, 0, req)); in sysctl_bufspace()
491 ivalue = lvalue; in sysctl_bufspace()
498 long lvalue; in sysctl_bufspace() local
501 lvalue = 0; in sysctl_bufspace()
503 lvalue += bdomain[i].bd_bufspace; in sysctl_bufspace()
[all …]
/freebsd/sbin/tunefs/
H A Dtunefs.c78 const char *avalue, *jvalue, *Jvalue, *Lvalue, *lvalue, *Nvalue, *nvalue; in main() local
93 avalue = jvalue = Jvalue = Lvalue = lvalue = Nvalue = nvalue = NULL; in main()
193 lvalue = optarg; in main()
194 if (strcmp(lvalue, "enable") && in main()
195 strcmp(lvalue, "disable")) { in main()
422 if (strcmp(lvalue, "enable") == 0) { in main()
429 } else if (strcmp(lvalue, "disable") == 0) { in main()
/freebsd/usr.bin/tip/tip/
H A Dtip.h153 #define lvalue(v) (long)(intptr_t)vtable[v].v_value macro
H A Dcmds.c354 alarm((unsigned int)lvalue(ETIMEOUT)); in transmit()
442 alarm((unsigned int)lvalue(ETIMEOUT)); in send()
/freebsd/contrib/llvm-project/libcxx/include/
H A Dany522 "ValueType is required to be a const lvalue reference "
534 "ValueType is required to be an lvalue reference "
H A D__tree98 end_node->__left_ is an externably accessible lvalue for __root, and can be
/freebsd/contrib/llvm-project/clang/include/clang/Basic/
H A DDiagnosticSemaKinds.td745 "due to lvalue conversion of the controlling expression, association of type "
798 "cannot use volatile type %1 where it causes an lvalue-to-rvalue conversion"
2033 "'this' argument to member function %0 is an %select{lvalue|rvalue}1, "
2034 "but function has %select{non-const lvalue|rvalue}2 ref-qualifier">;
2257 "%diff{of type $ with an %select{rvalue|lvalue}2 of type $|"
2258 "with an %select{rvalue|lvalue}2 of incompatible type}1,3"
2269 "bind to lvalue of type $|cannot bind to incompatible lvalue}0,1">;
2271 "%select{non-const|volatile}0 lvalue reference to type %1 cannot bind to an "
2274 "%select{non-const|volatile}0 lvalue reference %diff{to type $ cannot bind "
2277 "%select{non-const|volatile}0 lvalue reference "
[all …]
/freebsd/contrib/googletest/googlemock/test/
H A Dgmock-actions_test.cc1851 auto lvalue = make(6); in TEST() local
1856 EXPECT_EQ(42, mock.TakeUnique(lvalue, make(7))); in TEST()
/freebsd/contrib/llvm-project/clang/include/clang/Sema/
H A DDeclSpec.h1685 bool lvalue) { in getReference()
1690 I.Ref.LValueRef = lvalue; in getReference()
/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DOperationKinds.def70 /// object representation of an lvalue as an rvalue. Created by
/freebsd/contrib/flex/src/
H A Dflex.skl560 * NULL or when we need an lvalue. For internal use only.
/freebsd/usr.sbin/bsdconfig/share/
H A Ddialog.subr1565 # lvalue to indirection or in a sub-shell that provides data on stdin.
/freebsd/contrib/bmake/
H A Dconfigure5737 "k.c", line 2.27: 1506-025 (S) Operand must be a modifiable lvalue. */
/freebsd/crypto/heimdal/
H A Dconfigure15259 "k.c", line 2.27: 1506-025 (S) Operand must be a modifiable lvalue. */
25542 "k.c", line 2.27: 1506-025 (S) Operand must be a modifiable lvalue. */
/freebsd/contrib/ntp/sntp/
H A Dconfigure7611 "k.c", line 2.27: 1506-025 (S) Operand must be a modifiable lvalue. */
7787 "k.c", line 2.27: 1506-025 (S) Operand must be a modifiable lvalue. */
/freebsd/contrib/openbsm/
H A Dconfigure12951 "k.c", line 2.27: 1506-025 (S) Operand must be a modifiable lvalue. */

12