Home
last modified time | relevance | path

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

12

/freebsd-13.1/lib/libc/gen/
H A Dsysconf.c80 long lvalue, defaultresult; in sysconf() local
190 lvalue = pathconf(path, _PC_NAME_MAX); in sysconf()
191 if (lvalue == -1 && errno != 0) in sysconf()
194 return (lvalue); in sysconf()
546 len = sizeof(lvalue); in sysconf()
548 if (sysctlbyname("kern.ipc.shmmin", &lvalue, &len, NULL, in sysconf()
595 len = sizeof(lvalue); in sysconf()
596 if (sysctlbyname("hw.availpages", &lvalue, &len, NULL, 0) == -1) in sysconf()
598 return (lvalue); in sysconf()
/freebsd-13.1/contrib/llvm-project/clang/lib/CodeGen/
H A DCGAtomic.cpp46 assert(!lvalue.isGlobalReg()); in AtomicInfo()
48 if (lvalue.isSimple()) { in AtomicInfo()
49 AtomicTy = lvalue.getType(); in AtomicInfo()
74 LVal = lvalue; in AtomicInfo()
76 ValueTy = lvalue.getType(); in AtomicInfo()
86 lvalue.getAlignment(); in AtomicInfo()
98 BFI, lvalue.getType(), lvalue.getBaseInfo(), in AtomicInfo()
113 AtomicTy = lvalue.getType(); in AtomicInfo()
116 LVal = lvalue; in AtomicInfo()
119 ValueTy = lvalue.getType(); in AtomicInfo()
[all …]
H A DCGExprComplex.cpp349 ComplexPairTy ComplexExprEmitter::EmitLoadOfLValue(LValue lvalue, in EmitLoadOfLValue() argument
351 assert(lvalue.isSimple() && "non-simple complex l-value?"); in EmitLoadOfLValue()
352 if (lvalue.getType()->isAtomicType()) in EmitLoadOfLValue()
353 return CGF.EmitAtomicLoad(lvalue, loc).getComplexVal(); in EmitLoadOfLValue()
355 Address SrcPtr = lvalue.getAddress(CGF); in EmitLoadOfLValue()
356 bool isVolatile = lvalue.isVolatileQualified(); in EmitLoadOfLValue()
377 if (lvalue.getType()->isAtomicType() || in EmitStoreOfComplex()
378 (!isInit && CGF.LValueIsSuitableForInlineAtomic(lvalue))) in EmitStoreOfComplex()
381 Address Ptr = lvalue.getAddress(CGF); in EmitStoreOfComplex()
382 Address RealPtr = CGF.emitAddrOfRealComponent(Ptr, lvalue.getType()); in EmitStoreOfComplex()
[all …]
H A DCGDecl.cpp737 LValue &lvalue, in drillIntoBlockVariable() argument
739 lvalue.setAddress(CGF.emitBlockByrefAddress(lvalue.getAddress(CGF), var)); in drillIntoBlockVariable()
770 EmitNullabilityCheck(lvalue, value, init->getExprLoc()); in EmitScalarInit()
771 EmitStoreThroughLValue(RValue::get(value), lvalue, true); in EmitScalarInit()
793 LValue tempLV = lvalue; in EmitScalarInit()
854 EmitARCInitWeak(lvalue.getAddress(*this), value); in EmitScalarInit()
865 EmitNullabilityCheck(lvalue, value, init->getExprLoc()); in EmitScalarInit()
1929 EmitStoreThroughLValue(rvalue, lvalue, true); in EmitExprAsInit()
1934 EmitScalarInit(init, D, lvalue, capturedByInit); in EmitExprAsInit()
1940 EmitStoreOfComplex(complex, lvalue, /*init*/ true); in EmitExprAsInit()
[all …]
H A DCGObjC.cpp586 LValue lvalue = EmitLValue(lvalueExpr); in EmitObjCMessageExpr() local
1604 LValue lvalue in Emit() local
3247 LValue lvalue = in visitBinAssignUnsafeUnretained() local
3250 lvalue); in visitBinAssignUnsafeUnretained()
3572 LValue lvalue = EmitLValue(e->getLHS()); in EmitARCStoreUnsafeUnretained() local
3573 EmitStoreOfScalar(value, lvalue); in EmitARCStoreUnsafeUnretained()
3595 LValue lvalue = EmitLValue(e->getLHS()); in EmitARCStoreStrong() local
3600 EmitStoreOfScalar(value, lvalue); in EmitARCStoreStrong()
3603 value = EmitARCStoreStrong(lvalue, value, ignored); in EmitARCStoreStrong()
3612 LValue lvalue = EmitLValue(e->getLHS()); in EmitARCStoreAutoreleasing() local
[all …]
H A DCGExpr.cpp1600 return EmitLoadOfScalar(lvalue.getAddress(*this), lvalue.isVolatile(), in EmitLoadOfScalar()
1601 lvalue.getType(), Loc, lvalue.getBaseInfo(), in EmitLoadOfScalar()
1602 lvalue.getTBAAInfo(), lvalue.isNontemporal()); in EmitLoadOfScalar()
1821 CGF.EmitStoreOfScalar(value, Addr, lvalue.isVolatile(), lvalue.getType(), in EmitStoreOfMatrixScalar()
1822 lvalue.getBaseInfo(), lvalue.getTBAAInfo(), isInit, in EmitStoreOfMatrixScalar()
1823 lvalue.isNontemporal()); in EmitStoreOfMatrixScalar()
1872 if (lvalue.getType()->isConstantMatrixType()) { in EmitStoreOfScalar()
1877 EmitStoreOfScalar(value, lvalue.getAddress(*this), lvalue.isVolatile(), in EmitStoreOfScalar()
1878 lvalue.getType(), lvalue.getBaseInfo(), in EmitStoreOfScalar()
1879 lvalue.getTBAAInfo(), isInit, lvalue.isNontemporal()); in EmitStoreOfScalar()
[all …]
H A DCodeGenFunction.h1326 LValue lvalue)
1327 : CGF(CGF), Data(OpaqueValueMappingData::bind(CGF, opaqueValue, lvalue)) {
2609 void EmitExprAsInit(const Expr *init, const ValueDecl *D, LValue lvalue,
2981 void EmitScalarInit(const Expr *init, const ValueDecl *D, LValue lvalue,
3716 void EmitAtomicInit(Expr *E, LValue lvalue);
3723 RValue EmitAtomicLoad(LValue lvalue, SourceLocation loc,
3727 void EmitAtomicStore(RValue rvalue, LValue lvalue, bool isInit);
3729 void EmitAtomicStore(RValue rvalue, LValue lvalue, llvm::AtomicOrdering AO,
3779 llvm::Value *EmitLoadOfScalar(LValue lvalue, SourceLocation Loc);
3802 void EmitStoreOfScalar(llvm::Value *value, LValue lvalue, bool isInit=false);
[all …]
/freebsd-13.1/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-13.1/sys/kern/
H A Dkern_mib.c153 u_long lvalue; in sysctl_maxphys() local
156 lvalue = maxphys; in sysctl_maxphys()
158 return (sysctl_handle_long(oidp, &lvalue, 0, req)); in sysctl_maxphys()
159 if (lvalue > INT_MAX) in sysctl_maxphys()
160 return (sysctl_handle_long(oidp, &lvalue, 0, req)); in sysctl_maxphys()
161 ivalue = lvalue; in sysctl_maxphys()
H A Dvfs_bio.c474 long lvalue; in sysctl_bufspace() local
478 lvalue = 0; in sysctl_bufspace()
480 lvalue += bdomain[i].bd_bufspace; in sysctl_bufspace()
482 return (sysctl_handle_long(oidp, &lvalue, 0, req)); in sysctl_bufspace()
483 if (lvalue > INT_MAX) in sysctl_bufspace()
485 return (sysctl_handle_long(oidp, &lvalue, 0, req)); in sysctl_bufspace()
486 ivalue = lvalue; in sysctl_bufspace()
493 long lvalue; in sysctl_bufspace() local
496 lvalue = 0; in sysctl_bufspace()
498 lvalue += bdomain[i].bd_bufspace; in sysctl_bufspace()
[all …]
/freebsd-13.1/sbin/tunefs/
H A Dtunefs.c90 const char *avalue, *jvalue, *Jvalue, *Lvalue, *lvalue, *Nvalue, *nvalue; in main() local
109 avalue = jvalue = Jvalue = Lvalue = lvalue = Nvalue = nvalue = NULL; in main()
210 lvalue = optarg; in main()
211 if (strcmp(lvalue, "enable") && in main()
212 strcmp(lvalue, "disable")) { in main()
446 if (strcmp(lvalue, "enable") == 0) { in main()
453 } else if (strcmp(lvalue, "disable") == 0) { in main()
/freebsd-13.1/usr.bin/bc/
H A Dextern.h23 struct lvalue { struct
H A Dbc.y146 struct lvalue lvalue; member
172 %type <lvalue> named_expression
/freebsd-13.1/usr.bin/tip/tip/
H A Dtip.h156 #define lvalue(v) (long)vtable[v].v_value macro
H A Dcmds.c364 alarm((unsigned int)lvalue(ETIMEOUT)); in transmit()
452 alarm((unsigned int)lvalue(ETIMEOUT)); in send()
/freebsd-13.1/contrib/llvm-project/libcxx/include/
H A Dany600 "ValueType is required to be a const lvalue reference "
615 "ValueType is required to be an lvalue reference "
H A Dtype_traits2545 // If A and B are both lvalue reference types, COMMON-REF(A, B) is
2575 // ... If A is an rvalue reference and B is an lvalue reference and D is well-formed and
2585 // Otherwise, if A is an lvalue reference and B is an rvalue reference, then
H A D__tree68 end_node->__left_ is an externably accessible lvalue for __root, and can be
/freebsd-13.1/contrib/googletest/googlemock/test/
H A Dgmock-actions_test.cc1248 auto lvalue = make(6); in TEST() local
1253 EXPECT_EQ(42, mock.TakeUnique(lvalue, make(7))); in TEST()
/freebsd-13.1/contrib/llvm-project/clang/include/clang/Basic/
H A DDiagnosticSemaKinds.td2093 "bind to lvalue of type $|cannot bind to incompatible lvalue}0,1">;
2101 "%select{non-const|volatile}0 lvalue reference "
2110 "%select{rvalue|lvalue}2 of type $|could not bind to %select{rvalue|lvalue}2 of "
4495 "expects an %select{lvalue|rvalue}5 for "
4902 "%select{rvalue|lvalue}1">;
8586 InGroup<DiagGroup<"unused-volatile-lvalue">>;
8661 "invalid lvalue in asm input for constraint '%0'">;
9064 "lvalue reference type">;
9806 "selector element is not a valid lvalue">;
10420 " where x is a lvalue expression with scalar type">;
[all …]
/freebsd-13.1/contrib/llvm-project/clang/include/clang/Sema/
H A DDeclSpec.h1598 bool lvalue) { in getReference()
1603 I.Ref.LValueRef = lvalue; in getReference()
/freebsd-13.1/contrib/llvm-project/clang/include/clang/AST/
H A DOperationKinds.def70 /// object representation of an lvalue as an rvalue. Created by
/freebsd-13.1/contrib/opie/
H A Dconfigure1843 "k.c", line 2.27: 1506-025 (S) Operand must be a modifiable lvalue. */
/freebsd-13.1/contrib/bmake/
H A Dconfigure5278 "k.c", line 2.27: 1506-025 (S) Operand must be a modifiable lvalue. */
/freebsd-13.1/contrib/flex/src/
H A Dflex.skl560 * NULL or when we need an lvalue. For internal use only.

12