Home
last modified time | relevance | path

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

1234

/freebsd-12-stable/lib/libc/gen/
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()
549 len = sizeof(lvalue); in sysconf()
551 if (sysctlbyname("kern.ipc.shmmin", &lvalue, &len, NULL, in sysconf()
598 len = sizeof(lvalue); in sysconf()
599 if (sysctlbyname("hw.availpages", &lvalue, &len, NULL, 0) == -1) in sysconf()
601 return (lvalue); in sysconf()
/freebsd-12-stable/contrib/llvm-project/clang/lib/CodeGen/
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 …]
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()
361 Address RealP = CGF.emitAddrOfRealComponent(SrcPtr, lvalue.getType()); in EmitLoadOfLValue()
366 Address ImagP = CGF.emitAddrOfImagComponent(SrcPtr, lvalue.getType()); in EmitLoadOfLValue()
375 void ComplexExprEmitter::EmitStoreOfComplex(ComplexPairTy Val, LValue lvalue, in EmitStoreOfComplex() argument
377 if (lvalue.getType()->isAtomicType() || in EmitStoreOfComplex()
[all …]
DCGDecl.cpp737 LValue &lvalue, in drillIntoBlockVariable() argument
739 lvalue.setAddress(CGF.emitBlockByrefAddress(lvalue.getAddress(CGF), var)); in drillIntoBlockVariable()
764 LValue lvalue, bool capturedByInit) { in EmitScalarInit() argument
765 Qualifiers::ObjCLifetime lifetime = lvalue.getObjCLifetime(); in EmitScalarInit()
769 drillIntoBlockVariable(*this, lvalue, cast<VarDecl>(D)); in EmitScalarInit()
770 EmitNullabilityCheck(lvalue, value, init->getExprLoc()); in EmitScalarInit()
771 EmitStoreThroughLValue(RValue::get(value), lvalue, true); in EmitScalarInit()
782 return EmitScalarInit(EWC->getSubExpr(), D, lvalue, capturedByInit); in EmitScalarInit()
793 LValue tempLV = lvalue; in EmitScalarInit()
841 if (!accessedByInit && tryEmitARCCopyWeakInit(*this, lvalue, init)) { in EmitScalarInit()
[all …]
DCGObjC.cpp586 LValue lvalue = EmitLValue(lvalueExpr); in EmitObjCMessageExpr() local
587 llvm::Value *result = EmitARCLoadWeakRetained(lvalue.getAddress(*this)); in EmitObjCMessageExpr()
800 LValue lvalue, QualType type);
1604 LValue lvalue in Emit() local
1606 CGF.emitDestroy(lvalue.getAddress(CGF), ivar->getType(), destroyer, in Emit()
2871 LValue lvalue, in tryEmitARCRetainLoadOfScalar() argument
2876 result = CGF.EmitLoadOfLValue(lvalue, SourceLocation()).getScalarVal(); in tryEmitARCRetainLoadOfScalar()
2879 result = CGF.EmitARCLoadWeakRetained(lvalue.getAddress(CGF)); in tryEmitARCRetainLoadOfScalar()
3247 LValue lvalue = in visitBinAssignUnsafeUnretained() local
3250 lvalue); in visitBinAssignUnsafeUnretained()
[all …]
DCGExpr.cpp1598 llvm::Value *CodeGenFunction::EmitLoadOfScalar(LValue lvalue, in EmitLoadOfScalar() argument
1600 return EmitLoadOfScalar(lvalue.getAddress(*this), lvalue.isVolatile(), in EmitLoadOfScalar()
1601 lvalue.getType(), Loc, lvalue.getBaseInfo(), in EmitLoadOfScalar()
1602 lvalue.getTBAAInfo(), lvalue.isNontemporal()); in EmitLoadOfScalar()
1817 static void EmitStoreOfMatrixScalar(llvm::Value *value, LValue lvalue, in EmitStoreOfMatrixScalar() argument
1819 Address Addr = MaybeConvertMatrixAddress(lvalue.getAddress(CGF), CGF, in EmitStoreOfMatrixScalar()
1821 CGF.EmitStoreOfScalar(value, Addr, lvalue.isVolatile(), lvalue.getType(), in EmitStoreOfMatrixScalar()
1822 lvalue.getBaseInfo(), lvalue.getTBAAInfo(), isInit, in EmitStoreOfMatrixScalar()
1823 lvalue.isNontemporal()); in EmitStoreOfMatrixScalar()
1870 void CodeGenFunction::EmitStoreOfScalar(llvm::Value *value, LValue lvalue, in EmitStoreOfScalar() argument
[all …]
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-12-stable/sys/dev/usb/video/
Dudl.c865 uint16_t lvalue;
867 lvalue = htobe16(value);
868 bcopy(&lvalue, cb->buf + cb->off, 2);
878 uint32_t lvalue; in udl_cmd_insert_int_3() local
881 lvalue = htobe32(value) << 8; in udl_cmd_insert_int_3()
883 lvalue = htobe32(value) >> 8; in udl_cmd_insert_int_3()
885 bcopy(&lvalue, cb->buf + cb->off, 3); in udl_cmd_insert_int_3()
894 uint32_t lvalue;
896 lvalue = htobe32(value);
897 bcopy(&lvalue, cb->buf + cb->off, 4);
/freebsd-12-stable/sbin/tunefs/
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-12-stable/usr.bin/bc/
Dextern.h23 struct lvalue { struct
Dbc.y146 struct lvalue lvalue; member
172 %type <lvalue> named_expression
/freebsd-12-stable/usr.bin/tip/tip/
Dtip.h156 #define lvalue(v) (long)vtable[v].v_value macro
Dcmds.c364 alarm((unsigned int)lvalue(ETIMEOUT)); in transmit()
452 alarm((unsigned int)lvalue(ETIMEOUT)); in send()
/freebsd-12-stable/sys/kern/
Dvfs_bio.c468 long lvalue; in sysctl_bufspace() local
472 lvalue = 0; in sysctl_bufspace()
474 lvalue += bdomain[i].bd_bufspace; in sysctl_bufspace()
476 return (sysctl_handle_long(oidp, &lvalue, 0, req)); in sysctl_bufspace()
477 if (lvalue > INT_MAX) in sysctl_bufspace()
479 return (sysctl_handle_long(oidp, &lvalue, 0, req)); in sysctl_bufspace()
480 ivalue = lvalue; in sysctl_bufspace()
487 long lvalue; in sysctl_bufspace() local
490 lvalue = 0; in sysctl_bufspace()
492 lvalue += bdomain[i].bd_bufspace; in sysctl_bufspace()
[all …]
/freebsd-12-stable/contrib/llvm-project/libcxx/include/
Dany600 "ValueType is required to be a const lvalue reference "
615 "ValueType is required to be an lvalue reference "
/freebsd-12-stable/contrib/binutils/libiberty/
Dobstacks.texi604 The expansion of the macro @code{obstack_alignment_mask} is an lvalue,
665 Since this macro expands to an lvalue, you can specify a new chunk size by
745 lvalue. @xref{Obstacks Data Alignment}.
748 The size for allocating chunks. This is an lvalue. @xref{Obstack Chunks}.
/freebsd-12-stable/contrib/gcclibs/libiberty/
Dobstacks.texi604 The expansion of the macro @code{obstack_alignment_mask} is an lvalue,
665 Since this macro expands to an lvalue, you can specify a new chunk size by
745 lvalue. @xref{Obstacks Data Alignment}.
748 The size for allocating chunks. This is an lvalue. @xref{Obstack Chunks}.
/freebsd-12-stable/contrib/googletest/googlemock/test/
Dgmock-actions_test.cc1248 auto lvalue = make(6); in TEST() local
1253 EXPECT_EQ(42, mock.TakeUnique(lvalue, make(7))); in TEST()
/freebsd-12-stable/contrib/gcc/cp/
Dtypeck.c4637 tree lvalue = TREE_OPERAND (arg, 0); in unary_complex_lvalue() local
4638 if (TREE_SIDE_EFFECTS (lvalue)) in unary_complex_lvalue()
4640 lvalue = stabilize_reference (lvalue); in unary_complex_lvalue()
4642 lvalue, TREE_OPERAND (arg, 1)); in unary_complex_lvalue()
4645 (code, build2 (COMPOUND_EXPR, TREE_TYPE (lvalue), arg, lvalue)); in unary_complex_lvalue()
DChangeLog-1993191 * cp-call.c (convert_harshness_ansi): When the parm isn't an lvalue,
225 * cp-call.c (convert_harshness_ansi): If the parm isn't an lvalue,
/freebsd-12-stable/contrib/gcc/
Dgimplify.c1897 tree lhs, lvalue, rhs, t1, post = NULL, *orig_post_p = post_p; in gimplify_self_mod_expr() local
1926 lvalue = TREE_OPERAND (*expr_p, 0); in gimplify_self_mod_expr()
1927 ret = gimplify_expr (&lvalue, pre_p, post_p, is_gimple_lvalue, fb_lvalue); in gimplify_self_mod_expr()
1932 lhs = lvalue; in gimplify_self_mod_expr()
1945 t1 = build2 (MODIFY_EXPR, TREE_TYPE (lvalue), lvalue, t1); in gimplify_self_mod_expr()
/freebsd-12-stable/contrib/llvm-project/clang/include/clang/Basic/
DDiagnosticSemaKinds.td733 "cannot use volatile type %1 where it causes an lvalue-to-rvalue conversion"
1862 "'this' argument to member function %0 is an %select{lvalue|rvalue}1, "
1863 "but function has %select{non-const lvalue|rvalue}2 ref-qualifier">;
2081 "%diff{of type $ with an %select{rvalue|lvalue}2 of type $|"
2082 "with an %select{rvalue|lvalue}2 of incompatible type}1,3"
2093 "bind to lvalue of type $|cannot bind to incompatible lvalue}0,1">;
2095 "%select{non-const|volatile}0 lvalue reference to type %1 cannot bind to an "
2098 "%select{non-const|volatile}0 lvalue reference %diff{to type $ cannot bind "
2101 "%select{non-const|volatile}0 lvalue reference "
2110 "%select{rvalue|lvalue}2 of type $|could not bind to %select{rvalue|lvalue}2 of "
[all …]
/freebsd-12-stable/contrib/llvm-project/clang/include/clang/Sema/
DDeclSpec.h1598 bool lvalue) { in getReference()
1603 I.Ref.LValueRef = lvalue; in getReference()
/freebsd-12-stable/contrib/llvm-project/clang/include/clang/AST/
DOperationKinds.def70 /// object representation of an lvalue as an rvalue. Created by
/freebsd-12-stable/contrib/gdb/gdb/doc/
Dagentexpr.texi459 stack. If the purpose of the expression was to compute an lvalue or a
460 range of memory, then the next-to-top of the stack is the lvalue's
461 address, and the top of the stack is the lvalue's size, in bytes.

1234