Searched refs:lsep (Results 1 - 2 of 2) sorted by relevance

/external/chromium_org/third_party/skia/third_party/lua/src/
H A Dltablib.c95 size_t lsep; local
97 const char *sep = luaL_optlstring(L, 2, "", &lsep);
104 luaL_addlstring(&b, sep, lsep);
H A Dlstrlib.c109 size_t l, lsep; local
112 const char *sep = luaL_optlstring(L, 3, "", &lsep);
114 else if (l + lsep < l || l + lsep >= MAXSIZE / n) /* may overflow? */
117 size_t totallen = n * l + (n - 1) * lsep;
122 if (lsep > 0) { /* avoid empty 'memcpy' (may be expensive) */
123 memcpy(p, sep, lsep * sizeof(char)); p += lsep;

Completed in 214 milliseconds