Home
last modified time | relevance | path

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

1234

/external/clang/test/CXX/over/over.match/over.match.funcs/
Dp4-0x.cpp4 template<typename T> T &lvalue();
41 int &ir1 = lvalue<X0>().f(); in test_ref_qualifier_binding()
44 int &ir2 = lvalue<X0>().ft(1); in test_ref_qualifier_binding()
50 int &ir1 = lvalue<X0>()(); in test_ref_qualifier_binding_with_surrogates()
56 int &ir1 = lvalue<X0>() + prvalue<X0>(); in test_ref_qualifier_binding_operators()
59 int &ir2 = lvalue<X0>() + 1; in test_ref_qualifier_binding_operators()
65 int &ir1 = lvalue<X0>().h(); in test_ref_qualifier_overloading()
68 int &ir2 = lvalue<X0>().h2(); in test_ref_qualifier_overloading()
/external/ppp/pppd/plugins/radius/
Davpair.c77 vp->lvalue = len; in rc_avpair_assign()
80 vp->lvalue = strlen((char *) pval); in rc_avpair_assign()
90 vp->lvalue = * (UINT4 *) pval; in rc_avpair_assign()
158 UINT4 lvalue; in rc_avpair_gen() local
227 pair->lvalue = attrlen; in rc_avpair_gen()
233 memcpy ((char *) &lvalue, (char *) ptr, in rc_avpair_gen()
235 pair->lvalue = ntohl (lvalue); in rc_avpair_gen()
268 UINT4 lvalue; in rc_extract_vendor_specific_attributes() local
322 pair->lvalue = vlen; in rc_extract_vendor_specific_attributes()
328 memcpy ((char *) &lvalue, (char *) ptr, in rc_extract_vendor_specific_attributes()
[all …]
Dradius.c573 if (vp->lvalue != PW_FRAMED) { in radius_setparams()
575 vp->lvalue, rstate.user); in radius_setparams()
583 if (vp->lvalue != PW_PPP) { in radius_setparams()
585 vp->lvalue, rstate.user); in radius_setparams()
592 maxconnect = vp->lvalue; in radius_setparams()
604 idle_time_limit = vp->lvalue; in radius_setparams()
609 maxoctets = vp->lvalue; in radius_setparams()
613 maxoctets_dir = ( vp->lvalue > 4 ) ? 0 : vp->lvalue ; in radius_setparams()
618 rstate.acct_interim_interval = vp->lvalue; in radius_setparams()
628 remote = vp->lvalue; in radius_setparams()
[all …]
Dsendserver.c37 UINT4 lvalue; in rc_pack_list() local
65 length = vp->lvalue; in rc_pack_list()
77 lvalue = htonl(vp->lvalue); in rc_pack_list()
78 memcpy(buf, (char *) &lvalue, sizeof(UINT4)); in rc_pack_list()
93 length = vp->lvalue; in rc_pack_list()
133 length = vp->lvalue; in rc_pack_list()
158 length = vp->lvalue; in rc_pack_list()
168 lvalue = htonl (vp->lvalue); in rc_pack_list()
169 memcpy (buf, (char *) &lvalue, sizeof (UINT4)); in rc_pack_list()
221 (vp->lvalue == PW_ADMINISTRATIVE)) in rc_send_server()
/external/mesa3d/src/gallium/drivers/llvmpipe/
Dlp_test_main.c148 long long lvalue = (long long)value; in write_elem() local
149 lvalue = MIN2(lvalue, ((long long)1 << (type.width - 1)) - 1); in write_elem()
152 *((int8_t *)dst + index) = (int8_t)lvalue; in write_elem()
155 *((int16_t *)dst + index) = (int16_t)lvalue; in write_elem()
158 *((int32_t *)dst + index) = (int32_t)lvalue; in write_elem()
161 *((int64_t *)dst + index) = (int64_t)lvalue; in write_elem()
168 unsigned long long lvalue = (long long)value; in write_elem() local
169 lvalue = MIN2(lvalue, ((unsigned long long)1 << type.width) - 1); in write_elem()
172 *((uint8_t *)dst + index) = (uint8_t)lvalue; in write_elem()
175 *((uint16_t *)dst + index) = (uint16_t)lvalue; in write_elem()
[all …]
/external/clang/test/CXX/expr/expr.post/expr.static.cast/
Dp3-0x.cpp9 template<typename T> T& lvalue();
15 A &&ar2 = static_cast<A&&>(lvalue<A>()); in test()
16 A &&ar3 = static_cast<A&&>(lvalue<B>()); in test()
21 const A &&ar8 = static_cast<const A&&>(lvalue<A>()); in test()
22 const A &&ar9 = static_cast<const A&&>(lvalue<B>()); in test()
/external/clang/test/CXX/dcl.decl/dcl.init/dcl.init.ref/
Dp5-0x.cpp7 template<typename T> T& lvalue();
216 …int & ir1 = (lvalue<IntBitfield>().i); // expected-error{{non-const reference cannot bind to bit-f… in test()
219 int && ir4 = move(lvalue<IntBitfield>()).i; // no-warning in test()
221 …volatile int & vir1 = (lvalue<IntBitfield>().i); // expected-error{{non-const reference cannot bin… in test()
224 volatile int && vir4 = move(lvalue<IntBitfield>()).i; // no-warning in test()
226 const int & cir1 = (lvalue<IntBitfield>().i); // no-warning in test()
229 const int && cir4 = move(lvalue<IntBitfield>()).i; // no-warning in test()
231 …const volatile int & cvir1 = (lvalue<IntBitfield>().i); // expected-error{{non-const reference can… in test()
234 const volatile int && cvir4 = move(lvalue<IntBitfield>()).i; // no-warning in test()
/external/clang/test/CXX/temp/temp.fct.spec/temp.deduct/temp.deduct.call/
Dp3-0x.cpp15 template<typename T> T& lvalue();
20 X<int&> xi2 = f0(lvalue<int>()); in test_f0()
23 X<Y&> xy2 = f0(lvalue<Y>()); in test_f0()
32 f1(lvalue<int>()); // expected-error{{no matching function for call to 'f1'}} in test_f1()
35 f1(lvalue<Y>()); // expected-error{{no matching function for call to 'f1'}} in test_f1()
/external/clang/test/CXX/expr/expr.mptr.oper/
Dp6-0x.cpp5 template<typename T> T& lvalue();
18 (lvalue<X>().*pmf)(17); in test()
24 (lvalue<X>().*l_pmf)(17); in test()
30 …(lvalue<X>().*r_pmf)(17); // expected-error-re{{pointer-to-member function type 'int (X::*)(int){{… in test()
/external/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 …]
DCGDecl.cpp598 LValue &lvalue, in drillIntoBlockVariable() argument
600 lvalue.setAddress(CGF.BuildBlockByrefAddress(lvalue.getAddress(), var)); in drillIntoBlockVariable()
604 LValue lvalue, bool capturedByInit) { in EmitScalarInit() argument
605 Qualifiers::ObjCLifetime lifetime = lvalue.getObjCLifetime(); in EmitScalarInit()
609 drillIntoBlockVariable(*this, lvalue, cast<VarDecl>(D)); in EmitScalarInit()
610 EmitStoreThroughLValue(RValue::get(value), lvalue, true); in EmitScalarInit()
633 LValue tempLV = lvalue; in EmitScalarInit()
681 if (capturedByInit) drillIntoBlockVariable(*this, lvalue, cast<VarDecl>(D)); in EmitScalarInit()
683 EmitARCStoreWeak(lvalue.getAddress(), value, /*ignored*/ true); in EmitScalarInit()
685 EmitARCInitWeak(lvalue.getAddress(), value); in EmitScalarInit()
[all …]
DCGExprComplex.cpp303 ComplexPairTy ComplexExprEmitter::EmitLoadOfLValue(LValue lvalue, in EmitLoadOfLValue() argument
305 assert(lvalue.isSimple() && "non-simple complex l-value?"); in EmitLoadOfLValue()
306 if (lvalue.getType()->isAtomicType()) in EmitLoadOfLValue()
307 return CGF.EmitAtomicLoad(lvalue, loc).getComplexVal(); in EmitLoadOfLValue()
309 llvm::Value *SrcPtr = lvalue.getAddress(); in EmitLoadOfLValue()
310 bool isVolatile = lvalue.isVolatileQualified(); in EmitLoadOfLValue()
311 unsigned AlignR = lvalue.getAlignment().getQuantity(); in EmitLoadOfLValue()
313 QualType ComplexTy = lvalue.getType(); in EmitLoadOfLValue()
337 void ComplexExprEmitter::EmitStoreOfComplex(ComplexPairTy Val, LValue lvalue, in EmitStoreOfComplex() argument
339 if (lvalue.getType()->isAtomicType() || in EmitStoreOfComplex()
[all …]
/external/clang/test/SemaCXX/
Dexpression-traits.cpp364 Class lvalue; in expr_ref_4() local
365 ASSERT_LVALUE(lvalue.dataMember); in expr_ref_4()
379 ASSERT_RVALUE(lvalue.Enumerator); in expr_ref_4()
506 Class lvalue; in expr_mptr_oper() local
507 ASSERT_LVALUE(lvalue.*(&Class::dataMember)); in expr_mptr_oper()
514 ASSERT_LVALUE((&lvalue)->*(&Class::dataMember)); in expr_mptr_oper()
/external/llvm/test/Transforms/DeadStoreElimination/
D2011-09-06-EndOfFunction.ll11 %temp.lvalue = alloca %"class.std::auto_ptr", align 8
12 call void @_Z3barv(%"class.std::auto_ptr"* sret %temp.lvalue)
13 …%_M_ptr.i.i = getelementptr inbounds %"class.std::auto_ptr", %"class.std::auto_ptr"* %temp.lvalue,…
/external/llvm/test/Transforms/MemCpyOpt/
Dloadstore-sret.ll12 %temp.lvalue = alloca %"class.std::auto_ptr", align 8
14 call void @_Z3barv(%"class.std::auto_ptr"* sret %temp.lvalue)
15 …%tmp.i.i = getelementptr inbounds %"class.std::auto_ptr", %"class.std::auto_ptr"* %temp.lvalue, i6…
/external/llvm/test/CodeGen/X86/
Dinalloca-invoke.ll14 %temp.lvalue = alloca %Iter
27 call void @begin(%Iter* sret %temp.lvalue)
30 invoke void @plus(%Iter* sret %end, %Iter* %temp.lvalue, i32 4)
/external/clang/test/SemaObjC/
Dforeach.m9 for ((id)2 in a); /* expected-error{{selector element is not a valid lvalue}} */
10 for (2 in a); /* expected-error{{selector element is not a valid lvalue}} */
55 for (obj.prop in collection) { /* expected-error {{selector element is not a valid lvalue}} */
/external/jetty/src/java/org/eclipse/jetty/util/
DB64Code.java432 public static void encode(long lvalue,Appendable buf) throws IOException in encode() argument
434 int value=(int)(0xFFFFFFFC&(lvalue>>32)); in encode()
441 buf.append(__rfc1421alphabet[0x3f&((0x00000003&value)<<4) + (0xf&(int)(lvalue>>28))]); in encode()
443 value=0x0FFFFFFF&(int)lvalue; in encode()
/external/skia/resources/
Dslides_utils.lua57 function parse_attr(s, lvalue)
58 local ts = "^<%s*" .. lvalue .. "%s*=%s*(%a+)%s*>$"
/external/jetty/src/java/org/eclipse/jetty/servlet/
DInvoker.java95 String lvalue=value.toLowerCase(Locale.ENGLISH); in init() local
98 _nonContextServlets=value.length()>0 && lvalue.startsWith("t"); in init()
102 _verbose=value.length()>0 && lvalue.startsWith("t"); in init()
/external/clang/test/SemaObjCXX/
Dconditional-expr.mm30 …id<P0> l = x; // expected-error {{cannot initialize a variable of type 'id<P0>' with an lvalue of …
34 …id<P1> l = a; // expected-error {{cannot initialize a variable of type 'id<P1>' with an lvalue of …
Dinstancetype.mm169 …ted-error{{cannot initialize return object of type 'Subclass2 *' with an lvalue of type 'Subclass1…
174 …ted-error{{cannot initialize return object of type 'Subclass2 *' with an lvalue of type 'Subclass1…
205 …return _b; // expected-error {{cannot initialize return object of type 'A4 *' with an lvalue of ty…
208 …return _b; // expected-error {{cannot initialize return object of type 'A4 *' with an lvalue of ty…
Dinstantiate-expr.mm23 …a; // expected-error{{cannot initialize a variable of type 'int' with an lvalue of type 'Class'}} \
48 …T c = ptr->isa; // expected-error{{cannot initialize a variable of type 'int' with an lvalue of ty…
/external/clang/test/CodeGenObjC/
Dencode-test-3.m17 char (*c)[2] = &@encode(int); // @encode is an lvalue
/external/chromium-trace/trace-viewer/third_party/Paste/paste/
Dhttpheaders.py968 lvalue, rvalue = param.split("=")
969 lvalue = lvalue.strip().lower()
971 if lvalue == "q":

1234