/external/chromium_org/third_party/skia/third_party/lua/src/ |
lcode.h | 74 LUAI_FUNC void luaK_concat (FuncState *fs, int *l1, int l2);
|
lstrlib.c | 515 const char *s2, size_t l2) { 516 if (l2 == 0) return s1; /* empty strings are everywhere */ 517 else if (l2 > l1) return NULL; /* avoids a negative `l1' */ 520 l2--; /* 1st char will be checked by `memchr' */ 521 l1 = l1-l2; /* `s2' cannot be found after that */ 524 if (memcmp(init, s2+1, l2) == 0)
|
/external/clang/test/CXX/dcl.decl/dcl.init/dcl.init.list/ |
p7-0x.cpp | 149 Agg<long> l2 = {ll}; // OK local
|
p7-cxx11-nowarn.cpp | 150 Agg<long> l2 = {ll}; // OK local
|
/external/mesa3d/src/mesa/program/ |
prog_noise.c | 526 int i2, j2, k2, l2; /* The integer offsets for the third simplex corner */ local 550 l2 = simplex[c][3] >= 2 ? 1 : 0; 565 w2 = w0 - l2 + 2.0f * G4; 610 grad4(perm[ii + i2 + perm[jj + j2 + perm[kk + k2 + perm[ll + l2]]]],
|
/external/chromium_org/third_party/WebKit/Source/platform/audio/ |
SincResampler.cpp | 284 #define LOAD_DATA(l1, l2) \ 287 mK2 = _mm_##l2##_ps(k2);
|
/sdk/eclipse/plugins/com.android.ide.eclipse.monitor/src/com/android/ide/eclipse/monitor/ddms/ |
StaticPortEditDialog.java | 194 Label l2 = new Label(main, SWT.NONE); local 195 l2.setText("Debug Port:");
|
/cts/tests/tests/os/src/android/os/cts/ |
BundleTest.java | 447 final long l2 = 1007; local 450 mBundle.putLong(KEY, l2); 451 assertEquals(l2, mBundle.getLong(KEY, l2)); 453 assertEquals(l2, mBundle.getLong(KEY, l2));
|
/cts/tests/tests/renderscript/src/android/renderscript/cts/ |
ComputeTest.java | 154 Long2 l2 = new Long2(); local 155 l2.x = 1; 156 l2.y = 2; 157 l2 = new Long2(1, 2); 158 assertTrue(l2.x == 1); 159 assertTrue(l2.y == 2); 584 Long2 L2 = s.get_u32_2(); 585 if (L2.x != 1 || L2.y != 2) { 588 L2.x = 2 [all...] |
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/coverage/htmlfiles/ |
coverage_html.js | 247 l2 = coverage.line_elt(2), 249 if (l1.length && l2.length) { 251 line_height = l2.offset().top - l1_top,
|
/external/chromium_org/third_party/re2/re2/ |
compile.cc | 44 static PatchList Append(Prog::Inst *inst0, PatchList l1, PatchList l2); 81 PatchList PatchList::Append(Prog::Inst* inst0, PatchList l1, PatchList l2) { 83 return l2; 84 if (l2.p == 0) 97 ip->out1_ = l2.p; 99 ip->set_out(l2.p); [all...] |
/external/regex-re2/re2/ |
compile.cc | 44 static PatchList Append(Prog::Inst *inst0, PatchList l1, PatchList l2); 81 PatchList PatchList::Append(Prog::Inst* inst0, PatchList l1, PatchList l2) { 83 return l2; 84 if (l2.p == 0) 97 ip->out1_ = l2.p; 99 ip->set_out(l2.p); [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
test_asyncore.py | 253 l2 = "I don't like spam!" 257 d.log(l2) 262 self.assertEqual(lines, ['log: %s' % l1, 'log: %s' % l2]) 271 l2 = "Why can't she have egg bacon spam and sausage?" 276 d.log_info(l2) 282 expected = ['EGGS: %s' % l1, 'info: %s' % l2, 'SPAM: %s' % l3]
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
test_asyncore.py | 253 l2 = "I don't like spam!" 257 d.log(l2) 262 self.assertEqual(lines, ['log: %s' % l1, 'log: %s' % l2]) 271 l2 = "Why can't she have egg bacon spam and sausage?" 276 d.log_info(l2) 282 expected = ['EGGS: %s' % l1, 'info: %s' % l2, 'SPAM: %s' % l3]
|
/external/eigen/Eigen/src/Core/products/ |
GeneralBlockPanelKernel.h | 28 inline void manage_caching_sizes(Action action, std::ptrdiff_t* l1=0, std::ptrdiff_t* l2=0) 41 eigen_internal_assert(l1!=0 && l2!=0); 43 m_l2CacheSize = *l2; 47 eigen_internal_assert(l1!=0 && l2!=0); 49 *l2 = m_l2CacheSize; 67 * - the L1 and L2 cache sizes, 78 // mc x kc blocks A' on the lhs. A' has to fit into L2 cache. Moreover, B' is processed 83 std::ptrdiff_t l1, l2; local 93 manage_caching_sizes(GetAction, &l1, &l2); 95 SizeType _m = k>0 ? l2/(4 * sizeof(LhsScalar) * k) : 0 1315 std::ptrdiff_t l1, l2; local 1324 std::ptrdiff_t l1, l2; local [all...] |
TriangularSolverMatrix.h | 82 std::ptrdiff_t l1, l2; local 83 manage_caching_sizes(GetAction, &l1, &l2); 84 Index subcols = cols>0 ? l2/(4 * sizeof(Scalar) * otherStride) : 0;
|
/external/mksh/src/ |
eval.c | 1802 int l1, l2, l3; local [all...] |
/external/chromium_org/v8/test/cctest/ |
test-regexp.cc | [all...] |
/external/chromium_org/third_party/WebKit/Source/wtf/text/ |
StringImpl.h | 666 static inline int codePointCompare(unsigned l1, unsigned l2, const CharacterType1* c1, const CharacterType2* c2) 668 const unsigned lmin = l1 < l2 ? l1 : l2; 679 if (l1 == l2) 682 return (l1 > l2) ? 1 : -1;
|
/external/chromium_org/third_party/yasm/source/patched-yasm/tools/re2c/ |
actions.c | 62 unsigned int l2 = RegExp_fixedLength(r->d.AltCatOp.exp1); local 63 if(l1 != l2 || l1 == ~0u) 71 unsigned int l1, l2; local 73 if((l2 = RegExp_fixedLength(r->d.AltCatOp.exp2)) != ~0u) 74 return l1+l2;
|
/external/zopfli/src/zopflipng/lodepng/ |
lodepng_util.cpp | 114 size_t l2 = 0; //location 2: IDAT-l2-IEND local 136 if(l2 == 0) l2 = chunk - begin + 8; 147 result.insert(result.end(), png.begin() + l1, png.begin() + l2); 149 result.insert(result.end(), png.begin() + l2, png.end());
|
/art/compiler/utils/ |
assembler_thumb_test.cc | 700 Label l2; local 701 __ b(&l2); 703 __ Bind(&l2); 745 Label l2; local 746 __ b(&l2); 748 __ Bind(&l2); 935 Label l2; local 936 __ cbnz(R2, &l2); 939 __ Bind(&l2); 1241 Label l2; local [all...] |
/external/eigen/bench/ |
bench_gemm.cpp | 122 std::ptrdiff_t l2 = internal::queryTopLevelCacheSize(); local 124 std::cout << "L2/L3 cache size = " << (l2>0 ? l2/1024 : -1) << " KB\n";
|
/external/iproute2/misc/ |
ss.c | 892 char *a1, *a2, *a, l1, l2; local 894 l2 = ssfilter_bytecompile(f->post, &a2); 895 if (!(a = malloc(l1+l2))) abort(); 897 memcpy(a+l1, a2, l2); 899 ssfilter_patch(a, l1, l2); 901 return l1+l2; 905 char *a1, *a2, *a, l1, l2; local 907 l2 = ssfilter_bytecompile(f->post, &a2); 908 if (!(a = malloc(l1+l2+4))) abort(); 910 memcpy(a+l1+4, a2, l2); [all...] |
/external/llvm/lib/CodeGen/ |
RegAllocPBQP.cpp | 268 const LiveInterval &l2 = lis->getInterval(vr2); local 271 assert(!l2.empty() && "Empty interval in vreg set?"); 272 if (l1.overlaps(l2)) {
|