Searched defs:ii (Results 1 - 25 of 247) sorted by relevance

12345678910

/external/bzip2/
H A DspewG.c40 int ii, kk, p; local
45 for (ii = 0; ii < p; ii++)
47 for (ii = 0; ii < p-1; ii++)
49 for (ii = 0; ii < p+1; ii
[all...]
/external/skia/src/core/
H A DSkDeferredDisplayListRecorder.cpp50 const SkImageInfo ii = SkImageInfo::Make(fCharacterization.width(), fCharacterization.height(), local
54 fSurface = SkSurface::MakeRaster(ii, &fCharacterization.surfaceProps());
/external/skqp/src/core/
H A DSkDeferredDisplayListRecorder.cpp46 const SkImageInfo ii = SkImageInfo::Make(fCharacterization.width(), fCharacterization.height(), local
50 fSurface = SkSurface::MakeRaster(ii, &fCharacterization.surfaceProps());
/external/valgrind/none/tests/x86/
H A Dbt_literal.c142 int i, ii; local
144 ii = i;
146 mash_reg_L(i), mash_mem_L(&ii), mash_reg_W(i));
/external/clang/test/CodeGen/
H A Dunsigned-overflow.c6 unsigned int ii, ij, ik; variable
78 ii = ij + ik;
90 ii = ij - ik;
102 ii = ij * ik;
107 opaqueint(ii++);
109 // CHECK: [[T1:%.*]] = load i32, i32* @ii
118 opaqueint(++ii);
120 // CHECK: [[T1:%.*]] = load i32, i32* @ii
H A Dtbaa-struct.cpp20 int ii; member in struct:B
/external/clang/test/FixIt/
H A Ddereference-addressof.c8 void ii(int a) {} // expected-note{{passing argument to parameter 'a' here}} function
16 ii(&a); // expected-warning{{incompatible pointer to integer conversion passing 'int *' to parameter of type 'int'; remove &}}
/external/clang/test/SemaCXX/
H A Dinit-priority-attr.cpp8 Two( int ii, int jj ) { i = ii; j = jj; k = count++; }; argument
H A Dpseudo-destructors.cpp22 void f(A* a, Foo *f, int *i, double *d, int ii) { argument
49 ii->~Integer(); // expected-error{{member reference type 'int' is not a pointer; did you mean to use '.'?}}
50 ii.~Integer();
/external/libvpx/libvpx/vp9/encoder/
H A Dvp9_cost.c47 const vpx_tree_index ii = tree[i + b]; local
49 if (ii <= 0)
50 costs[-ii] = cc;
52 cost(costs, tree, probs, ii, cc);
/external/rmi4utils/rmidevice/
H A Drmifunction.cpp32 unsigned char ii; local
52 for (ii = interruptOffset;
53 ii < (m_interruptSourceCount + interruptOffset);
54 ii++)
55 m_interruptMask |= 1 << ii;
/external/skia/tests/
H A DDeviceTest.cpp39 SkImageInfo ii = SkImageInfo::MakeN32Premul(2*kWidth, 2*kHeight);
41 sk_sp<SkBaseDevice> bmDev(SkBitmapDevice::Create(ii));
81 SkImageInfo ii = SkImageInfo::MakeN32Premul(2*kWidth, 2*kHeight); local
83 sk_sp<SkBaseDevice> gpuDev(SkGpuDevice::Make(context, SkBudgeted::kNo, ii,
H A DPinnedImageTest.cpp22 static bool surface_is_expected_color(SkSurface* surf, const SkImageInfo& ii, SkColor color) { argument
24 bm.allocPixels(ii);
40 const SkImageInfo ii = SkImageInfo::Make(64, 64, kN32_SkColorType, kPremul_SkAlphaType); local
43 bm.allocPixels(ii);
51 sk_sp<SkSurface> gpuSurface = SkSurface::MakeRenderTarget(context, SkBudgeted::kYes, ii);
57 REPORTER_ASSERT(reporter, surface_is_expected_color(gpuSurface.get(), ii, SK_ColorRED));
62 REPORTER_ASSERT(reporter, surface_is_expected_color(gpuSurface.get(), ii, SK_ColorGREEN));
70 REPORTER_ASSERT(reporter, surface_is_expected_color(gpuSurface.get(), ii, SK_ColorGREEN));
75 REPORTER_ASSERT(reporter, surface_is_expected_color(gpuSurface.get(), ii, SK_ColorGREEN));
83 REPORTER_ASSERT(reporter, surface_is_expected_color(gpuSurface.get(), ii, SK_ColorBLU
90 const SkImageInfo ii = SkImageInfo::Make(64, 64, kN32_SkColorType, kPremul_SkAlphaType); local
[all...]
/external/skqp/tests/
H A DDeviceTest.cpp39 SkImageInfo ii = SkImageInfo::MakeN32Premul(2*kWidth, 2*kHeight);
41 sk_sp<SkBaseDevice> bmDev(SkBitmapDevice::Create(ii));
81 SkImageInfo ii = SkImageInfo::MakeN32Premul(2*kWidth, 2*kHeight); local
83 sk_sp<SkBaseDevice> gpuDev(SkGpuDevice::Make(context, SkBudgeted::kNo, ii,
H A DPinnedImageTest.cpp22 static bool surface_is_expected_color(SkSurface* surf, const SkImageInfo& ii, SkColor color) { argument
24 bm.allocPixels(ii);
40 const SkImageInfo ii = SkImageInfo::Make(64, 64, kN32_SkColorType, kPremul_SkAlphaType); local
43 bm.allocPixels(ii);
51 sk_sp<SkSurface> gpuSurface = SkSurface::MakeRenderTarget(context, SkBudgeted::kYes, ii);
57 REPORTER_ASSERT(reporter, surface_is_expected_color(gpuSurface.get(), ii, SK_ColorRED));
62 REPORTER_ASSERT(reporter, surface_is_expected_color(gpuSurface.get(), ii, SK_ColorGREEN));
70 REPORTER_ASSERT(reporter, surface_is_expected_color(gpuSurface.get(), ii, SK_ColorGREEN));
75 REPORTER_ASSERT(reporter, surface_is_expected_color(gpuSurface.get(), ii, SK_ColorGREEN));
83 REPORTER_ASSERT(reporter, surface_is_expected_color(gpuSurface.get(), ii, SK_ColorBLU
90 const SkImageInfo ii = SkImageInfo::Make(64, 64, kN32_SkColorType, kPremul_SkAlphaType); local
[all...]
/external/clang/test/CodeGenCXX/
H A Ddebug-info-template-explicit-specialization.cpp100 i<int> ii; variable
/external/eigen/unsupported/Eigen/src/NonLinearOptimization/
H A Dcovar.h15 Index i, j, k, l, ii, jj; local
54 ii = ipvt[i];
55 if (ii > jj)
56 r(ii,jj) = r(i,j);
57 if (ii < jj)
58 r(jj,ii) = r(i,j);
/external/llvm/test/tools/llvm-cov/Inputs/
H A Dtest.cpp28 void assign(int ii, int jj) { argument
29 grid[ii][jj] = (ii+1) * (jj+1);
33 for (int ii = 0; ii < 2; ii++)
35 assign(ii, jj);
51 for (int ii = 0; ii < 10; ++ii) {
[all...]
/external/skia/tools/mdbviz/
H A DModel.cpp19 SkImageInfo ii = SkImageInfo::MakeN32Premul(1024, 1024); local
20 fBM.allocPixels(ii, 0);
/external/skqp/src/gpu/
H A DGrYUVProvider.cpp95 const SkImageInfo ii = SkImageInfo::MakeA8(yuvDesc.fWidth, yuvDesc.fHeight); local
96 if (!yuvTextureContexts[i]->writePixels(ii, planes[i],
/external/skqp/tools/mdbviz/
H A DModel.cpp19 SkImageInfo ii = SkImageInfo::MakeN32Premul(1024, 1024); local
20 fBM.allocPixels(ii, 0);
/external/libcxx/test/std/algorithms/alg.nonmodifying/alg.search/
H A Dsearch.pass.cpp90 int ii[] = {1, 1, 2}; local
91 assert(std::search(Iter1(ih), Iter1(ih+sh), Iter2(ii), Iter2(ii+3)) == Iter1(ih+3));
H A Dsearch_pred.pass.cpp109 int ii[] = {1, 1, 2}; local
110 assert(std::search(Iter1(ih), Iter1(ih+sh), Iter2(ii), Iter2(ii+3), count_equal()) == Iter1(ih+3));
/external/libcxx/test/std/experimental/func/func.searchers/func.searchers.boyer_moore/
H A Ddefault.pass.cpp77 int ii[] = {1, 1, 2}; local
78 do_search(Iter1(ih), Iter1(ih+sh), Iter2(ii), Iter2(ii+3), Iter1(ih+3));
116 char ii[] = {1, 1, 2}; local
117 do_search(Iter1(ih), Iter1(ih+sh), Iter2(ii), Iter2(ii+3), Iter1(ih+3));
H A Dhash.pass.cpp83 int ii[] = {1, 1, 2}; local
84 do_search(Iter1(ih), Iter1(ih+sh), Iter2(ii), Iter2(ii+3), Iter1(ih+3), sh*3);
117 char ii[] = {1, 1, 2}; local
118 do_search(Iter1(ih), Iter1(ih+sh), Iter2(ii), Iter2(ii+3), Iter1(ih+3), sh*3);

Completed in 2005 milliseconds

12345678910