Home
last modified time | relevance | path

Searched refs:lvalue (Results 1 – 25 of 35) 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.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 lvalue.getType(), lvalue.getBaseInfo(), lvalue.getTBAAInfo()); in AtomicInfo()
112 AtomicTy = lvalue.getType(); in AtomicInfo()
115 LVal = lvalue; in AtomicInfo()
118 ValueTy = lvalue.getType(); in AtomicInfo()
[all …]
H A DCGDecl.cpp765 LValue &lvalue, in drillIntoBlockVariable() argument
767 lvalue.setAddress(CGF.emitBlockByrefAddress(lvalue.getAddress(CGF), var)); in drillIntoBlockVariable()
798 EmitNullabilityCheck(lvalue, value, init->getExprLoc()); in EmitScalarInit()
799 EmitStoreThroughLValue(RValue::get(value), lvalue, true); in EmitScalarInit()
821 LValue tempLV = lvalue; in EmitScalarInit()
882 EmitARCInitWeak(lvalue.getAddress(*this), value); in EmitScalarInit()
893 EmitNullabilityCheck(lvalue, value, init->getExprLoc()); in EmitScalarInit()
2006 EmitStoreThroughLValue(rvalue, lvalue, true); in EmitExprAsInit()
2011 EmitScalarInit(init, D, lvalue, capturedByInit); in EmitExprAsInit()
2017 EmitStoreOfComplex(complex, lvalue, /*init*/ true); in EmitExprAsInit()
[all …]
H A DCGExprComplex.cpp376 ComplexPairTy ComplexExprEmitter::EmitLoadOfLValue(LValue lvalue, in EmitLoadOfLValue() argument
378 assert(lvalue.isSimple() && "non-simple complex l-value?"); in EmitLoadOfLValue()
379 if (lvalue.getType()->isAtomicType()) in EmitLoadOfLValue()
380 return CGF.EmitAtomicLoad(lvalue, loc).getComplexVal(); in EmitLoadOfLValue()
382 Address SrcPtr = lvalue.getAddress(CGF); in EmitLoadOfLValue()
383 bool isVolatile = lvalue.isVolatileQualified(); in EmitLoadOfLValue()
404 if (lvalue.getType()->isAtomicType() || in EmitStoreOfComplex()
405 (!isInit && CGF.LValueIsSuitableForInlineAtomic(lvalue))) in EmitStoreOfComplex()
408 Address Ptr = lvalue.getAddress(CGF); in EmitStoreOfComplex()
409 Address RealPtr = CGF.emitAddrOfRealComponent(Ptr, lvalue.getType()); in EmitStoreOfComplex()
[all …]
H A DCGObjC.cpp588 LValue lvalue = EmitLValue(lvalueExpr); in EmitObjCMessageExpr() local
1652 LValue lvalue in Emit() local
3271 LValue lvalue = in visitBinAssignUnsafeUnretained() local
3274 lvalue); in visitBinAssignUnsafeUnretained()
3597 LValue lvalue = EmitLValue(e->getLHS()); in EmitARCStoreUnsafeUnretained() local
3598 EmitStoreOfScalar(value, lvalue); in EmitARCStoreUnsafeUnretained()
3620 LValue lvalue = EmitLValue(e->getLHS()); in EmitARCStoreStrong() local
3625 EmitStoreOfScalar(value, lvalue); in EmitARCStoreStrong()
3628 value = EmitARCStoreStrong(lvalue, value, ignored); in EmitARCStoreStrong()
3637 LValue lvalue = EmitLValue(e->getLHS()); in EmitARCStoreAutoreleasing() local
[all …]
H A DCGExpr.cpp1849 return EmitLoadOfScalar(lvalue.getAddress(*this), lvalue.isVolatile(), in EmitLoadOfScalar()
1850 lvalue.getType(), Loc, lvalue.getBaseInfo(), in EmitLoadOfScalar()
1851 lvalue.getTBAAInfo(), lvalue.isNontemporal()); in EmitLoadOfScalar()
2087 CGF.EmitStoreOfScalar(value, Addr, lvalue.isVolatile(), lvalue.getType(), in EmitStoreOfMatrixScalar()
2088 lvalue.getBaseInfo(), lvalue.getTBAAInfo(), isInit, in EmitStoreOfMatrixScalar()
2089 lvalue.isNontemporal()); in EmitStoreOfMatrixScalar()
2150 if (lvalue.getType()->isConstantMatrixType()) { in EmitStoreOfScalar()
2155 EmitStoreOfScalar(value, lvalue.getAddress(*this), lvalue.isVolatile(), in EmitStoreOfScalar()
2156 lvalue.getType(), lvalue.getBaseInfo(), in EmitStoreOfScalar()
2157 lvalue.getTBAAInfo(), isInit, lvalue.isNontemporal()); in EmitStoreOfScalar()
[all …]
H A DCodeGenFunction.h1377 LValue lvalue)
1378 : CGF(CGF), Data(OpaqueValueMappingData::bind(CGF, opaqueValue, lvalue)) {
2731 void EmitExprAsInit(const Expr *init, const ValueDecl *D, LValue lvalue,
3122 void EmitScalarInit(const Expr *init, const ValueDecl *D, LValue lvalue,
3893 void EmitAtomicInit(Expr *E, LValue lvalue);
3900 RValue EmitAtomicLoad(LValue lvalue, SourceLocation loc,
3904 void EmitAtomicStore(RValue rvalue, LValue lvalue, bool isInit);
3906 void EmitAtomicStore(RValue rvalue, LValue lvalue, llvm::AtomicOrdering AO,
3956 llvm::Value *EmitLoadOfScalar(LValue lvalue, SourceLocation Loc);
3979 void EmitStoreOfScalar(llvm::Value *value, LValue lvalue, bool isInit=false);
[all …]
/freebsd/sys/dev/usb/video/
H A Dudl.c861 uint16_t lvalue;
863 lvalue = htobe16(value);
864 bcopy(&lvalue, cb->buf + cb->off, 2);
874 uint32_t lvalue; in udl_cmd_insert_int_3() local
877 lvalue = htobe32(value) << 8; in udl_cmd_insert_int_3()
879 lvalue = htobe32(value) >> 8; in udl_cmd_insert_int_3()
881 bcopy(&lvalue, cb->buf + cb->off, 3); in udl_cmd_insert_int_3()
890 uint32_t lvalue;
892 lvalue = htobe32(value);
893 bcopy(&lvalue, cb->buf + cb->off, 4);
/freebsd/sys/kern/
H A Dkern_mib.c149 u_long lvalue; in sysctl_maxphys() local
152 lvalue = maxphys; in sysctl_maxphys()
154 return (sysctl_handle_long(oidp, &lvalue, 0, req)); in sysctl_maxphys()
155 if (lvalue > INT_MAX) in sysctl_maxphys()
156 return (sysctl_handle_long(oidp, &lvalue, 0, req)); in sysctl_maxphys()
157 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/bc/
H A Dextern.h22 struct lvalue { struct
H A Dbc.y143 struct lvalue lvalue; member
169 %type <lvalue> named_expression
/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 Dany525 "ValueType is required to be a const lvalue reference "
537 "ValueType is required to be an lvalue reference "
H A D__tree100 end_node->__left_ is an externably accessible lvalue for __root, and can be
/freebsd/contrib/llvm-project/clang/include/clang/Basic/
H A DDiagnosticSemaKinds.td2226 "bind to lvalue of type $|cannot bind to incompatible lvalue}0,1">;
2234 "%select{non-const|volatile}0 lvalue reference "
2243 "%select{rvalue|lvalue}2 of type $|could not bind to %select{rvalue|lvalue}2 of "
4811 "expects an %select{lvalue|rvalue}5 for "
5234 "%select{rvalue|lvalue}1">;
9064 InGroup<DiagGroup<"unused-volatile-lvalue">>;
9142 "invalid lvalue in asm input for constraint '%0'">;
9570 "lvalue reference type">;
10374 "selector element is not a valid lvalue">;
11006 " where x is a lvalue expression with scalar type">;
[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.h1637 bool lvalue) { in getReference()
1642 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 Dconfigure5617 "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. */

12