PostGIS  3.4.0dev-r@@SVN_REVISION@@

◆ common_entry_cmp()

static int common_entry_cmp ( const void *  i1,
const void *  i2 
)
static

Definition at line 1701 of file gserialized_gist_2d.c.

1702 {
1703  float delta1 = ((const CommonEntry *) i1)->delta,
1704  delta2 = ((const CommonEntry *) i2)->delta;
1705 
1706  if (delta1 < delta2)
1707  return -1;
1708  else if (delta1 > delta2)
1709  return 1;
1710  else
1711  return 0;
1712 }

Referenced by gserialized_gist_picksplit_2d().

Here is the caller graph for this function: