HomeSort by relevance Sort by last modified time
    Searched defs:lvalue (Results 1 - 19 of 19) sorted by null

  /packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/latin/
UserHistoryDictionaryTests.java 55 long lvalue = Math.abs((long)value); local
56 while (lvalue > 0) {
57 builder.append(CHARACTERS[(int)(lvalue % lengthOfChars)]);
58 lvalue /= lengthOfChars;
  /external/iproute2/tc/
em_meta.c 354 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/
avpair.c 77 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 = vlen
    [all...]
sendserver.c 37 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...]
radiusclient.h 329 UINT4 lvalue; member in struct:value_pair
  /external/clang/test/SemaCXX/
expression-traits.cpp 29 // 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 if and only if th
364 Class lvalue; local
506 Class lvalue; local
    [all...]
  /external/qemu/distrib/sdl-1.2.15/src/stdlib/
SDL_string.c 211 unsigned long lvalue = 0; local
219 text += SDL_ScanUnsignedLong(text, 10, &lvalue);
220 value += lvalue;
225 lvalue = *text - '0';
226 value += (double)lvalue / mult;
    [all...]
  /frameworks/base/tools/aidl/
AST.h 140 Variable* lvalue; member in struct:Assignment
144 Assignment(Variable* lvalue, Expression* rvalue);
145 Assignment(Variable* lvalue, Expression* rvalue, Type* cast);
173 Expression* lvalue; member in struct:Comparison
177 Comparison(Expression* lvalue, const string& op, Expression* rvalue);
231 Variable* lvalue; member in struct:VariableDeclaration
235 VariableDeclaration(Variable* lvalue);
236 VariableDeclaration(Variable* lvalue, Expression* rvalue, Type* cast = NULL);
  /packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/latin/makedict/
BinaryDictIOUtilsTests.java 72 long lvalue = Math.abs((long)value); local
73 while (lvalue > 0) {
74 builder.append(CHARACTERS[(int)(lvalue % lengthOfChars)]);
75 lvalue /= lengthOfChars;
  /external/clang/lib/CodeGen/
CGAtomic.cpp 48 AtomicInfo(CodeGenFunction &CGF, LValue &lvalue) : CGF(CGF) {
49 assert(lvalue.isSimple());
51 AtomicTy = lvalue.getType();
68 if (lvalue.getAlignment().isZero())
69 lvalue.setAlignment(AtomicAlign);
72 (AtomicSizeInBits > uint64_t(C.toBits(lvalue.getAlignment())) ||
95 void emitMemSetZeroIfNecessary(LValue dest) const;
111 void emitCopyIntoMemory(RValue rvalue, LValue lvalue) const
339 LValue lvalue = LValue::MakeAddr(Ptr, AtomicTy, alignChars, getContext()); local
    [all...]
CGDecl.cpp 528 LValue &lvalue,
530 lvalue.setAddress(CGF.BuildBlockByrefAddress(lvalue.getAddress(), var));
535 LValue lvalue,
537 Qualifiers::ObjCLifetime lifetime = lvalue.getObjCLifetime();
541 drillIntoBlockVariable(*this, lvalue, cast<VarDecl>(D));
542 EmitStoreThroughLValue(RValue::get(value), lvalue, true); local
562 LValue tempLV = lvalue
1133 EmitAtomicInit(const_cast<Expr*>(init), lvalue); local
    [all...]
CGObjC.cpp 117 LValue LV = LValue::MakeAddr(Builder.CreateStructGEP(Objects, i),
125 LValue KeyLV = LValue::MakeAddr(Builder.CreateStructGEP(Keys, i),
133 LValue ValueLV = LValue::MakeAddr(Builder.CreateStructGEP(Objects, i),
474 LValue lvalue, QualType type);
556 /// lvalue-to-rvalue expressions.
817 LValue LV = EmitLValueForIvar(TypeOfSelfObject(), LoadObjCSelf(), ivar, 0)
1268 LValue lvalue local
2736 LValue lvalue = EmitLValue(e->getLHS()); local
2754 LValue lvalue = EmitLValue(e->getLHS()); local
    [all...]
CGExpr.cpp 147 // FIXME: This function should take an LValue as an argument.
166 LValue LV = MakeAddrLValue(Location, E->getType());
231 // Emit the expression as an lvalue.
232 LValue LV = CGF.EmitLValue(E);
237 // We have to load the lvalue.
246 LValue RefTempDst = CGF.MakeAddrLValue(ReferenceTemporary,
346 LValue LV = CGF.MakeAddrLValue(Object, E->getType());
358 LValue TempLV = CGF.MakeAddrLValue(Object,
385 LValue tempLV = CGF.MakeNaturalAlignAddrLValue(ReferenceTemporary,
724 EmitComplexPrePostIncDec(const UnaryOperator *E, LValue LV
1150 LValue lvalue = LValue::MakeAddr(Addr, Ty, local
3182 LValue lvalue = MakeNaturalAlignAddrLValue(addr, type); local
    [all...]
  /external/webkit/Tools/DumpRenderTree/mac/PerlSupport/
DumpRenderTreeSupport_wrapPregenerated.c 883 long lvalue; member in struct:swig_constant_info
1144 sv_setiv(sv, (IV) swig_constants[i].lvalue);
1156 SWIG_MakePackedObj(sv, swig_constants[i].pvalue, swig_constants[i].lvalue, *(swig_constants[i].ptype));
  /prebuilts/devtools/tools/lib/
jfreechart-1.0.9.jar 
  /prebuilts/tools/common/jfreechart/
jfreechart-1.0.9.jar 
  /prebuilts/tools/common/m2/repository/jfree/jfreechart/1.0.9/
jfreechart-1.0.9.jar 
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.mortbay.jetty.server_6.1.23.v201004211559.jar 
  /prebuilts/tools/common/m2/internal/xalan/xalan/2.6.0/
xalan-2.6.0.jar 

Completed in 760 milliseconds