Home
last modified time | relevance | path

Searched refs:withscores (Results 1 – 4 of 4) sorted by relevance

/f-stack/app/redis-5.0.5/tests/unit/type/
H A Dzset.tcl218 assert_equal {a 1 b 2 c 3 d 4} [r zrange ztmp 0 -1 withscores]
357 assert_equal {b 1 c 2 d 3} [r zrangebyscore zset 0 3 withscores]
562 r zrange zsetc 0 -1 withscores
575 assert_equal {a 1 b 3 d 3 c 5} [r zrange zsetc 0 -1 withscores]
605 assert_equal {b 3 c 5} [r zrange zsetc 0 -1 withscores]
610 assert_equal {b 7 c 12} [r zrange zsetc 0 -1 withscores]
619 assert_equal {b 5 c 8} [r zrange zsetc 0 -1 withscores]
624 assert_equal {b 1 c 2} [r zrange zsetc 0 -1 withscores]
629 assert_equal {b 2 c 3} [r zrange zsetc 0 -1 withscores]
751 r zrange out 0 -1 withscores
[all …]
/f-stack/app/redis-5.0.5/tests/unit/
H A Dgeo.tcl89 r zrange nyc 0 -1 withscores
205 set res [r zrange points2 0 -1 withscores]
217 set res [r zrange points2 0 -1 withscores]
222 set res [r zrange points2 0 -1 withscores]
/f-stack/app/redis-5.0.5/src/
H A Dt_zset.c2414 int withscores = 0; in zrangeGenericCommand() local
2424 withscores = 1; in zrangeGenericCommand()
2449 addReplyMultiBulkLen(c, withscores ? (rangelen*2) : rangelen); in zrangeGenericCommand()
2474 if (withscores) in zrangeGenericCommand()
2504 if (withscores) in zrangeGenericCommand()
2527 int withscores = 0; in genericZrangebyscoreCommand() local
2555 withscores = 1; in genericZrangebyscoreCommand()
2636 if (withscores) { in genericZrangebyscoreCommand()
2691 if (withscores) { in genericZrangebyscoreCommand()
2706 if (withscores) { in genericZrangebyscoreCommand()
/f-stack/app/redis-5.0.5/tests/support/
H A Dutil.tcl295 foreach e [{*}$r zrange $k 0 -1 withscores] {