Home
last modified time | relevance | path

Searched refs:row_size (Results 1 – 3 of 3) sorted by relevance

/external/linux-tools-perf/util/
Dxyarray.c6 size_t row_size = ylen * entry_size; in xyarray__new() local
7 struct xyarray *xy = zalloc(sizeof(*xy) + xlen * row_size); in xyarray__new()
11 xy->row_size = row_size; in xyarray__new()
Dxyarray.h7 size_t row_size; member
17 return &xy->contents[x * xy->row_size + y * xy->entry_size]; in xyarray__entry()
/external/opencv/cvaux/src/
Dcvcorrespond.cpp77 int row_size; in icvDynamicCorrespond() local
107 row_size = first_runs + 1; in icvDynamicCorrespond()
139 costTable[baseIndex + row_size] = costTable[baseIndex] + Occlusion * (l_end - prev); in icvDynamicCorrespond()
140 baseIndex += row_size; in icvDynamicCorrespond()
196 min2 = costTable[i_1 + j * row_size] + Occlusion * l_len; in icvDynamicCorrespond()
198 min3 = costTable[i + j_1 * row_size] + Occlusion * r_len; in icvDynamicCorrespond()
200 min1 = costTable[i_1 + j_1 * row_size] + cost + (float) cost1; in icvDynamicCorrespond()
233 costTable[i + j * row_size] = cmin; in icvDynamicCorrespond()
234 matchEdges[i + j * row_size] = cpath; in icvDynamicCorrespond()
251 switch (matchEdges[i + j * row_size]) in icvDynamicCorrespond()