Searched refs:ii (Results 1 - 25 of 411) sorted by relevance

1234567891011>>

/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/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/proguard/examples/dictionaries/
H A Dshakespeare.txt17 --From Hamlet (II, ii, 206)
23 --From Romeo and Juliet (II, ii, 1-2)
/external/clang/test/OpenMP/
H A Dfor_loop_messages.cpp24 int ii, jj, kk; local
74 for (int &ref = ii; ref < 10; ref++) {
91 for (; ii < 10; ++ii)
92 c[ii] = a[ii];
98 for (ii + 1; ii < 10; ++ii)
99 c[ii]
[all...]
H A Dfor_simd_loop_messages.cpp20 int ii, jj, kk; local
69 for (int &ref = ii; ref < 10; ref++) {
86 for (; ii < 10; ++ii)
87 c[ii] = a[ii];
93 for (ii + 1; ii < 10; ++ii)
94 c[ii]
[all...]
H A Dparallel_for_loop_messages.cpp20 int ii, jj, kk; local
60 for (int &ref = ii; ref < 10; ref++) {
74 for (; ii < 10; ++ii)
75 c[ii] = a[ii];
80 for (ii + 1; ii < 10; ++ii)
81 c[ii]
[all...]
H A Dparallel_for_simd_loop_messages.cpp20 int ii, jj, kk; local
60 for (int &ref = ii; ref < 10; ref++) {
74 for (; ii < 10; ++ii)
75 c[ii] = a[ii];
80 for (ii + 1; ii < 10; ++ii)
81 c[ii]
[all...]
H A Dtarget_parallel_for_loop_messages.cpp20 int ii, jj, kk; local
60 for (int &ref = ii; ref < 10; ref++) {
74 for (; ii < 10; ++ii)
75 c[ii] = a[ii];
80 for (ii + 1; ii < 10; ++ii)
81 c[ii]
[all...]
H A Dtarget_parallel_for_simd_loop_messages.cpp20 int ii, jj, kk; local
60 for (int &ref = ii; ref < 10; ref++) {
74 for (; ii < 10; ++ii)
75 c[ii] = a[ii];
80 for (ii + 1; ii < 10; ++ii)
81 c[ii]
[all...]
H A Dtaskloop_loop_messages.cpp24 int ii, jj, kk; local
74 for (int &ref = ii; ref < 10; ref++) {
91 for (; ii < 10; ++ii)
92 c[ii] = a[ii];
98 for (ii + 1; ii < 10; ++ii)
99 c[ii]
[all...]
H A Dsimd_loop_messages.cpp11 int ii, jj, kk; local
51 for (int &ref = ii; ref < 10; ref++) {
65 for (;ii < 10; ++ii)
66 c[ii] = a[ii];
71 for (ii + 1;ii < 10; ++ii)
72 c[ii]
[all...]
H A Ddistribute_parallel_for_simd_loop_messages.cpp20 int ii, jj, kk; local
78 for (int &ref = ii; ref < 10; ref++) {
98 for (; ii < 10; ++ii)
99 c[ii] = a[ii];
106 for (ii + 1; ii < 10; ++ii)
107 c[ii]
[all...]
H A Dtaskloop_simd_loop_messages.cpp24 int ii, jj, kk; local
74 for (int &ref = ii; ref < 10; ref++) {
91 for (; ii < 10; ++ii)
92 c[ii] = a[ii];
98 for (ii + 1; ii < 10; ++ii)
99 c[ii]
[all...]
H A Ddistribute_simd_loop_messages.cpp11 int ii, jj, kk; local
69 for (int &ref = ii; ref < 10; ref++) {
89 for (;ii < 10; ++ii)
90 c[ii] = a[ii];
97 for (ii + 1;ii < 10; ++ii)
98 c[ii]
[all...]
/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
/external/valgrind/coregrind/
H A Dfixup_macho_loadcmds.c217 static void unmap_image ( /*MOD*/ImageInfo* ii )
220 assert(ii->img);
221 assert(ii->img_szB > 0);
222 r = munmap( ii->img, ii->img_szB );
226 memset(ii, 0, sizeof(*ii));
232 thin parts into *ii. Returns 32 (and leaves the file unmapped) if
236 static Int map_image_aboard ( /*OUT*/ImageInfo* ii, HChar* filename ) argument
238 memset(ii,
378 ImageInfo ii; local
[all...]
/external/tensorflow/tensorflow/contrib/nearest_neighbor/kernels/
H A Dhyperplane_lsh_probes_test.cc33 for (int ii = 0; ii < expected_probes.size(); ++ii) {
35 EXPECT_EQ(expected_probes[ii], cur_probe);
45 for (int ii = 0; ii < expected_result.size(); ++ii) {
47 EXPECT_EQ(expected_result[ii].first, cur_probe);
48 EXPECT_EQ(expected_result[ii].second, cur_table);
105 for (int ii
[all...]
H A Dhyperplane_lsh_probes.h77 for (int_fast32_t ii = 0; ii < num_tables_; ++ii) {
78 main_table_probe_[ii] = 0;
80 main_table_probe_[ii] = main_table_probe_[ii] << 1;
81 main_table_probe_[ii] =
82 main_table_probe_[ii] |
83 (hash_vector_[ii * num_hyperplanes_per_table_ + jj] >= 0.0);
93 for (int_fast32_t ii
213 operator ()(int_fast32_t ii, int_fast32_t jj) const argument
[all...]
/external/libxaac/decoder/
H A Dixheaacd_mps_temp_reshape.c57 WORD32 ii, jj, param_band; local
69 for (ii = 0; ii < self->time_slots; ii++) {
71 slot_energy[ii]
73 ((self->hyb_dir_out[ch][ii][jj].re +
74 self->hyb_diff_out[ch][ii][jj].re) *
75 (self->hyb_dir_out[ch][ii][jj].re +
76 self->hyb_diff_out[ch][ii][jj].re)) +
77 ((self->hyb_dir_out[ch][ii][j
[all...]
/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/autotest/client/deps/webgl_mpd/src/debug/
H A Dwebgl-debug.js247 for (var ii = 0; ii < numArgs; ++ii) {
248 argStr += ((ii == 0) ? '' : ', ') +
249 glFunctionArgToString(functionName, numArgs, ii, args[ii]);
300 for (var ii = 0; ii < numArgs; ++ii) {
301 argStr += ((ii
[all...]
/external/toybox/toys/other/
H A Dbzcat.c164 int hh, ii, jj, kk, symCount, *base, *limit; local
168 ii = get_bits(bd, 24);
173 if (ii==0x177245 && jj==0x385090) return RETVAL_LAST_BLOCK;
176 if (ii!=0x314159 || jj!=0x265359) return RETVAL_NOT_BZIP_DATA;
189 for (ii=0; ii<16; ii++) {
190 if (hh & (1 << (15 - ii))) {
194 bd->symToByte[bd->symTotal++] = (16 * ii) + jj;
210 for (ii
322 int ii, jj, kk, runPos, dbufCount, symCount, selector, nextSym, local
454 int ii, jj; local
[all...]
/external/skia/tests/
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 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/xmlrpcpp/test/
H A DTestValues.cpp175 int ii; local
177 for (ii=0; ii< NELMTS; ++ii) {
179 sprintf(buf,"%d", ii);
185 for (ii=0; ii< NELMTS; ++ii) {
187 sprintf(buf,"%d", ii);
188 if (ii !
[all...]

Completed in 1842 milliseconds

1234567891011>>