Home
last modified time | relevance | path

Searched refs:rand (Results 1 – 25 of 132) sorted by last modified time

123456

/plugin/siteexport/inc/
H A Dmpdf.php14 define('_MPDF_TEMP_PATH', $conf['tmpdir'] . '/dwpdf/' . rand(1, 1000) . '/');
/plugin/siteexport/_test/
H A Dplugin_siteexport_javascript.test.php32 $_SERVER['SERVER_PORT'] = rand();
/plugin/siteexport/renderer/
H A Dpdf.php175 $name = rand() . $level;
/plugin/latex-was/
H A Dclass.latexrender.php221 $this->_tmp_filename = md5(rand().$destination);
/plugin/nodetailsxhtml/
H A Drenderer.php192 $name = $this->startSectionEdit($pos, array( 'target' => 'section_empty', 'name' => rand() . $level));
/plugin/mikioplugin/syntax/
H A Dquizitem.php49 $name = rand(10000, 99999);
58 $name = rand(10000, 99999);
/plugin/xlsx2dw/packages/exceljs/
H A Dexceljs.js36613 module.exports = function rand(len) {
36618 function Rand(rand) {
36619 this.rand = rand;
36630 if (this.rand.getBytes) return this.rand.getBytes(n);
36634 res[i] = this.rand.getByte();
45633 elliptic.rand = require('brorand');
47569 var rand = require('brorand');
61579 function MillerRabin(rand) {
61580 this.rand = rand || new brorand.Rand();
61585 MillerRabin.create = function create(rand) {
[all …]
/plugin/authwordpress/
H A Dclass-phpass.php55 $this->random_state = microtime() . uniqid(rand(), TRUE); // removed getmypid() for compatibility reasons
/plugin/bureaucracy/helper/
H A Dfieldyesno.php82 $id = 'bureaucracy__'.md5(rand());
/plugin/dw2pdf/
H A DDokuPDF.class.php
/plugin/combo/vendor/hidehalo/nanoid-php/src/
H A DClient.php112 $rand = mt_rand()/(mt_getrandmax() + 1);
113 $id .= $this->alphbet[$rand*64 | 0];
/plugin/randomtables/table-roller/src/Table/
H A DBaseTable.php13 return $this->keys[rand(0, $this->count - 1)];
98 $result += rand(1, $die);
/plugin/oauth/
H A DAdapter.php
/plugin/oauth/vendor/lusitanian/oauth/src/OAuth/OAuth1/Service/
H A DAbstractService.php269 $nonce.= $characters[rand(0, $maxRand)];
/plugin/statistics/inc/pchart/
H A DColor.php78 * @param mixed $rand optional externally created random value
81 public static function random($rand = null) { argument
82 if(!$rand) $rand = rand();
84 return new Color('#'.substr(md5($rand),0,6));
/plugin/farmer/3rdparty/
H A DRingIcon.php59 $this->monocolor = [$this->rand(20, 255), $this->rand(20, 255), $this->rand(20, 255)];
104 protected function rand($min, $max)
107 $rand = hexdec(substr($this->seed, 0, 8));
108 return ($rand % ($max - $min + 1)) + $min;
122 $start = $this->rand(20, 360);
123 $stop = $this->rand(20, 360);
165 $this->rand(0, 96)
170 $this->rand(
109 protected function rand($min, $max) global() function in splitbrain\\RingIcon\\RingIcon
[all...]
/plugin/const/
H A Daction.php89 $item[1] = strval(rand());
/plugin/openid/Auth/OpenID/
H A DDiffieHellman.php73 $r = $this->lib->rand($this->mod);
H A DFileStore.php569 "-" . strval(rand(1, time()));
H A DBigMath.php138 function rand($stop) function in Auth_OpenID_MathLibrary
/plugin/captcha/
H A Dimg.php18 $rand = $plugin->decrypt($_REQUEST['secret']); global() variable
H A Dwav.php24 $rand = $plugin->decrypt($_REQUEST['secret']); global() variable
H A Dhelper.php54 $rand = (float)(random_int(0, 10000)) / 10000;
55 $cookie = new FileCookie($this->fixedIdent(), $rand);
59 $code = $this->generateMath($this->fixedIdent(), $rand);
66 $code = $this->generateCaptchaCode($this->fixedIdent(), $rand);
69 $secret = $this->encrypt($rand);
131 $rand = $this->decrypt($field_sec);
134 $code = $this->generateMath($this->fixedIdent(), $rand);
139 $code = $this->generateCaptchaCode($this->fixedIdent(), $rand);
146 $rand === false ||
149 !(new FileCookie($this->fixedIdent(), $rand))
172 getCaptchaCookiePath($fixed, $rand) global() argument
210 storeCaptchaCookie($fixed, $rand) global() argument
223 retrieveCaptchaCookie($fixed, $rand) global() argument
311 _generateNumbers($fixed, $rand) global() argument
325 _generateCAPTCHA($fixed, $rand) global() argument
347 _generateMATH($fixed, $rand) global() argument
[all...]
/plugin/captcha/_test/
H A DHelperTest.php
/plugin/tagfilter/syntax/
H A Dfilter.php398 $jsVar = 'tagfilter_jsVar_' . rand();
403 $id = '__tagfilter_' . $opt["id"] . '_' . rand();

123456