PostGIS 3.7.0dev-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(uint_values_hash, \
cvalue, \
sizeof(uint64_t), \
uint_value, \
VECTOR_TILE__TILE__VALUE__TEST_ONEOF_UINT_VALUE); \
} \
else \
{ \
int64_t cvalue = value; \
MVT_PARSE_VALUE(sint_values_hash, \
cvalue, \
sizeof(int64_t), \
sint_value, \
VECTOR_TILE__TILE__VALUE__TEST_ONEOF_SINT_VALUE); \
} \
}

Definition at line 472 of file mvt.c.

473 { \
474 if (value >= 0) \
475 { \
476 uint64_t cvalue = value; \
477 MVT_PARSE_VALUE(uint_values_hash, \
478 cvalue, \
479 sizeof(uint64_t), \
480 uint_value, \
481 VECTOR_TILE__TILE__VALUE__TEST_ONEOF_UINT_VALUE); \
482 } \
483 else \
484 { \
485 int64_t cvalue = value; \
486 MVT_PARSE_VALUE(sint_values_hash, \
487 cvalue, \
488 sizeof(int64_t), \
489 sint_value, \
490 VECTOR_TILE__TILE__VALUE__TEST_ONEOF_SINT_VALUE); \
491 } \
492 }
int value
Definition genraster.py:62