/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Math/BigInteger/Engines/ |
D | PHP.php | 273 $carry = 0; 276 … $sum = ($x_value[$j] + $y_value[$j]) * static::BASE_FULL + $x_value[$i] + $y_value[$i] + $carry; 277 …$carry = $sum >= static::MAX_DIGIT2; // eg. floor($sum / 2**52); only possible values (in any base… 278 $sum = $carry ? $sum - static::MAX_DIGIT2 : $sum; 287 $sum = $x_value[$i] + $y_value[$i] + $carry; 288 $carry = $sum >= static::BASE_FULL; 289 $value[$i] = $carry ? $sum - static::BASE_FULL : $sum; 293 if ($carry) { 363 $carry = 0; 365 … $sum = ($x_value[$j] - $y_value[$j]) * static::BASE_FULL + $x_value[$i] - $y_value[$i] - $carry; [all …]
|
D | Engine.php | 517 $carry = 0; 519 $temp = ord($x[$i]) << $shift | $carry; 521 $carry = $temp >> 8; 523 $carry = ($carry != 0) ? chr($carry) : ''; 524 $x = $carry . $x . str_repeat(chr(0), $num_bytes);
|
/plugin/dx/build/ |
D | pluginInfoVersionUpdater.js | 10 .reduce( (carry, [key, value]) => { return { ...carry, [key]: value};}, {} ); 14 … const longestKey = Object.keys(options).reduce( (carry, key) => Math.max(carry, key.length), 0);
|
/plugin/yearbox/build/ |
D | pluginInfoVersionUpdater.js | 14 .reduce( (carry, [key, value]) => { return { ...carry, [key]: value};}, {} ); 18 … const longestKey = Object.keys(options).reduce( (carry, key) => Math.max(carry, key.length), 0);
|
/plugin/dx/skel/build/ |
D | pluginInfoVersionUpdater.js.skel | 10 .reduce( (carry, [key, value]) => { return { ...carry, [key]: value};}, {} ); 14 … const longestKey = Object.keys(options).reduce( (carry, key) => Math.max(carry, key.length), 0);
|
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Math/BigInteger/Engines/PHP/Reductions/ |
D | Barrett.php | 251 $carry = 0; 254 $temp = $x_value[$j] * $y_value[0] + $carry; // $product_value[$k] == 0 255 $carry = $class::BASE === 26 ? intval($temp / 0x4000000) : ($temp >> 31); 256 $product_value[$j] = (int) ($temp - $class::BASE_FULL * $carry); 260 $product_value[$j] = $carry; 267 $carry = 0; 270 $temp = $product_value[$k] + $x_value[$j] * $y_value[$i] + $carry; 271 $carry = $class::BASE === 26 ? intval($temp / 0x4000000) : ($temp >> 31); 272 $product_value[$k] = (int) ($temp - $class::BASE_FULL * $carry); 276 $product_value[$k] = $carry;
|
/plugin/scrape/vendor/scotteh/php-dom-wrapper/src/Traits/ |
D | TraversalTrait.php | 157 return $inputNodes->reduce(function($carry, $inputNode) use ($descendantNodes) { 163 return $carry; 244 $results = $this->collection()->reduce(function($carry, $node) use ($selector) { 245 return $carry->merge( 261 $results = $this->collection()->reduce(function($carry, $node) { 262 return $carry->merge( 353 $results = $this->collection()->reduce(function($carry, $node) { 355 return $carry; 358 return $carry->merge(
|
D | ManipulationTrait.php | 211 return (string)$this->collection()->reduce(function($carry, $node) { 212 return $carry . $node->textContent; 380 return (bool)$this->collection()->reduce(function($carry, $node) use ($name) { 385 return $carry; 507 return (bool)$this->collection()->reduce(function($carry, $node) use ($class) { 510 return array_reduce(explode(' ', (string)$attr), function($carry, $item) use ($class) { 515 return $carry; 688 return $nodes->reduce(function($carry, $node) { 689 return $carry . $this->document()->saveHTML($node); 705 return $nodes->contents()->reduce(function($carry, $node) { [all …]
|
/plugin/loglog/helper/ |
D | logging.php | 158 function ($carry, $line) use ($msgNeedle) { 159 $carry = $carry + (int)(strpos($line['msg'], $msgNeedle) !== false); 160 return $carry;
|
/plugin/dropfiles/action/ |
D | ajax.php | 142 * @param array $carry 146 protected function checkFileCallback($carry, $filename){ argument 150 $carry[$filename] = $error; 151 return $carry;
|
/plugin/rrdgraph/ |
D | syntax.php | 203 * @param String $carry The output of the last runs. 207 private function reduceRecipeLine($carry, $item) { argument 209 return $carry . "\n" . $item[1] . ':' . $item[2]; 211 return $carry . "\n" . $item[0] . '?' . $item[1] . ':' . $item[2];
|
/plugin/struct/meta/ |
D | NestedValue.php | 117 $ident = md5(array_reduce($row, static fn($carry, $value) => $carry . $value, ''));
|
/plugin/aichat/Storage/ |
D | PineconeStorage.php | 172 $ids = array_reduce($ids, static fn($carry, $item) => $carry . '&ids=' . $item);
|
/plugin/fetchmedia/script/ |
D | main.js | 5 yield* Object.entries(data).reduce((carry, [page, links]) => { 7 return carry.concat(flatLinks);
|
/plugin/searchindex/lang/en/ |
D | intro.txt | 12 to carry out multiple tasks in the background (using [[wp>AJAX]]).//
|
/plugin/combo/ComboStrap/ |
D | DatabasePageRow.php | 1147 $fields = array_reduce($buildFields, function ($carry, $element) { 1148 if ($carry !== null) { 1149 return "$carry, p.{$element}";
|
/plugin/amcharts/ |
D | README.md | 64 The `<amchart>` tag can carry optional attributes to customize the appearance of the chart. The att…
|
/plugin/xlsx2dw/packages/exceljs/ |
D | exceljs.js | 29830 var carry = 0; 29834 var word = ((w << off | carry) & 0xffffff).toString(16); 29835 carry = w >>> 24 - off & 0xffffff; 29837 if (carry !== 0 || i !== this.length - 1) { 29851 if (carry !== 0) { 29852 out = carry.toString(16) + out; 30290 var carry = 0; 30293 r = (a.words[i] | 0) + (b.words[i] | 0) + carry; 30295 carry = r >>> 26; 30298 for (; carry !== 0 && i < a.length; i++) { [all …]
|
/plugin/c3chart/ |
D | README.md | 61 The `<c3>` tag can carry optional attributes to customize the appearance of the chart. The attribut…
|
/plugin/achart/ |
D | README.md | 124 The `<achart>` tag can carry optional attributes to customize the appearance of the chart. The attr…
|
/plugin/bible/bible_douayRheims/ |
D | Aggeus.txt | 27 …2:13. If a man carry sanctified flesh in the skirt of his garment, and touch with his skirt, bread…
|
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/ |
D | LICENSE-APACHE | 97 (b) You must cause any modified files to carry prominent notices
|
/plugin/pdfjs/pdfjs/ |
D | LICENSE | 98 (b) You must cause any modified files to carry prominent notices
|
/plugin/sequencediagram/bower_components/bower-webfontloader/ |
D | LICENSE | 97 (b) You must cause any modified files to carry prominent notices
|
/plugin/codeprettify/code-prettify/ |
D | COPYING | 98 (b) You must cause any modified files to carry prominent notices
|