Server IP : 185.86.78.101 / Your IP : 216.73.216.124 Web Server : Apache System : Linux 675867-vds-valikoshka1996.gmhost.pp.ua 5.4.0-150-generic #167-Ubuntu SMP Mon May 15 17:35:05 UTC 2023 x86_64 User : www ( 1000) PHP Version : 7.4.33 Disable Function : passthru,exec,system,putenv,chroot,chgrp,chown,shell_exec,popen,proc_open,pcntl_exec,ini_alter,ini_restore,dl,openlog,syslog,readlink,symlink,popepassthru,pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,imap_open,apache_setenv MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : OFF Directory : /www/wwwroot/mifepriston.org/node_modules/bn.js/util/ |
Upload File : |
'use strict'; // NOTE: This could be potentionally used to generate loop-less multiplications function genCombMulTo (alen, blen) { var len = alen + blen - 1; var src = [ 'var a = self.words;', 'var b = num.words;', 'var o = out.words;', 'var c = 0;', 'var lo;', 'var mid;', 'var hi;' ]; for (var i = 0; i < alen; i++) { src.push('var a' + i + ' = a[' + i + '] | 0;'); src.push('var al' + i + ' = a' + i + ' & 0x1fff;'); src.push('var ah' + i + ' = a' + i + ' >>> 13;'); } for (i = 0; i < blen; i++) { src.push('var b' + i + ' = b[' + i + '] | 0;'); src.push('var bl' + i + ' = b' + i + ' & 0x1fff;'); src.push('var bh' + i + ' = b' + i + ' >>> 13;'); } src.push(''); src.push('out.negative = self.negative ^ num.negative;'); src.push('out.length = ' + len + ';'); for (var k = 0; k < len; k++) { var minJ = Math.max(0, k - alen + 1); var maxJ = Math.min(k, blen - 1); src.push('\/* k = ' + k + ' *\/'); src.push('var w' + k + ' = c;'); src.push('c = 0;'); for (var j = minJ; j <= maxJ; j++) { i = k - j; src.push('lo = Math.imul(al' + i + ', bl' + j + ');'); src.push('mid = Math.imul(al' + i + ', bh' + j + ');'); src.push('mid = (mid + Math.imul(ah' + i + ', bl' + j + ')) | 0;'); src.push('hi = Math.imul(ah' + i + ', bh' + j + ');'); src.push('w' + k + ' = (w' + k + ' + lo) | 0;'); src.push('w' + k + ' = (w' + k + ' + ((mid & 0x1fff) << 13)) | 0;'); src.push('c = (c + hi) | 0;'); src.push('c = (c + (mid >>> 13)) | 0;'); src.push('c = (c + (w' + k + ' >>> 26)) | 0;'); src.push('w' + k + ' &= 0x3ffffff;'); } } // Store in separate step for better memory access for (k = 0; k < len; k++) { src.push('o[' + k + '] = w' + k + ';'); } src.push('if (c !== 0) {', ' o[' + k + '] = c;', ' out.length++;', '}', 'return out;'); return src.join('\n'); } console.log(genCombMulTo(10, 10));