PostGIS 3.0.6dev-r@@SVN_REVISION@@
Loading...
Searching...
No Matches

◆ MVT_PARSE_INT_VALUE

#define MVT_PARSE_INT_VALUE (   value)
Value:
{ \
if (value >= 0) \
{ \
uint64_t cvalue = value; \
MVT_PARSE_VALUE(cvalue, mvt_kv_uint_value, \
uint_values_hash, uint_value, \
sizeof(uint64_t)) \
} \
else \
{ \
int64_t cvalue = value; \
MVT_PARSE_VALUE(cvalue, mvt_kv_sint_value, \
sint_values_hash, sint_value, \
sizeof(int64_t)) \
} \
}

Definition at line 493 of file mvt.c.

494{ \
495 if (value >= 0) \
496 { \
497 uint64_t cvalue = value; \
498 MVT_PARSE_VALUE(cvalue, mvt_kv_uint_value, \
499 uint_values_hash, uint_value, \
500 sizeof(uint64_t)) \
501 } \
502 else \
503 { \
504 int64_t cvalue = value; \
505 MVT_PARSE_VALUE(cvalue, mvt_kv_sint_value, \
506 sint_values_hash, sint_value, \
507 sizeof(int64_t)) \
508 } \
509}
int value
Definition genraster.py:62