Searched defs:lg (Results 1 - 20 of 20) sorted by relevance

/external/libcxx/test/std/thread/thread.mutex/thread.lock/thread.lock.guard/
H A Dmutex.fail.cpp23 std::lock_guard<std::mutex> lg = m; // expected-error{{no viable conversion}} local
/external/jemalloc/include/jemalloc/internal/
H A Dsize_classes.sh34 lg() { function
66 lg ${ndelta}; lg_ndelta=${lg_result}; pow2 ${lg_ndelta}
/external/libopus/celt/tests/
H A Dtest_unit_mathops.c271 opus_val32 lg; local
274 lg = celt_ilog2(x);
275 if (lg<0 || lg>=31)
277 printf("celt_ilog2 failed: 0<=celt_ilog2(x)<31 (x = %d, celt_ilog2(x) = %d)\n",x,lg);
280 y = 1<<lg;
/external/skia/third_party/lua/src/
H A Dltable.c230 int lg; local
231 int ttlg; /* 2^lg */
234 for (lg=0, ttlg=1; lg<=MAXBITS; lg++, ttlg*=2) { /* for each slice */
242 /* count elements in range (2^(lg-1), 2^lg] */
247 nums[lg] += lc;
/external/syslinux/com32/lua/src/
H A Dltable.c231 int lg; local
232 int ttlg; /* 2^lg */
235 for (lg=0, ttlg=1; lg<=MAXBITS; lg++, ttlg*=2) { /* for each slice */
243 /* count elements in range (2^(lg-1), 2^lg] */
248 nums[lg] += lc;
/external/valgrind/drd/
H A Ddrd_load_store.c665 IRLoadG* lg = st->Ist.LoadG.details; local
668 IRExpr* addr_expr = lg->addr;
669 typeOfIRLoadGOp(lg->cvt, &typeWide, &type);
673 sizeofIRType(type), lg->guard);
675 instrument_load(bb, lg->addr,
676 sizeofIRType(type), lg->guard);
/external/llvm/include/llvm/Support/
H A DScaledNumber.h184 /// Returns the rounded lg of \c Digits*2^Scale and an int specifying whether
195 // Get the floor of the lg of Digits.
209 /// \brief Get the lg (rounded) of a scaled number.
211 /// Get the lg of \c Digits*2^Scale.
218 /// \brief Get the lg floor of a scaled number.
220 /// Get the floor of the lg of \c Digits*2^Scale.
228 /// \brief Get the lg ceiling of a scaled number.
230 /// Get the ceiling of the lg of \c Digits*2^Scale.
553 /// Get the lg of the scalar. lg
554 int32_t lg() const { return ScaledNumbers::getLg(Digits, Scale); } function in class:llvm::ScaledNumber
[all...]
/external/valgrind/lackey/
H A Dlk_main.c836 IRLoadG* lg = st->Ist.LoadG.details; local
839 typeOfIRLoadGOp(lg->cvt, &typeWide, &type);
842 addEvent_Dr_guarded( sbOut, lg->addr,
843 sizeofIRType(type), lg->guard );
846 instrument_detail( sbOut, OpLoad, type, lg->guard );
/external/libopus/celt/
H A Dbands.c221 opus_val16 lg; local
227 lg = ADD16(bandLogE[i], SHL16((opus_val16)eMeans[i],6));
229 g = celt_exp2(lg);
232 shift = 16-(lg>>DB_SHIFT);
239 g = celt_exp2_frac(lg&((1<<DB_SHIFT)-1));
/external/valgrind/VEX/priv/
H A Dhost_arm_isel.c5799 IRLoadG* lg = stmt->Ist.LoadG.details; local
5800 IRType tya = typeOfIRExpr(env->type_env, lg->addr);
5801 IREndness end = lg->end;
5806 switch (lg->cvt) {
5809 HReg rAlt = iselIntExpr_R(env, lg->alt);
5810 ARMAMode1* am = iselIntExpr_AMode1(env, lg->addr);
5811 HReg rD = lookupIRTemp(env, lg->dst);
5813 ARMCondCode cc = iselCondCode(env, lg->guard);
5814 addInstr(env, (lg->cvt == ILGop_Ident32 ? ARMInstr_LdSt32
5822 HReg rAlt = iselIntExpr_R(env, lg
[all...]
H A Dir_defs.c1486 void ppIRLoadG ( const IRLoadG* lg )
1488 ppIRTemp(lg->dst);
1490 ppIRExpr(lg->guard);
1492 ppIRLoadGOp(lg->cvt);
1493 vex_printf("(LD%s(", lg->end==Iend_LE ? "le" : "be");
1494 ppIRExpr(lg->addr);
1496 ppIRExpr(lg->alt);
2056 IRLoadG* lg = LibVEX_Alloc_inline(sizeof(IRLoadG)); local
2057 lg->end = end;
2058 lg
2408 const IRLoadG* lg = s->Ist.LoadG.details; local
3700 const IRLoadG* lg = st->Ist.LoadG.details; local
3893 const IRLoadG* lg; local
4256 const IRLoadG* lg = stmt->Ist.LoadG.details; local
4530 const IRLoadG* lg = stmt->Ist.LoadG.details; local
[all...]
H A Dhost_amd64_isel.c4295 IRLoadG* lg = stmt->Ist.LoadG.details; local
4296 if (lg->end != Iend_LE)
4300 switch (lg->cvt) {
4310 = iselIntExpr_AMode(env, lg->addr);
4312 = szB == 16 ? iselVecExpr(env, lg->alt)
4313 : iselIntExpr_R(env, lg->alt);
4315 = lookupIRTemp(env, lg->dst);
4324 AMD64CondCode cc = iselCondCode(env, lg->guard);
H A Dir_opt.c407 IRLoadG *lg; local
452 lg = st->Ist.LoadG.details;
453 e1 = flatten_Expr(bb, lg->addr);
454 e2 = flatten_Expr(bb, lg->alt);
455 e3 = flatten_Expr(bb, lg->guard);
456 addStmtToIRSB(bb, IRStmt_LoadG(lg->end, lg->cvt, lg->dst,
796 IRLoadG* lg = st->Ist.LoadG.details; local
797 vassert(isIRAtom(lg
2627 IRLoadG* lg = st->Ist.LoadG.details; local
2829 IRLoadG* lg = st2->Ist.LoadG.details; local
2882 IRLoadG* lg = lgu->Ist.LoadG.details; local
3019 IRLoadG* lg = st->Ist.LoadG.details; local
4642 IRLoadG* lg = st->Ist.LoadG.details; local
5181 IRLoadG* lg = st->Ist.LoadG.details; local
5533 IRLoadG* lg = st->Ist.LoadG.details; local
6302 IRLoadG* lg = st->Ist.LoadG.details; local
6515 IRLoadG* lg = st->Ist.LoadG.details; local
[all...]
/external/valgrind/cachegrind/
H A Dcg_main.c1160 IRLoadG* lg = st->Ist.LoadG.details; local
1163 IRExpr* addr = lg->addr;
1164 typeOfIRLoadGOp(lg->cvt, &typeWide, &type);
1167 sizeofIRType(type), addr, lg->guard,
/external/valgrind/callgrind/
H A Dmain.c1083 IRLoadG* lg = st->Ist.LoadG.details; local
1086 IRExpr* addr = lg->addr;
1087 typeOfIRLoadGOp(lg->cvt, &typeWide, &type);
1090 sizeofIRType(type), addr, lg->guard,
/external/valgrind/helgrind/
H A Dhg_main.c4789 IRLoadG* lg = st->Ist.LoadG.details; local
4792 IRExpr* addr = lg->addr;
4793 typeOfIRLoadGOp(lg->cvt, &typeWide, &type);
4798 goff_sp, lg->guard );
/external/v8/src/s390/
H A Dassembler-s390.cc1539 void Assembler::lg(Register r, const MemOperand& src) { function in class:v8::internal::Assembler
/external/valgrind/memcheck/
H A Dmc_translate.c6061 static void do_shadow_LoadG ( MCEnv* mce, IRLoadG* lg )
6063 complainIfUndefined(mce, lg->guard, NULL);
6065 definedness and validity of lg->addr, in the case where
6066 lg->guard evaluates to True at run-time. */
6079 switch (lg->cvt) {
6091 = expr2vbits( mce, lg->alt );
6093 = expr2vbits_Load_guarded_General(mce, lg->end, loadedTy,
6094 lg->addr, 0/*addr bias*/,
6095 lg->guard, vwiden, vbits_alt );
6097 assign( 'V', mce, findShadowTmpV(mce, lg
6218 IRLoadG* lg = st->Ist.LoadG.details; local
[all...]
/external/owasp/sanitizer/tools/findbugs/lib/
H A Dbcel.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/bcel/ org/apache/bcel/classfile/ ...
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dcom.ibm.icu_4.2.1.v20100412.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...

Completed in 842 milliseconds