Searched defs:lvalue (Results 1 - 17 of 17) sorted by relevance

/external/jetty/src/java/org/eclipse/jetty/util/
H A DB64Code.java432 public static void encode(long lvalue,Appendable buf) throws IOException argument
434 int value=(int)(0xFFFFFFFC&(lvalue>>32));
441 buf.append(__rfc1421alphabet[0x3f&((0x00000003&value)<<4) + (0xf&(int)(lvalue>>28))]);
443 value=0x0FFFFFFF&(int)lvalue;
/external/mesa3d/src/gallium/drivers/llvmpipe/
H A Dlp_test_main.c148 long long lvalue = (long long)value; local
149 lvalue = MIN2(lvalue, ((long long)1 << (type.width - 1)) - 1);
152 *((int8_t *)dst + index) = (int8_t)lvalue;
155 *((int16_t *)dst + index) = (int16_t)lvalue;
158 *((int32_t *)dst + index) = (int32_t)lvalue;
161 *((int64_t *)dst + index) = (int64_t)lvalue;
168 unsigned long long lvalue = (long long)value; local
169 lvalue = MIN2(lvalue, ((unsigne
[all...]
/external/iproute2/tc/
H A Dem_meta.c354 PARSE_ERR(arg, "lvalue and rvalue are not compatible.");
364 unsigned long lvalue = 0, rvalue = 0; local
376 a = parse_object(args, args, &meta_hdr.left, &lvalue, NULL);
408 dump_value(n, TCA_EM_META_LVALUE, lvalue, &meta_hdr.left);
/external/ppp/pppd/plugins/radius/
H A Davpair.c77 vp->lvalue = len;
80 vp->lvalue = strlen((char *) pval);
90 vp->lvalue = * (UINT4 *) pval;
158 UINT4 lvalue; local
227 pair->lvalue = attrlen;
233 memcpy ((char *) &lvalue, (char *) ptr,
235 pair->lvalue = ntohl (lvalue);
268 UINT4 lvalue; local
322 pair->lvalue
[all...]
H A Dsendserver.c37 UINT4 lvalue; local
65 length = vp->lvalue;
77 lvalue = htonl(vp->lvalue);
78 memcpy(buf, (char *) &lvalue, sizeof(UINT4));
93 length = vp->lvalue;
133 length = vp->lvalue;
158 length = vp->lvalue;
168 lvalue = htonl (vp->lvalue);
[all...]
H A Dradiusclient.h333 UINT4 lvalue; member in struct:value_pair
/external/clang/test/SemaCXX/
H A Dexpression-traits.cpp29 // basic.lval/1 Every expression is either an lvalue or an rvalue.
34 // an lvalue.
39 static_assert(__is_lvalue_expr(expr), "should be an lvalue"); \
43 static_assert(!__is_rvalue_expr(expr), "should be an lvalue"); \
140 // (8.3.2, 8.5.3), ... the expression is an lvalue.
149 // 5.1/2 A string literal is an lvalue; all other
218 // expression. ...The result is an lvalue if the entity is
253 // entity denoted by the identifier. The result is an lvalue if
266 // member. The result is an lvalue if the member is a static
280 // expr.call/10: A function call is an lvalue i
364 Class lvalue; local
506 Class lvalue; local
[all...]
/external/clang/lib/CodeGen/
H A DCGAtomic.cpp43 AtomicInfo(CodeGenFunction &CGF, LValue &lvalue) argument
46 assert(!lvalue.isGlobalReg());
48 if (lvalue.isSimple()) {
49 AtomicTy = lvalue.getType();
71 if (lvalue.getAlignment().isZero())
72 lvalue.setAlignment(AtomicAlign);
74 LVal = lvalue;
75 } else if (lvalue.isBitField()) {
76 ValueTy = lvalue.getType();
78 auto &OrigBFI = lvalue
666 LValue lvalue = LValue::MakeAddr(Ptr, AtomicTy, alignChars, getContext()); local
1389 EmitAtomicStore(RValue rvalue, LValue lvalue, bool isInit) argument
[all...]
H A DCGDecl.cpp598 LValue &lvalue,
600 lvalue.setAddress(CGF.BuildBlockByrefAddress(lvalue.getAddress(), var));
604 LValue lvalue, bool capturedByInit) {
605 Qualifiers::ObjCLifetime lifetime = lvalue.getObjCLifetime();
609 drillIntoBlockVariable(*this, lvalue, cast<VarDecl>(D));
610 EmitStoreThroughLValue(RValue::get(value), lvalue, true); local
633 LValue tempLV = lvalue;
681 if (capturedByInit) drillIntoBlockVariable(*this, lvalue, cast<VarDecl>(D));
683 EmitARCStoreWeak(lvalue
597 drillIntoBlockVariable(CodeGenFunction &CGF, LValue &lvalue, const VarDecl *var) argument
603 EmitScalarInit(const Expr *init, const ValueDecl *D, LValue lvalue, bool capturedByInit) argument
710 EmitScalarInit(llvm::Value *init, LValue lvalue) argument
1201 EmitExprAsInit(const Expr *init, const ValueDecl *D, LValue lvalue, bool capturedByInit) argument
1225 EmitAtomicInit(const_cast<Expr*>(init), lvalue); local
[all...]
H A DCGExprComplex.cpp303 ComplexPairTy ComplexExprEmitter::EmitLoadOfLValue(LValue lvalue, argument
305 assert(lvalue.isSimple() && "non-simple complex l-value?");
306 if (lvalue.getType()->isAtomicType())
307 return CGF.EmitAtomicLoad(lvalue, loc).getComplexVal();
309 llvm::Value *SrcPtr = lvalue.getAddress();
310 bool isVolatile = lvalue.isVolatileQualified();
311 unsigned AlignR = lvalue.getAlignment().getQuantity();
313 QualType ComplexTy = lvalue.getType();
337 void ComplexExprEmitter::EmitStoreOfComplex(ComplexPairTy Val, LValue lvalue, argument
339 if (lvalue
[all...]
H A DCGObjC.cpp492 LValue lvalue, QualType type);
578 /// lvalue-to-rvalue expressions.
1294 LValue lvalue variable
1296 CGF.emitDestroy(lvalue.getAddress(), ivar->getType(), destroyer,
2075 // lvalue is inadequately aligned.
2353 LValue lvalue,
2360 return TryEmitResult(CGF.EmitLoadOfLValue(lvalue,
2365 return TryEmitResult(CGF.EmitARCLoadWeakRetained(lvalue.getAddress()),
2383 // Emit the lvalue.
2690 LValue lvalue,
2352 tryEmitARCRetainLoadOfScalar(CodeGenFunction &CGF, LValue lvalue, QualType type) argument
2689 emitARCRetainLoadOfScalar(CodeGenFunction &CGF, LValue lvalue, QualType type) argument
2787 LValue lvalue = EmitLValue(e->getLHS()); local
2804 LValue lvalue = EmitLValue(e->getLHS()); local
[all...]
H A DCodeGenFunction.h825 LValue lvalue)
826 : CGF(CGF), Data(OpaqueValueMappingData::bind(CGF, opaqueValue, lvalue)) {
1523 void EmitExprAsInit(const Expr *init, const ValueDecl *D, LValue lvalue,
1791 /// this expression is used as an lvalue, for instance in "&Arr[Idx]".
1820 void EmitScalarInit(const Expr *init, const ValueDecl *D, LValue lvalue,
1822 void EmitScalarInit(llvm::Value *init, LValue lvalue);
2194 /// If this returns a normal address, and if the lvalue's C type is fixed
2196 /// an LLVM type of the same size of the lvalue's type. If the lvalue has a
2209 void EmitAtomicInit(Expr *E, LValue lvalue);
823 OpaqueValueMapping(CodeGenFunction &CGF, const OpaqueValueExpr *opaqueValue, LValue lvalue) argument
[all...]
H A DCGExpr.cpp423 "materialized temporary field is not a simple lvalue");
442 // Emit the expression as an lvalue.
752 // Store the updated result through the lvalue.
825 /// If this returns a normal address, and if the lvalue's C type is fixed size,
827 /// type of the same size of the lvalue's type. If the lvalue has a variable
1054 llvm::Value *CodeGenFunction::EmitLoadOfScalar(LValue lvalue, argument
1056 return EmitLoadOfScalar(lvalue.getAddress(), lvalue.isVolatile(),
1057 lvalue
1165 LValue lvalue = LValue::MakeAddr(Addr, Ty, local
1304 EmitStoreOfScalar(llvm::Value *value, LValue lvalue, bool isInit) argument
3460 LValue lvalue = MakeNaturalAlignAddrLValue(addr, type); local
[all...]
H A DCGObjCMac.cpp1478 bool lvalue = false) override
1479 { return EmitSelector(CGF, Sel, lvalue); }
4392 bool lvalue) {
4405 if (lvalue)
4391 EmitSelector(CodeGenFunction &CGF, Selector Sel, bool lvalue) argument
/external/mesa3d/src/glsl/
H A Dast_to_hir.cpp708 _mesa_glsl_error(& lhs_loc, state, "non-lvalue in assignment");
773 get_lvalue_copy(exec_list *instructions, ir_rvalue *lvalue) argument
775 void *ctx = ralloc_parent(lvalue);
778 var = new(ctx) ir_variable(lvalue->type, "_post_incdec_tmp",
784 lvalue));
1505 /* Get a temporary of a copy of the lvalue before it's modified.
/external/clang/include/clang/Sema/
H A DDeclSpec.h1106 /// True if this is an lvalue reference, false if it's an rvalue reference.
1176 /// \brief Whether the ref-qualifier (if any) is an lvalue reference.
1434 bool lvalue) {
1439 I.Ref.LValueRef = lvalue;
1433 getReference(unsigned TypeQuals, SourceLocation Loc, bool lvalue) argument
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.mortbay.jetty.server_6.1.23.v201004211559.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...

Completed in 568 milliseconds