Home
last modified time | relevance | path

Searched refs:digit (Results 1 – 25 of 65) sorted by relevance

123

/plugin/dw2pdf/vendor/mpdf/mpdf/src/Conversion/
DDecToRoman.php67 $digit = $remainder / (10 ** $i);
70 $romanNumber = $this->formatDigit($digit, $i) . $romanNumber;
84 private function formatDigit($digit, $orderOfMagnitude) argument
86 if ($digit === 0) {
90 if ($digit === 4 || $digit === 9) {
91 return $this->formatFourOrNine($digit, $orderOfMagnitude);
96 if ($digit >= 5) {
97 $digit -= 5;
101 $romanNumber .= $this->formatOneToThree($orderOfMagnitude, $digit);
106 private function formatFourOrNine($digit, $orderOfMagnitude) argument
[all …]
/plugin/asciidocjs/node_modules/source-map/lib/
Dbase64-vlq.js94 var digit;
99 digit = vlq & VLQ_BASE_MASK;
104 digit |= VLQ_CONTINUATION_BIT;
106 encoded += base64.encode(digit);
120 var continuation, digit;
127 digit = base64.decode(aStr.charCodeAt(aIndex++));
128 if (digit === -1) {
132 continuation = !!(digit & VLQ_CONTINUATION_BIT);
133 digit &= VLQ_BASE_MASK;
134 result = result + (digit << shift);
/plugin/asciidocjs/node_modules/pug-filters/node_modules/source-map/lib/
Dbase64-vlq.js94 var digit;
99 digit = vlq & VLQ_BASE_MASK;
104 digit |= VLQ_CONTINUATION_BIT;
106 encoded += base64.encode(digit);
120 var continuation, digit;
127 digit = base64.decode(aStr.charCodeAt(aIndex++));
128 if (digit === -1) {
132 continuation = !!(digit & VLQ_CONTINUATION_BIT);
133 digit &= VLQ_BASE_MASK;
134 result = result + (digit << shift);
/plugin/combo/ComboStrap/
H A DUnit.php30 $digit = (double)$m[1];
46 $digit = $digit * (float)$conversions[$unit];
49 return $digit;
/plugin/dw2pdf/vendor/mpdf/mpdf/src/Barcode/
DCode11.php59 $digit = $code[$i];
60 if ($digit == '-') {
63 $dval = (int) $digit;
86 $digit = $code[$i];
87 if ($digit == '-') {
90 $dval = (int) $digit;
DMsi.php76 $digit = $code[$i];
77 if (!isset($chr[$digit])) {
79 …rcode\BarcodeException(sprintf('Invalid character "%s" in MSI barcode value "%s"', $digit, $code));
81 $seq .= $chr[$digit];
DS25.php63 $digit = $code[$i];
64 if (!isset($chr[$digit])) {
66 …rcode\BarcodeException(sprintf('Invalid character "%s" in S25 barcode value "%s"', $digit, $code));
68 $seq .= $chr[$digit];
/plugin/codemirror/dist/modes/
Dcobol.min.js1digit:/\d/,digit_or_colon:/[\d:]/,hex:/[0-9a-f]/i,sign:/[+-]/,exponent:/e/i,keyword_char:/[^\s\(\[… property
Dcobol.min.js.map1digit","digit_or_colon","hex","sign","exponent","keyword_char","symbol","isNumber","ch","stream","…
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Math/BigInteger/Engines/
DPHP64.php81 list(, $digit) = unpack('N', substr($val, $i, 4));
84 $digit &= static::MAX_DIGIT;
88 $digit >>= $shift;
90 $digit &= (1 << $shift) - 1;
92 $digit |= ($temp << $shift) & 0x7F000000;
94 $vals[] = $digit;
DPHP.php1187 $digit = (int) floor($x / static::BASE);
1190 if (!isset($this->value[$digit])) {
1194 return (bool)($this->value[$digit] & (1 << $bit));
1239 return array_map(function ($digit) {
1241 $temp->value = $digit != 0 ? [$digit] : [];
1252 $digit = [];
1254 $digit = array_slice($val, $i, $width);
1260 $digit[] = $temp & $mask;
1266 $digit = array_slice($val, $i, $tempwidth);
1272 $digit[] = $temp & $tempmask;
[all …]
DPHP32.php81 list(, $digit) = unpack('N', substr($val, $i, 4));
84 $digit >>= 2 * $step;
87 $digit &= static::MAX_DIGIT;
90 $vals[] = $digit;
/plugin/svgpureinsert/
Dhelper.php75 $digit = (double) $m[1];
91 $digit = $digit * (float) $conversions[$unit];
94 return ceil($digit);
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Common/Functions/
DStrings.php330 foreach ($digits as $digit) {
331 $bits .= sprintf('%032b', $digit);
335 foreach ($digits as $digit) {
336 $bits .= sprintf('%064b', $digit);
/plugin/barcodes/vendor/jucksearm/php-barcode/lib/
DBarcode1D.php649 $digit = $code[$i];
650 if (!isset($chr[$digit])) {
654 $seq .= $chr[$digit];
692 $digit = $code[$i];
693 if (!isset($chr[$digit])) {
697 $seq .= $chr[$digit];
1747 $digit = $code[$i];
1748 if ($digit == '-') {
1751 $dval = intval($digit);
1769 $digit = $code[$i];
[all …]
/plugin/authgooglesheets/vendor/symfony/polyfill-intl-idn/
DIdn.php605 $digit = self::$basicToDigit[$bytes[$in++] & 0xFF];
607 if ($digit < 0) {
611 if ($digit > intdiv(self::MAX_INT - $i, $w)) {
615 $i += $digit * $w;
625 if ($digit < $t) {
/plugin/scrape/vendor/ezyang/htmlpurifier/library/HTMLPurifier/ConfigSchema/schema/
DHTML.Attr.Name.UseCDATA.txt9 illegal IDs (for example, names that begin with a digit.) Set this configuration
DCore.ColorKeywords.txt157 Lookup array of color names to six digit hexadecimal number corresponding
/plugin/dirtylittlehelper/mermaid/editor/docs/
D42.42.js.map1digit: /[0-9]/,\n digitseq0: /@digit*/,\n xdigit: /[0-9A-Za-z]/,\n xdigitseq0: /@xdigit*/…
/plugin/asciidocjs/node_modules/pug-filters/node_modules/source-map/dist/
Dsource-map.debug.js586 var digit;
591 digit = vlq & VLQ_BASE_MASK; property
596 digit |= VLQ_CONTINUATION_BIT; field
598 encoded += base64.encode(digit);
612 var continuation, digit;
619 digit = base64.decode(aStr.charCodeAt(aIndex++));
620 if (digit === -1) {
624 continuation = !!(digit & VLQ_CONTINUATION_BIT);
625 digit &= VLQ_BASE_MASK;
626 result = result + (digit << shift);
Dsource-map.js586 var digit;
591 digit = vlq & VLQ_BASE_MASK; property
596 digit |= VLQ_CONTINUATION_BIT; field
598 encoded += base64.encode(digit);
612 var continuation, digit;
619 digit = base64.decode(aStr.charCodeAt(aIndex++));
620 if (digit === -1) {
624 continuation = !!(digit & VLQ_CONTINUATION_BIT);
625 digit &= VLQ_BASE_MASK;
626 result = result + (digit << shift);
/plugin/asciidocjs/node_modules/source-map/dist/
Dsource-map.debug.js595 var digit;
600 digit = vlq & VLQ_BASE_MASK; property
605 digit |= VLQ_CONTINUATION_BIT; field
607 encoded += base64.encode(digit);
621 var continuation, digit;
628 digit = base64.decode(aStr.charCodeAt(aIndex++));
629 if (digit === -1) {
633 continuation = !!(digit & VLQ_CONTINUATION_BIT);
634 digit &= VLQ_BASE_MASK;
635 result = result + (digit << shift);
Dsource-map.js595 var digit;
600 digit = vlq & VLQ_BASE_MASK; property
605 digit |= VLQ_CONTINUATION_BIT; field
607 encoded += base64.encode(digit);
621 var continuation, digit;
628 digit = base64.decode(aStr.charCodeAt(aIndex++));
629 if (digit === -1) {
633 continuation = !!(digit & VLQ_CONTINUATION_BIT);
634 digit &= VLQ_BASE_MASK;
635 result = result + (digit << shift);
/plugin/asciidocjs/node_modules/esutils/
DREADME.md61 Return true if provided code is decimal digit.
65 Return true if provided code is hexadecimal digit.
69 Return true if provided code is octal digit.
/plugin/asciidocjs/node_modules/pug-filters/node_modules/uglify-js/lib/
Dparse.js125digit: new RegExp("[\\u0030-\\u0039\\u0660-\\u0669\\u06F0-\\u06F9\\u07C0-\\u07C9\\u0966-\\u096F\\u… property
146 return UNICODE.digit.test(String.fromCharCode(code));
408 var digit = parseInt(next(true), 16);
409 if (isNaN(digit))
411 num = (num << 4) | digit;

123