Home
last modified time | relevance | path

Searched refs:GeoHashBits (Results 1 – 5 of 5) sorted by relevance

/f-stack/app/redis-5.0.5/src/
H A Dgeohash.h69 } GeoHashBits; typedef
77 GeoHashBits hash;
83 GeoHashBits north;
84 GeoHashBits east;
85 GeoHashBits west;
86 GeoHashBits south;
87 GeoHashBits north_east;
88 GeoHashBits south_east;
89 GeoHashBits north_west;
90 GeoHashBits south_west;
[all …]
H A Dgeohash.c123 GeoHashBits *hash) { in geohashEncode()
153 int geohashEncodeType(double longitude, double latitude, uint8_t step, GeoHashBits *hash) { in geohashEncodeType()
160 GeoHashBits *hash) { in geohashEncodeWGS84()
165 const GeoHashBits hash, GeoHashArea *area) { in geohashDecode()
196 int geohashDecodeType(const GeoHashBits hash, GeoHashArea *area) { in geohashDecodeType()
202 int geohashDecodeWGS84(const GeoHashBits hash, GeoHashArea *area) { in geohashDecodeWGS84()
213 int geohashDecodeToLongLatType(const GeoHashBits hash, double *xy) { in geohashDecodeToLongLatType()
220 int geohashDecodeToLongLatWGS84(const GeoHashBits hash, double *xy) { in geohashDecodeToLongLatWGS84()
224 static void geohash_move_x(GeoHashBits *hash, int8_t d) { in geohash_move_x()
244 static void geohash_move_y(GeoHashBits *hash, int8_t d) { in geohash_move_y()
[all …]
H A Dgeohash_helper.h45 GeoHashBits hash;
50 int GeoHashBitsComparator(const GeoHashBits *a, const GeoHashBits *b);
60 GeoHashFix52Bits geohashAlign52Bits(const GeoHashBits hash);
H A Dgeo.c86 GeoHashBits hash = { .bits = (uint64_t)bits, .step = GEO_STEP_MAX }; in decodeGeohash()
289 void scoresOfGeoHashBox(GeoHashBits hash, GeoHashFix52Bits *min, GeoHashFix52Bits *max) { in scoresOfGeoHashBox()
318 int membersOfGeoHashBox(robj *zobj, GeoHashBits hash, geoArray *ga, double lon, double lat, double … in membersOfGeoHashBox()
327 GeoHashBits neighbors[9]; in membersOfAllNeighbors()
436 GeoHashBits hash; in geoaddCommand()
730 GeoHashBits hash; in geohashCommand()
H A Dgeohash_helper.c119 GeoHashBits hash; in geohashGetAreasByRadius()
204 GeoHashFix52Bits geohashAlign52Bits(const GeoHashBits hash) { in geohashAlign52Bits()