PostGIS  2.4.9dev-r@@SVN_REVISION@@

◆ test_varint_roundtrip()

static void test_varint_roundtrip ( void  )
static

Definition at line 199 of file cu_varint.c.

References do_test_s64_roundtrip(), and do_test_u64_roundtrip().

Referenced by varint_suite_setup().

200 {
201 
202  do_test_u64_roundtrip(0xFFFFFFFFFFFFFFFF);
203 
204  int i;
205  for ( i = 0; i < 1024; i += 63 )
206  {
209  do_test_s64_roundtrip(-1*i);
210  }
211 }
static void do_test_u64_roundtrip(uint64_t i64_in)
Definition: cu_varint.c:177
static void do_test_s64_roundtrip(int64_t i64_in)
Definition: cu_varint.c:188
Here is the call graph for this function:
Here is the caller graph for this function: