Home
last modified time | relevance | path

Searched refs:one (Results 1 – 25 of 1245) sorted by relevance

12345678910>>...50

/plugin/findologicxmlexport/vendor/twig/twig/test/Twig/Tests/Fixtures/filters/
H A Dsplit.test4 {{ "one,two,three,four,five"|split(',')|join('-') }}
12 return ['foo' => "one,two,three,four,five", 'baz' => '12345',]
14 one-two-three-four-five
15 one-two-three-four-five
16 one-two-three,four,five
20 one-two-three
/plugin/jplayer/vendor/kriswallsmith/assetic/src/Assetic/Util/
H A DTraversableString.php21 private $one; variable in Assetic\\Util\\TraversableString
24 public function __construct($one, array $many) argument
26 $this->one = $one;
42 return (string) $this->one;
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Math/PrimeField/
H A DInteger.php246 static $one, $two;
247 if (!isset($one)) {
248 $one = new BigInteger(1);
252 $p_1 = static::$modulo[$this->instanceID]->subtract($one);
256 for ($z = $one; !$z->equals(static::$modulo[$this->instanceID]); $z = $z->add($one)) {
266 list($temp) = $q->add($one)->divide($two);
269 while (!$t->equals($one)) {
270 $i = clone $one;
272 while (!$t->powMod($two->pow($i), static::$modulo[$this->instanceID])->equals($one)) {
273 $i = $i->add($one);
[all …]
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Crypt/RSA/Formats/Keys/
H A DPuTTY.php57 static $one;
58 if (!isset($one)) {
59 $one = new BigInteger(1);
84 $temp = $primes[1]->subtract($one);
86 $temp = $primes[2]->subtract($one);
H A DOpenSSH.php50 static $one;
51 if (!isset($one)) {
52 $one = new BigInteger(1);
75 $temp = $primes[1]->subtract($one);
77 $temp = $primes[2]->subtract($one);
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Math/
H A DPrimeField.php89 static $one;
90 if (!isset($one)) {
91 $one = new BigInteger(1);
94 …return new Integer($this->instanceID, BigInteger::randomRange($one, Integer::getModulo($this->inst…
/plugin/findologicxmlexport/vendor/twig/twig/doc/
H A Dcoding_standards.rst7 * Put one (and only one) space after the start of a delimiter (``{{``, ``{%``,
25 * Put one (and only one) space before and after the following operators:
37 * Put one (and only one) space after the ``:`` sign in hashes and ``,`` in
92 * Indent your code inside tags (use the same indentation as the one used for
/plugin/authgooglesheets/vendor/google/apiclient-services/src/GamesConfiguration/
H A DGamesNumberAffixConfiguration.php66 public function setOne(LocalizedStringBundle $one) argument
68 $this->one = $one;
75 return $this->one;
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Crypt/EC/BaseCurves/
H A DBase.php131 static $one;
132 if (!isset($one)) {
133 $one = new BigInteger(1);
136 return BigInteger::randomRange($one, $this->order->subtract($one));
H A DKoblitzPrime.php60 static $zero, $one, $two;
63 $one = new BigInteger(1);
68 $inv = $this->one->divide($this->two)->negate();
80 $tempOne = $factory->newInteger($one);
117 $c1 = $c1->add($one);
123 $c2 = $c2->add($one);
138 clone $this->one
146 clone $this->one
260 $one = new BigInteger(1);
263 $a = clone $one;
[all …]
H A DTwistedEdwards.php84 protected $one; variable in phpseclib3\\Crypt\\EC\\BaseCurves\\TwistedEdwards
101 $this->one = $this->factory->newInteger(new BigInteger(1));
186 $z = $this->one->divide($z);
215 $rhs = $this->d->multiply($x2)->multiply($y2)->add($this->one);
H A DMontgomery.php76 protected $one; variable in phpseclib3\\Crypt\\EC\\BaseCurves\\Montgomery
107 $this->one = $this->factory->newInteger(new BigInteger(1));
225 $p1 = [$this->one, $this->zero];
258 return [clone $this->zero, clone $this->one];
265 $p[1] = clone $this->one;
/plugin/findologicxmlexport/vendor/twig/twig/doc/filters/
H A Dsplit.rst12 {% set foo = "one,two,three"|split(',') %}
13 {# foo contains ['one', 'two', 'three'] #}
27 {% set foo = "one,two,three,four,five"|split(',', 3) %}
28 {# foo contains ['one', 'two', 'three,four,five'] #}
31 chunks. Length is set by the ``limit`` argument (one character by default).
H A Dconvert_encoding.rst7 The ``convert_encoding`` filter converts a string from one encoding to
8 another. The first argument is the expected output charset and the second one
17 This filter relies on the `iconv`_ or `mbstring`_ extension, so one of
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Crypt/
H A DDSA.php153 $p = $x->subtract($c->subtract(self::$one));
156 $p_1 = $p->subtract(self::$one);
166 if (!$g->equals(self::$one)) {
169 $h = $h->add(self::$one);
215 $private->x = BigInteger::randomRange(self::$one, $private->q->subtract(self::$one));
H A DDH.php247 $one = new BigInteger(1);
249 $max = $one->bitwise_leftShift($length);
250 $max = $max->subtract($one);
252 $max = $params->prime->subtract($one);
258 $key->privateKey = BigInteger::randomRange($one, $max);
/plugin/mdpage/vendor/cebe/markdown/tests/markdown-data/
H A Dlazy-list.md12 1. Item one.
14 code one
17 1. Item one.
H A Dmd1_inline_html_comments.md1 Paragraph one.
11 <!-- one comment block -- -- with two comments -->
/plugin/newpagetemplate/
H A Dnewpage.ini4 ; Eeach site requires a title and at least one entry of page id
11 page[] = playground:current:one
16 page[] = playground:persistent:one
/plugin/findologicxmlexport/vendor/symfony/yaml/Tests/Fixtures/
H A DYtsFoldedScalars.yml47 This has one newline.
51 same as "clipped" above: "This has one newline.\n"
68 'clipped' => "This has one newline.\n",
69 'same as "clipped" above' => "This has one newline.\n",
149 This has one newline.
153 same as "clipped" above: "This has one newline.\n"
170 'clipped' => "This has one newline.\n",
171 'same as "clipped" above' => "This has one newline.\n",
H A DYtsSpecificationExamples.yml1048 flow: { one: 1, two: 2 }
1049 spanning: { one: 1,
1181 not start with one.
1221 one paragraph: >
1293 and one
1338 and one
1368 flow: [ one, two ]
1369 spanning: [ one,
1372 - one
1387 one: 1
[all …]
/plugin/mdpage/vendor/cebe/markdown/tests/github-data/
H A Dgithub-code-in-numbered-list.md1 1. Item one.
5 code one
/plugin/jplayer/vendor/kriswallsmith/assetic/src/
H A Dfunctions.php114 $one = $coll->getTargetPath();
116 $many = array($one);
124 return new TraversableString($one, $many);
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Math/BigInteger/Engines/
H A DEngine.php59 protected static $one = []; variable in phpseclib3\\Math\\BigInteger\\Engines\\Engine
139 static::$one[static::class] = new static(1);
330 if (!$gcd->equals(static::$one[static::class])) {
818 if (!isset(static::$one[static::class])) {
819 static::$one[static::class] = new static(1);
952 $n_1 = $n->subtract(static::$one[static::class]);
1012 return clone static::$one[static::class];
1169 $one = new static(1);
1172 $a = clone $one;
1175 $d = clone $one;
[all …]
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Crypt/EC/Curves/
H A DEd448.php70 $u = $y2->subtract($this->one);
71 $v = $this->d->multiply($y2)->subtract($this->one);
171 return [clone $this->zero, clone $this->one, clone $this->one];
178 $p[2] = clone $this->one;

12345678910>>...50