source 122 lib/lua/ldblib.c settabss(L, "source", ar.source); source 152 lib/lua/ldebug.c ar->source = "=[C]"; source 158 lib/lua/ldebug.c ar->source = getstr(cl->l.p->source); source 163 lib/lua/ldebug.c luaO_chunkid(ar->short_src, ar->source, LUA_IDSIZE); source 171 lib/lua/ldebug.c ar->source = "=(tail call)"; source 172 lib/lua/ldebug.c luaO_chunkid(ar->short_src, ar->source, LUA_IDSIZE); source 612 lib/lua/ldebug.c luaO_chunkid(buff, getstr(getluaproto(ci)->source), LUA_IDSIZE); source 108 lib/lua/ldump.c for (i=0; i<n; i++) DumpFunction(f->p[i],f->source,D); source 131 lib/lua/ldump.c DumpString((f->source==p || D->strip) ? NULL : f->source,D); source 136 lib/lua/lfunc.c f->source = NULL; source 205 lib/lua/lgc.c if (f->source) stringmark(f->source); source 104 lib/lua/llex.c luaO_chunkid(buff, getstr(ls->source), MAXSRC); source 140 lib/lua/llex.c LUAI_FUNC void luaX_setinput (lua_State *L, LexState *ls, ZIO *z, TString *source) { source 148 lib/lua/llex.c ls->source = source; source 65 lib/lua/llex.h TString *source; /* current source name */ source 72 lib/lua/llex.h TString *source); source 182 lib/lua/lobject.c LUAI_FUNC void luaO_chunkid (char *out, const char *source, size_t bufflen) { source 183 lib/lua/lobject.c if (*source == '=') { source 184 lib/lua/lobject.c strncpy(out, source+1, bufflen); /* remove first char */ source 188 lib/lua/lobject.c if (*source == '@') { source 190 lib/lua/lobject.c source++; /* skip the `@' */ source 192 lib/lua/lobject.c l = strlen(source); source 195 lib/lua/lobject.c source += (l-bufflen); /* get last part of file name */ source 198 lib/lua/lobject.c strcat(out, source); source 203 lib/lua/lobject.c size_t len = strcspn(source, "\n\r"); /* stop at first newline */ source 207 lib/lua/lobject.c if (source[len] != '\0') { /* must truncate? */ source 208 lib/lua/lobject.c strncat(out, source, len); source 212 lib/lua/lobject.c strcat(out, source); source 239 lib/lua/lobject.h TString *source; source 377 lib/lua/lobject.h LUAI_FUNC void luaO_chunkid (char *out, const char *source, size_t len); source 345 lib/lua/lparser.c f->source = ls->source; source 351 lib/lua/lua.h const char *source; /* (S) */ source 128 lib/lua/luac.c f->source=luaS_newliteral(L,"=(" PROGNAME ")"); source 134 lib/lua/lundump.c for (i=0; i<n; i++) f->p[i]=LoadFunction(S,f->source); source 167 lib/lua/lundump.c f->source=LoadString(S); if (f->source==NULL) f->source=p; source 163 lib/lua/print.c const char* s=getstr(f->source); source 438 tools/code_gen.c char *source; source 494 tools/code_gen.c p->source = malloc(strlen(last_line)+1); source 495 tools/code_gen.c strcpy(p->source,last_line); source 536 tools/code_gen.c fprintf(stderr,"LINE - %d, SOURCE - %s\n",p->lineno,p->source); source 1114 tools/code_gen.c fprintf(stderr,"Line - %d, Source --> %s\n",last_op->lineno,last_op->source); source 22 tools/packfi2/compress.c int ZEXPORT compress2 (dest, destLen, source, sourceLen, level) source 25 tools/packfi2/compress.c const Bytef *source; source 32 tools/packfi2/compress.c stream.next_in = (Bytef*)source; source 62 tools/packfi2/compress.c int ZEXPORT compress (dest, destLen, source, sourceLen) source 65 tools/packfi2/compress.c const Bytef *source; source 68 tools/packfi2/compress.c return compress2(dest, destLen, source, sourceLen, Z_DEFAULT_COMPRESSION); source 894 tools/packfi2/deflate.c int ZEXPORT deflateCopy (dest, source) source 896 tools/packfi2/deflate.c z_streamp source; source 906 tools/packfi2/deflate.c if (source == Z_NULL || dest == Z_NULL || source->state == Z_NULL) { source 910 tools/packfi2/deflate.c ss = source->state; source 912 tools/packfi2/deflate.c zmemcpy(dest, source, sizeof(z_stream)); source 578 tools/packfi2/zlib.h z_streamp source)); source 774 tools/packfi2/zlib.h z_streamp source)); source 1010 tools/packfi2/zlib.h const Bytef *source, uLong sourceLen)); source 1025 tools/packfi2/zlib.h const Bytef *source, uLong sourceLen, source 1048 tools/packfi2/zlib.h const Bytef *source, uLong sourceLen)); source 149 tools/packfi2/zutil.c void zmemcpy(dest, source, len) source 151 tools/packfi2/zutil.c const Bytef* source; source 156 tools/packfi2/zutil.c *dest++ = *source++; /* ??? to be unrolled */ source 235 tools/packfi2/zutil.h extern void zmemcpy OF((Bytef* dest, const Bytef* source, uInt len));