Lines Matching refs:idx

348     var idx = fmt.length - 1;
349 while(fmt.charCodeAt(idx-1) === 44) --idx;
350 return write_num(type, fmt.substr(0,idx), val / Math.pow(10,3*(fmt.length-idx)));
354 var idx = fmt.indexOf("E") - fmt.indexOf(".") - 1;
359 o = (val/Math.pow(10,ee)).toPrecision(idx+1+(period+ee)%period);
371 } else o = val.toExponential(idx);
482 var idx = fmt.length - 1;
483 while(fmt.charCodeAt(idx-1) === 44) --idx;
484 return write_num(type, fmt.substr(0,idx), val / Math.pow(10,3*(fmt.length-idx)));
492 var idx = fmt.indexOf("E") - fmt.indexOf(".") - 1;
497 o = (val/Math.pow(10,ee)).toPrecision(idx+1+(period+ee)%period);
505 } else o = val.toExponential(idx);
847 SSF.load = function load_entry(fmt, idx) { table_fmt[idx] = fmt; }; argument
1085 function sleuth_fat(idx, cnt, sectors, ssz, fat_addrs) {
1087 if(idx === ENDOFCHAIN) {
1089 } else if(idx !== -1 /*FREESECT*/) {
1090 var sector = sectors[idx], m = (ssz>>>2)-1;
1514 function readIEEE754(buf, idx, isLE, nl, ml) { argument
1519 var bits = -7, d = isLE ? -1 : 1, i = isLE ? (nl - 1) : 0, s = buf[idx + i];
1523 for (; bits > 0; e = e * 256 + buf[idx + i], i += d, bits -= 8);
1525 for (; bits > 0; m = m * 256 + buf[idx + i], i += d, bits -= 8);
1545 __double = ___double = function(b, idx) { return readIEEE754(b, idx);};
1568 var __readUInt8 = function(b, idx) { return b[idx]; }; argument
1569 var __readUInt16LE = function(b, idx) { return b[idx+1]*(1<<8)+b[idx]; }; argument
1570 var __readInt16LE = function(b, idx) { var u = b[idx+1]*(1<<8)+b[idx]; return (u < 0x8000) ? u : (0… argument
1571 var __readUInt32LE = function(b, idx) { return b[idx+3]*(1<<24)+(b[idx+2]<<16)+(b[idx+1]<<8)+b[idx]… argument
1572 var __readInt32LE = function(b, idx) { return (b[idx+3]<<24)|(b[idx+2]<<16)|(b[idx+1]<<8)|b[idx]; }; argument
7390 function write_ws_xml_cell(cell, ref, ws, opts, idx, wb) { argument
7434 var ri = 0, x = "", cells = [], cref = [], idx = 0, i=0, cc=0, d="", p;
7457 cref = x.match(rregex); idx = ri; i=0; cc=0;
7460 idx = 0; d=cref[1];
7463 idx = 26*idx + cc;
7465 --idx;
7466 tagc = idx;
7483 if(guess.s.c > idx) guess.s.c = idx;
7484 if(guess.e.c < idx) guess.e.c = idx;
7526 function write_ws_xml_data(ws, opts, idx, wb) { argument
7535 if((cell = write_ws_xml_cell(ws[ref], ref, ws, opts, idx, wb)) != null) r.push(cell);
7547 function write_ws_xml(idx, opts, wb) { argument
7549 var s = wb.SheetNames[idx], sidx = 0, rdata = "";
7558 rdata = write_ws_xml_data(ws, opts, idx, wb);
7942 function write_CELLTABLE(ba, ws, idx, opts, wb) { argument
7961 function write_ws_bin(idx, opts, wb) { argument
7963 var s = wb.SheetNames[idx], ws = wb.Sheets[s] || {};
7971 write_CELLTABLE(ba, ws, idx, opts, wb);
8353 for(var idx = 0; idx != wb.SheetNames.length; ++idx) {
8354 var d = { hsState: 0, iTabID: idx+1, strRelID: 'rId' + (idx+1), name: wb.SheetNames[idx] };
11463 var idx = 0, i = 0, cc = 0;
11465 for(idx = 0; i < len; ++i) {
11467 idx = 26*idx + cc;
11469 o.s.c = --idx;
11471 for(idx = 0; i < len; ++i) {
11473 idx = 10*idx + cc;
11475 o.s.r = --idx;
11479 for(idx = 0; i != len; ++i) {
11481 idx = 26*idx + cc;
11483 o.e.c = --idx;
11485 for(idx = 0; i != len; ++i) {
11487 idx = 10*idx + cc;
11489 o.e.r = --idx;