Home | History | Annotate | Download | only in profviz

Lines Matching refs:Code

10 // distribute the complete modified source code.  Modifications are to
22 // Permission to distribute the released version of the source code along
61 // Note: For maximum-speed code, see "Optimizing Code" on the Emscripten wiki, https://github.com/kripken/emscripten/wiki/Optimizing-Code
62 // Note: Some Emscripten settings may limit the speed of the generated code.
69 // The environment setup code below is customized to use Module.
70 // *** Environment setup code ***
181 // *** Environment setup code ***
190 // Runtime code shared with compiler
413 this.processCChar = function (code) {
414 code = code & 0xff;
416 buffer.push(code);
420 if (code < 128) return String.fromCharCode(code);
421 buffer.push(code);
422 if (code > 191 && code < 224) {
464 var ABORT = false; // whether we are quitting the application. no code should run after this. set in exit() and abort()
563 // code then, whereas this function picks the right code at
612 // for multiple syntaxes to save space in generated code. So you should
735 'Cannot fallback to non-typed array case: Code is too specialized');
971 function copyTempFloat(ptr) { // functions, because inlining this code increases code size too much
1350 assert(!FS.init.initialized, 'FS.init was previously called. If you want to initialize later with custom parameters, remove any earlier calls (note that one is automatically added to the generated code)');
2450 code",55:"Invalid slot",56:"File locking deadlock error",57:"Bad font file fmt",60:"Device not a stream",61:"No data (for no delay io)",62:"Timer expired",63:"Out of streams resources",64:"Machine is not on the network",65:"Package not installed",66:"The object is remote",67:"The link has been severed",68:"Advertise error",69:"Srmount error",70:"Communication error on send",71:"Protocol error",74:"Multihop attempted",75:"Inode is remote (not really error)",76:"Cross mount point (not really error)",77:"Trying to read unreadable message",79:"Inappropriate file type or format",80:"Given log. name not unique",81:"f.d. invalid for this operation",82:"Remote address changed",83:"Can\t access a needed shared lib",84:"Accessing a corrupted shared lib",85:".lib section in a.out corrupted",86:"Attempting to link in too many libs",87:"Attempting to exec a shared library",88:"Function not implemented",89:"No more files",90:"Directory not empty",91:"File or path name too long",92:"Too many symbolic links",95:"Operation not supported on transport endpoint",96:"Protocol family not supported",104:"Connection reset by peer",105:"No buffer space available",106:"Address family not supported by protocol family",107:"Protocol wrong type for socket",108:"Socket operation on non-socket",109:"Protocol not available",110:"Can't send after socket shutdown",111:"Connection refused",112:"Address already in use",113:"Connection aborted",114:"Network is unreachable",115:"Network interface is not configured",116:"Connection timed out",117:"Host is down",118:"Host is unreachable",119:"Connection already in progress",120:"Socket already connected",121:"Destination address required",122:"Message too long",123:"Unknown protocol",124:"Socket type not supported",125:"Address not available",126:"ENETRESET",127:"Socket is already connected",128:"Socket is not connected",129:"TOOMANYREFS",130:"EPROCLIM",131:"EUSERS",132:"EDQUOT",133:"ESTALE",134:"Not supported",135:"No medium (in tape drive)",136:"No such host or network path",137:"Filename exists with different case",138:"EILSEQ",139:"Value too large for defined data type",140:"Operation canceled",141:"State not recoverable",142:"Previous owner died",143:"Streams pipe error"};function _strerror_r(errnum, strerrbuf, buflen) {
2830 // used in client code.
4537 // Warning: printing of i64 values may be slightly rounded! No deep i64 math used, so precise i64 code not included