Home
last modified time | relevance | path

Searched refs:yy (Results 1 – 4 of 4) sorted by relevance

/oneTBB/examples/parallel_for/tachyon/src/
H A Dapigeom.cpp84 int xx, yy; in rt_heightfield() local
92 for (yy = 0; yy < (n - 1); yy++) { in rt_heightfield()
95 v0.y = field[(yy)*m + (xx)] + zoff; in rt_heightfield()
96 v0.z = wy * (yy) / (n * 1.0) + yoff; in rt_heightfield()
99 v1.y = field[(yy)*m + (xx + 1)] + zoff; in rt_heightfield()
100 v1.z = wy * (yy) / (n * 1.0) + yoff; in rt_heightfield()
104 v2.z = wy * (yy + 1) / (n * 1.0) + yoff; in rt_heightfield()
109 v0.y = field[(yy)*m + (xx)] + zoff; in rt_heightfield()
110 v0.z = wy * (yy) / (n * 1.0) + yoff; in rt_heightfield()
114 v1.z = wy * (yy + 1) / (n * 1.0) + yoff; in rt_heightfield()
[all …]
/oneTBB/examples/graph/fgbzip2/
H A Dhuffman.cpp93 Int32 zz, yy, tmp; \
97 yy = zz << 1; \
98 if (yy > nHeap) \
100 if (yy < nHeap && weight[heap[yy + 1]] < weight[heap[yy]]) \
101 yy++; \
102 if (weight[tmp] < weight[heap[yy]]) \
104 heap[zz] = heap[yy]; \
105 zz = yy; \
H A Dcompress.cpp146 UChar yy[256]; in generateMTFValues() local
187 yy[i] = (UChar)i; in generateMTFValues()
198 if (yy[0] == ll_i) { in generateMTFValues()
225 rtmp = yy[1]; in generateMTFValues()
226 yy[1] = yy[0]; in generateMTFValues()
227 ryy_j = &(yy[1]); in generateMTFValues()
236 yy[0] = rtmp; in generateMTFValues()
237 j = ryy_j - &(yy[0]); in generateMTFValues()
/oneTBB/examples/graph/som/
H A Dsom.cpp167 for (int yy = lb; yy < ub; ++yy) { in epoch_update_range() local
168 if (yy >= 0 && yy < (int)my_map[xx].size()) { in epoch_update_range()
170 double my_rsq = xrsq + (yy - min_y) * (yy - min_y); // distance from BMU squared in epoch_update_range()
172 add_fraction_of_difference(my_map[xx][yy], s, theta * learning_rate); in epoch_update_range()