PostGIS  2.4.9dev-r@@SVN_REVISION@@

◆ nd_stats_value_index()

static int nd_stats_value_index ( const ND_STATS stats,
int *  indexes 
)
static

Given a position in the n-d histogram (i,j,k) return the position in the 1-d values array.

Definition at line 378 of file gserialized_estimate.c.

References ND_STATS_T::ndims, and ND_STATS_T::size.

Referenced by compute_gserialized_stats_mode(), estimate_join_selectivity(), and estimate_selectivity().

379 {
380  int d;
381  int accum = 1, vdx = 0;
382 
383  /* Calculate the index into the 1-d values array that the (i,j,k,l) */
384  /* n-d histogram coordinate implies. */
385  /* index = x + y * sizex + z * sizex * sizey + m * sizex * sizey * sizez */
386  for ( d = 0; d < (int)(stats->ndims); d++ )
387  {
388  int size = (int)(stats->size[d]);
389  if ( indexes[d] < 0 || indexes[d] >= size )
390  {
391  POSTGIS_DEBUGF(3, " bad index at (%d, %d)", indexes[0], indexes[1]);
392  return -1;
393  }
394  vdx += indexes[d] * accum;
395  accum *= size;
396  }
397  return vdx;
398 }
float4 size[ND_DIMS]
Here is the caller graph for this function: