Home
last modified time | relevance | path

Searched refs:rawlen (Results 1 – 2 of 2) sorted by relevance

/f-stack/app/redis-5.0.5/src/
H A Dziplist.c338 if (rawlen <= 0x3f) { in zipStoreEntryEncoding()
340 buf[0] = ZIP_STR_06B | rawlen; in zipStoreEntryEncoding()
341 } else if (rawlen <= 0x3fff) { in zipStoreEntryEncoding()
345 buf[1] = rawlen & 0xff; in zipStoreEntryEncoding()
353 buf[4] = rawlen & 0xff; in zipStoreEntryEncoding()
628 if (p[rawlen] == ZIP_END) break; in __ziplistCascadeUpdate()
629 zipEntry(p+rawlen, &next); in __ziplistCascadeUpdate()
643 np = p+rawlen; in __ziplistCascadeUpdate()
659 p += rawlen; in __ziplistCascadeUpdate()
665 zipStorePrevEntryLengthLarge(p+rawlen,rawlen); in __ziplistCascadeUpdate()
[all …]
/f-stack/freebsd/contrib/openzfs/tests/zfs-tests/tests/functional/channel_program/lua_core/
H A Dtst.lib_base.lua173 assert(#t == 10 and rawlen(t) == 3)
174 assert(rawlen"abc" == 3)
175 assert(rawlen(string.rep('a', 1000)) == 1000)