Home
last modified time | relevance | path

Searched refs:src (Results 1 – 25 of 33) sorted by relevance

12

/redis-3.2.3/deps/jemalloc/
H A DMakefile.in82 $(srcroot)src/atomic.c $(srcroot)src/base.c $(srcroot)src/bitmap.c \
83 $(srcroot)src/chunk.c $(srcroot)src/chunk_dss.c \
84 $(srcroot)src/chunk_mmap.c $(srcroot)src/ckh.c $(srcroot)src/ctl.c \
85 $(srcroot)src/extent.c $(srcroot)src/hash.c $(srcroot)src/huge.c \
86 $(srcroot)src/mb.c $(srcroot)src/mutex.c $(srcroot)src/pages.c \
87 $(srcroot)src/prof.c $(srcroot)src/quarantine.c $(srcroot)src/rtree.c \
88 $(srcroot)src/stats.c $(srcroot)src/tcache.c $(srcroot)src/util.c \
116 $(srcroot)test/src/mtx.c $(srcroot)test/src/mq.c \
117 $(srcroot)test/src/SFMT.c $(srcroot)test/src/test.c \
118 $(srcroot)test/src/thd.c $(srcroot)test/src/timer.c
[all …]
H A Dinstall-sh53 src=""
94 *) if [ x"$src" = x ]
96 src=$1
107 if [ x"$src" = x ]
116 dst=$src
117 src=""
130 if [ -f $src -o -d $src ]
134 echo "install: $src does not exist"
151 dst="$dst"/`basename $src`
227 $doit $instcmd $src $dsttmp &&
H A D.gitignore42 /src/*.[od]
43 /src/*.gcda
44 /src/*.gcno
57 /test/src/*.[od]
58 /test/src/*.gcda
59 /test/src/*.gcno
/redis-3.2.3/
H A D.gitignore15 src/release.h
19 src/transfer.sh
20 src/configs
22 src/redis.conf
23 src/nodes.conf
24 deps/lua/src/lua
25 deps/lua/src/luac
26 deps/lua/src/liblua.a
H A D00-RELEASENOTES313 src/sentinel.c | 1 +
364 src/cluster.c | 2 +-
463 src/bitops.c | 2 +-
494 src/server.c | 1 +
643 src/server.c | 2 +-
653 src/geo.c | 1 +
688 src/server.h | 2 +-
837 src/server.c | 2 +-
1447 src/geo.c | 2 +-
1457 src/geo.c | 2 +-
[all …]
H A DMakefile6 cd src && $(MAKE) $@
9 cd src && $(MAKE) $@
H A DREADME.md110 % cd src
116 % cd src
134 % cd src
/redis-3.2.3/src/
H A DMakefile.dep9 ../deps/lua/src/lua.h ../deps/lua/src/luaconf.h ae.h sds.h dict.h \
14 ../deps/lua/src/lua.h ../deps/lua/src/luaconf.h ae.h sds.h dict.h \
19 ../deps/lua/src/lua.h ../deps/lua/src/luaconf.h ae.h sds.h dict.h \
23 ../deps/lua/src/lua.h ../deps/lua/src/luaconf.h ae.h sds.h dict.h \
27 ../deps/lua/src/lua.h ../deps/lua/src/luaconf.h ae.h sds.h dict.h \
32 ../deps/lua/src/lua.h ../deps/lua/src/luaconf.h ae.h sds.h dict.h \
37 ../deps/lua/src/lua.h ../deps/lua/src/luaconf.h ae.h sds.h dict.h \
42 ../deps/lua/src/lua.h ../deps/lua/src/luaconf.h ae.h sds.h dict.h \
47 ../deps/lua/src/lua.h ../deps/lua/src/luaconf.h ae.h sds.h dict.h \
54 ../deps/lua/src/lua.h ../deps/lua/src/luaconf.h ae.h sds.h dict.h \
[all …]
H A Dredis-trib.rb489 nodes.each{|src|
490 next if src == target
1097 src = sn[src_idx]
1129 src.info[:balance] -= numslots
1131 src_idx -= 1 if src.info[:balance] == 0
1193 src = get_node_by_name(node_id)
1194 if !src || src.has_flag?("slave")
1198 sources << src
1207 src = get_node_by_name(line)
1213 elsif !src || src.has_flag?("slave")
[all …]
H A Dlzf_d.c48 # define lzf_movsb(dst, src, len) \ argument
50 : "=D" (dst), "=S" (src), "=c" (len) \
51 : "0" (dst), "1" (src), "2" (len));
H A Dbitops.c617 src = zmalloc(sizeof(unsigned char*) * numkeys); in bitopCommand()
625 src[j] = NULL; in bitopCommand()
637 zfree(src); in bitopCommand()
643 src[j] = objects[j]->ptr; in bitopCommand()
664 memcpy(lp,src,sizeof(unsigned long*)*numkeys); in bitopCommand()
665 memcpy(res,src[0],minlen); in bitopCommand()
722 output = (len[0] <= j) ? 0 : src[0][j]; in bitopCommand()
725 byte = (len[i] <= j) ? 0 : src[i][j]; in bitopCommand()
739 zfree(src); in bitopCommand()
1075 unsigned char *src = NULL; in bitfieldCommand() local
[all …]
H A Dt_zset.c1941 zsetopsrc *src; in zunionInterGenericCommand() local
1972 zfree(src); in zunionInterGenericCommand()
1977 src[i].subject = obj; in zunionInterGenericCommand()
1978 src[i].type = obj->type; in zunionInterGenericCommand()
1981 src[i].subject = NULL; in zunionInterGenericCommand()
1985 src[i].weight = 1.0; in zunionInterGenericCommand()
1999 zfree(src); in zunionInterGenericCommand()
2012 zfree(src); in zunionInterGenericCommand()
2018 zfree(src); in zunionInterGenericCommand()
2048 if (src[j].subject == src[0].subject) { in zunionInterGenericCommand()
[all …]
H A Dintset.c183 void *src, *dst; in intsetMoveTail() local
188 src = (int64_t*)is->contents+from; in intsetMoveTail()
192 src = (int32_t*)is->contents+from; in intsetMoveTail()
196 src = (int16_t*)is->contents+from; in intsetMoveTail()
200 memmove(dst,src,bytes); in intsetMoveTail()
H A DMakefile83 FINAL_CFLAGS+= -I../deps/hiredis -I../deps/linenoise -I../deps/lua/src
175 …$(REDIS_LD) -o $@ $^ ../deps/hiredis/libhiredis.a ../deps/lua/src/liblua.a $(REDIS_GEOHASH_OBJ) $(…
252 src/help.h:
H A Dnetworking.c601 void copyClientOutputBuffer(client *dst, client *src) { in copyClientOutputBuffer() argument
603 dst->reply = listDup(src->reply); in copyClientOutputBuffer()
604 memcpy(dst->buf,src->buf,src->bufpos); in copyClientOutputBuffer()
605 dst->bufpos = src->bufpos; in copyClientOutputBuffer()
606 dst->reply_bytes = src->reply_bytes; in copyClientOutputBuffer()
/redis-3.2.3/deps/lua/
H A DMakefile56 cd src && $(MAKE) $@
59 src/lua test/hello.lua
62 …cd src && $(MKDIR) $(INSTALL_BIN) $(INSTALL_INC) $(INSTALL_LIB) $(INSTALL_MAN) $(INSTALL_LMOD) $(I…
63 cd src && $(INSTALL_EXEC) $(TO_BIN) $(INSTALL_BIN)
64 cd src && $(INSTALL_DATA) $(TO_INC) $(INSTALL_INC)
65 cd src && $(INSTALL_DATA) $(TO_LIB) $(INSTALL_LIB)
69 cd src && cd $(INSTALL_LIB) && $(RANLIB) $(TO_LIB)
89 @cd src && $(MAKE) -s echo
H A DINSTALL5 Lua is built in the src directory, but the build process can be
56 - How to build Lua -- edit src/Makefile.
57 - Lua features -- edit src/luaconf.h.
63 to edit src/luaconf.h. The edited file will be the one installed, and
68 (and also Windows). See src/luaconf.h and also src/Makefile.
/redis-3.2.3/utils/create-cluster/
H A Dcreate-cluster25 …../../src/redis-server --port $PORT --cluster-enabled yes --cluster-config-file nodes-${PORT}.conf…
37 ../../src/redis-trib.rb create --replicas $REPLICAS $HOSTS
46 ../../src/redis-cli -p $PORT shutdown nosave
57 ../../src/redis-cli -p $PORT cluster nodes | head -30
75 ../../src/redis-cli -p $PORT $2 $3 $4 $5 $6 $7 $8 $9
/redis-3.2.3/deps/lua/etc/
H A DMakefile4 LIB= $(TOP)/src
5 INC= $(TOP)/src
6 BIN= $(TOP)/src
7 SRC= $(TOP)/src
H A Dluavs.bat3 @rem It creates lua51.dll, lua51.lib, lua.exe, and luac.exe in src.
11 cd src
H A DREADME2 Unlike the code in ../src, everything here is in the public domain.
/redis-3.2.3/utils/hashtable/
H A DREADME13 cc -I ../../src/ rehashing.c ../../src/zmalloc.c ../../src/dict.c -o rehashing_test
/redis-3.2.3/deps/lua/src/
H A Dlstrlib.c553 const char *src; in gmatch_aux() local
558 src <= ms.src_end; in gmatch_aux()
559 src++) { in gmatch_aux()
659 ms.src_init = src; in str_gsub()
660 ms.src_end = src+srcl; in str_gsub()
664 e = match(&ms, src, p); in str_gsub()
667 add_value(&ms, &b, src, e); in str_gsub()
670 src = e; /* skip it */ in str_gsub()
671 else if (src < ms.src_end) in str_gsub()
672 luaL_addchar(&b, *src++); in str_gsub()
[all …]
/redis-3.2.3/utils/
H A Dredis-copy.rb12 src = "#{opts[:srchost]}:#{opts[:srcport]}"
/redis-3.2.3/deps/
H A DMakefile72 cd lua/src && $(MAKE) all CFLAGS="$(LUA_CFLAGS)" MYLDFLAGS="$(LUA_LDFLAGS)" AR="$(AR) $(ARFLAGS)"

12