Searched refs:lsep (Results 1 – 5 of 5) sorted by relevance
| /freebsd-12.1/usr.bin/netstat/ |
| H A D | if.c | 198 const char *lsep, *rsep; in show_stat() local 201 lsep = ""; in show_stat() 203 lsep = " "; in show_stat() 213 xo_emit("{P:/%s}{D:/%*s}{P:/%s}", lsep, width, "-", rsep); in show_stat() 235 maybe_pad(lsep); in show_stat() 241 maybe_pad(lsep); in show_stat()
|
| /freebsd-12.1/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/lua/ |
| H A D | ltablib.c | 95 size_t lsep; in tconcat() local 97 const char *sep = luaL_optlstring(L, 2, "", &lsep); in tconcat() 104 luaL_addlstring(&b, sep, lsep); in tconcat()
|
| H A D | lstrlib.c | 138 size_t l, lsep; in str_rep() local 141 const char *sep = luaL_optlstring(L, 3, "", &lsep); in str_rep() 143 else if (l + lsep < l || l + lsep >= MAXSIZE / n) /* may overflow? */ in str_rep() 146 size_t totallen = n * l + (n - 1) * lsep; in str_rep() 151 if (lsep > 0) { /* avoid empty 'memcpy' (may be expensive) */ in str_rep() 152 memcpy(p, sep, lsep * sizeof(char)); p += lsep; in str_rep()
|
| /freebsd-12.1/contrib/lua/src/ |
| H A D | ltablib.c | 172 size_t lsep; in tconcat() local 173 const char *sep = luaL_optlstring(L, 2, "", &lsep); in tconcat() 179 luaL_addlstring(&b, sep, lsep); in tconcat()
|
| H A D | lstrlib.c | 123 size_t l, lsep; in str_rep() local 126 const char *sep = luaL_optlstring(L, 3, "", &lsep); in str_rep() 128 else if (l + lsep < l || l + lsep > MAXSIZE / n) /* may overflow? */ in str_rep() 131 size_t totallen = (size_t)n * l + (size_t)(n - 1) * lsep; in str_rep() 136 if (lsep > 0) { /* empty 'memcpy' is not that cheap */ in str_rep() 137 memcpy(p, sep, lsep * sizeof(char)); in str_rep() 138 p += lsep; in str_rep()
|