Home
last modified time | relevance | path

Searched refs:numops (Results 1 – 7 of 7) sorted by relevance

/f-stack/app/redis-5.0.5/tests/integration/
H A Dreplication-3.tcl12 if {$::accurate} {set numops 50000} else {set numops 5000}
15 createComplexDataset r $numops useexpire
59 set numops 20000 ;# Enough to trigger the Script Cache LRU eviction.
67 for {set j 0} {$j < $numops} {incr j} {
83 if {$j == $numops / 2} {
89 [r dbsize] == $numops &&
90 [r -1 dbsize] == $numops &&
/f-stack/app/redis-5.0.5/src/
H A Dbitops.c917 int j, numops = 0, changes = 0; in bitfieldCommand() local
981 ops = zrealloc(ops,sizeof(*ops)*(numops+1)); in bitfieldCommand()
982 ops[numops].offset = bitoffset; in bitfieldCommand()
983 ops[numops].i64 = i64; in bitfieldCommand()
984 ops[numops].opcode = opcode; in bitfieldCommand()
985 ops[numops].owtype = owtype; in bitfieldCommand()
986 ops[numops].bits = bits; in bitfieldCommand()
987 ops[numops].sign = sign; in bitfieldCommand()
988 numops++; in bitfieldCommand()
1011 addReplyMultiBulkLen(c,numops); in bitfieldCommand()
[all …]
H A Dserver.c2250 oa->numops = 0; in redisOpArrayInit()
2258 oa->ops = zrealloc(oa->ops,sizeof(redisOp)*(oa->numops+1)); in redisOpArrayAppend()
2259 op = oa->ops+oa->numops; in redisOpArrayAppend()
2265 oa->numops++; in redisOpArrayAppend()
2266 return oa->numops; in redisOpArrayAppend()
2270 while(oa->numops) { in redisOpArrayFree()
2274 oa->numops--; in redisOpArrayFree()
2275 op = oa->ops+oa->numops; in redisOpArrayFree()
2522 if (server.also_propagate.numops) { in call()
2527 for (j = 0; j < server.also_propagate.numops; j++) { in call()
H A Dserver.h852 int numops; member
/f-stack/app/redis-5.0.5/tests/cluster/tests/
H A D10-manual-failover.tcl32 set numops 10000
38 for {set j 0} {$j < $numops} {incr j} {
H A D04-resharding.tcl55 set numops 200000
63 for {set j 0} {$j < $numops} {incr j} {
/f-stack/app/redis-5.0.5/tests/unit/
H A Dother.tcl59 if {$::accurate} {set numops 10000} else {set numops 1000}
62 createComplexDataset r $numops