Home
last modified time | relevance | path

Searched refs:carry (Results 1 – 25 of 637) sorted by relevance

12345678910>>...26

/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Math/BigInteger/Engines/
DPHP.php273 $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 …]
DEngine.php517 $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/
DpluginInfoVersionUpdater.js10 .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/
DpluginInfoVersionUpdater.js14 .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/
DpluginInfoVersionUpdater.js.skel10 .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/
DBarrett.php251 $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/
DTraversalTrait.php157 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(
DManipulationTrait.php211 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/
Dlogging.php158 function ($carry, $line) use ($msgNeedle) {
159 $carry = $carry + (int)(strpos($line['msg'], $msgNeedle) !== false);
160 return $carry;
/plugin/dropfiles/action/
Dajax.php142 * @param array $carry
146 protected function checkFileCallback($carry, $filename){ argument
150 $carry[$filename] = $error;
151 return $carry;
/plugin/rrdgraph/
Dsyntax.php203 * @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/
DNestedValue.php117 $ident = md5(array_reduce($row, static fn($carry, $value) => $carry . $value, ''));
/plugin/aichat/Storage/
DPineconeStorage.php172 $ids = array_reduce($ids, static fn($carry, $item) => $carry . '&ids=' . $item);
/plugin/fetchmedia/script/
Dmain.js5 yield* Object.entries(data).reduce((carry, [page, links]) => {
7 return carry.concat(flatLinks);
/plugin/searchindex/lang/en/
Dintro.txt12 to carry out multiple tasks in the background (using [[wp>AJAX]]).//
/plugin/combo/ComboStrap/
DDatabasePageRow.php1147 $fields = array_reduce($buildFields, function ($carry, $element) {
1148 if ($carry !== null) {
1149 return "$carry, p.{$element}";
/plugin/amcharts/
DREADME.md64 The `<amchart>` tag can carry optional attributes to customize the appearance of the chart. The att…
/plugin/xlsx2dw/packages/exceljs/
Dexceljs.js29830 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/
DREADME.md61 The `<c3>` tag can carry optional attributes to customize the appearance of the chart. The attribut…
/plugin/achart/
DREADME.md124 The `<achart>` tag can carry optional attributes to customize the appearance of the chart. The attr…
/plugin/bible/bible_douayRheims/
DAggeus.txt27 …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/
DLICENSE-APACHE97 (b) You must cause any modified files to carry prominent notices
/plugin/pdfjs/pdfjs/
DLICENSE98 (b) You must cause any modified files to carry prominent notices
/plugin/sequencediagram/bower_components/bower-webfontloader/
DLICENSE97 (b) You must cause any modified files to carry prominent notices
/plugin/codeprettify/code-prettify/
DCOPYING98 (b) You must cause any modified files to carry prominent notices

12345678910>>...26