HomeSort by relevance Sort by last modified time
    Searched refs:lsep (Results 1 - 2 of 2) sorted by null

  /external/chromium_org/third_party/skia/third_party/lua/src/
ltablib.c 95 size_t lsep; local
97 const char *sep = luaL_optlstring(L, 2, "", &lsep);
104 luaL_addlstring(&b, sep, lsep);
lstrlib.c 109 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 99 milliseconds