/plugin/dw2pdf/vendor/mpdf/mpdf/src/Barcode/ |
H A D | S25.php | 15 * @param bool $checksum 17 public function __construct($code, $checksum = false, $quiet_zone_left = null, $quiet_zone_right = null) argument 19 $this->init($code, $checksum); 30 * @param bool $checksum 32 private function init($code, $checksum) argument 49 if ($checksum) { 50 // add checksum 51 $checkdigit = $this->checksum($code); 85 private function checksum($code) function in Mpdf\\Barcode\\S25
|
H A D | I25.php | 17 * @param bool $checksum 19 public function __construct($code, $topBottomMargin, $printRatio, $checksum = false, $quiet_zone_left = null, $quiet_zone_right = null) argument 21 $this->init($code, $printRatio, $checksum); 33 * @param bool $checksum 35 private function init($code, $printRatio, $checksum) argument 53 if ($checksum) { 54 // add checksum 55 $checkdigit = $this->checksum($code); 111 private function checksum($code) function in Mpdf\\Barcode\\I25
|
H A D | Msi.php | 14 * @param bool $checksum 16 public function __construct($code, $checksum = false, $quiet_zone_left = null, $quiet_zone_right = null) argument 18 $this->init($code, $checksum); 29 * @param bool $checksum 31 private function init($code, $checksum) argument 54 if ($checksum) { 55 // add checksum
|
H A D | Code39.php | 15 * @param bool $checksum 17 public function __construct($code, $printRatio, $extended = false, $checksum = false, $quiet_zone_left = null, $quiet_zone_right = null) argument 19 $this->init($code, $printRatio, $extended, $checksum); 32 * @param bool $checksum 36 private function init($code, $printRatio, $extended, $checksum) argument 97 if ($checksum) { 98 // checksum 99 $checkdigit = $this->checksum($code); 200 * Calculate CODE 39 checksum (modulo 43). 205 protected function checksum( function in Mpdf\\Barcode\\Code39 [all...] |
H A D | Code93.php | 128 // checksum 129 $code_ext .= $this->checksum($code_ext); 163 * Calculate CODE 93 checksum (modulo 47). 168 protected function checksum($code) function in Mpdf\\Barcode\\Code93 210 $checksum = $c . $k; 213 $checksum = strtr($checksum, '<=>?', chr(128) . chr(131) . chr(129) . chr(130)); 215 return $checksum;
|
/plugin/authgooglesheets/vendor/google/apiclient-services/src/OnDemandScanning/ |
H A D | Artifact.php | 26 public $checksum; variable in Google\\Service\\OnDemandScanning\\Artifact 39 public function setChecksum($checksum) argument 41 $this->checksum = $checksum; 48 return $this->checksum;
|
/plugin/authgooglesheets/vendor/google/apiclient-services/src/ContainerAnalysis/ |
H A D | FileNote.php | 23 public $checksum; variable in Google\\Service\\ContainerAnalysis\\FileNote 27 public function setChecksum($checksum) argument 29 $this->checksum = $checksum; 33 return $this->checksum;
|
H A D | Artifact.php | 26 public $checksum; variable in Google\\Service\\ContainerAnalysis\\Artifact 39 public function setChecksum($checksum) argument 41 $this->checksum = $checksum; 48 return $this->checksum;
|
/plugin/gtime/gtlib/util/ |
H A D | GTUtil.php | 567 $checksum = crc32(GTUtil::fromByteArray($bytes)); 568 $checksum = sprintf("%u", $checksum); // make unsigned, needed for 32 bit PHP 569 $checksum = new GTBigInteger($checksum); 570 $checksum = $checksum->toBytes(); 573 while (count($checksum) > 4) { 574 array_shift($checksum); 577 foreach ($checksum as $byte) {
|
/plugin/authgooglesheets/vendor/google/apiclient-services/src/WebRisk/ |
H A D | GoogleCloudWebriskV1ComputeThreatListDiffResponse.php | 58 public function setChecksum(GoogleCloudWebriskV1ComputeThreatListDiffResponseChecksum $checksum) argument 60 $this->checksum = $checksum; 67 return $this->checksum;
|
/plugin/zip/pear/File/Archive/Writer/ |
H A D | Tar.php | 105 $checksum = 8*ord(" "); 107 $checksum += ord($blockbeg{$i}); 110 $checksum += ord($blockend{$i}); 113 $checksum = pack("a8",sprintf("%6s ",decoct($checksum))); 115 return $blockbeg . $checksum . $blockend;
|
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Safebrowsing/ |
H A D | GoogleSecuritySafebrowsingV4FetchThreatListUpdatesResponseListUpdateResponse.php | 67 public function setChecksum(GoogleSecuritySafebrowsingV4Checksum $checksum) argument 69 $this->checksum = $checksum; 76 return $this->checksum;
|
/plugin/scrape/HTMLPurifier/ConfigSchema/schema/ |
H A D | URI.MungeSecretKey.txt |
|
/plugin/jplayer/vendor/james-heinrich/getid3/getid3/ |
H A D | module.archive.tar.php | 48 $checksum = 0; 50 $checksum += ord($buffer[$i]); 53 $checksum += ord(' '); 56 $checksum += ord($buffer[$i]); 75 if (($checksum == 256) && ($chksum == 0)) {
|
/plugin/diagramsnet/lib/js/diagramly/ |
H A D | DrawioFileSync.js | 788 var checksum = null; 810 checksum = value.d.checksum; 954 var checksum = null; 979 checksum = value.d.checksum; 1106 'checksum', checksum == current, checksum); 1110 if (checksum != null && checksum != current) 1181 '\nChecksum: ' + checksum + 1313 var checksum = this.ui.getHashValueForPages(pages); 1317 var data = this.objectToString(this.createMessage({patch: diff, checksum: checksum})); 1378 var checksum = this.ui.getHashValueForPages(pages); [all …]
|
H A D | DrawioFile.js | 314 var checksum = this.ui.getHashValueForPages(patched, patchedDetails); 323 'checksum', current == checksum, checksum); 326 if (checksum != null && checksum != current) 335 '\nChecksum: ' + checksum +
|
/plugin/jcapture/src/com/hammurapi/jcapture/ |
H A D | MappedImage.java | 31 private long checksum; field in MappedImage 62 checksum = adler.getValue(); in MappedImage() 91 if (checksum != adler.getValue()) { in getImageBytes()
|
/plugin/zip/pear/File/Archive/Reader/ |
H A D | Tar.php | 196 $checksum = 8*ord(" "); 198 $checksum += ord($rawHeader{$i}); 201 $checksum += ord($rawHeader{$i}); 204 if (octdec($header['checksum']) != $checksum) {
|
/plugin/barcodes/vendor/jucksearm/php-barcode/lib/ |
H A D | Barcode1D.php | 74 * @param $type (string) type of barcode: <ul><li>C39 : CODE 39 - ANSI MH10.8M-1983 - USD-3 - 3 of 9.</li><li>C39+ : CODE 39 with checksum</li><li>C39E : CODE 39 EXTENDED</li><li>C39E+ : CODE 39 EXTENDED + CHECKSUM</li><li>C93 : CODE 93 - USS-93</li><li>S25 : Standard 2 of 5</li><li>S25+ : Standard 2 of 5 + CHECKSUM</li><li>I25 : Interleaved 2 of 5</li><li>I25+ : Interleaved 2 of 5 + CHECKSUM</li><li>C128 : CODE 128</li><li>C128A : CODE 128 A</li><li>C128B : CODE 128 B</li><li>C128C : CODE 128 C</li><li>EAN2 : 2-Digits UPC-Based Extension</li><li>EAN5 : 5-Digits UPC-Based Extension</li><li>EAN8 : EAN 8</li><li>EAN13 : EAN 13</li><li>UPCA : UPC-A</li><li>UPCE : UPC-E</li><li>MSI : MSI (Variation of Plessey code)</li><li>MSI+ : MSI + CHECKSUM (modulo 11)</li><li>POSTNET : POSTNET</li><li>PLANET : PLANET</li><li>RMS4CC : RMS4CC (Royal Mail 4-state Customer Code) - CBC (Customer Bar Code)</li><li>KIX : KIX (Klant index - Customer index)</li><li>IMB: Intelligent Mail Barcode - Onecode - USPS-B-3200</li><li>CODABAR : CODABAR</li><li>CODE11 : CODE 11</li><li>PHARMA : PHARMACODE</li><li>PHARMA2T : PHARMACODE TWO-TRACKS</li></ul> 93 * @param $type (string) type of barcode: <ul><li>C39 : CODE 39 - ANSI MH10.8M-1983 - USD-3 - 3 of 9.</li><li>C39+ : CODE 39 with checksum</li><li>C39E : CODE 39 EXTENDED</li><li>C39E+ : CODE 39 EXTENDED + CHECKSUM</li><li>C93 : CODE 93 - USS-93</li><li>S25 : Standard 2 of 5</li><li>S25+ : Standard 2 of 5 + CHECKSUM</li><li>I25 : Interleaved 2 of 5</li><li>I25+ : Interleaved 2 of 5 + CHECKSUM</li><li>C128 : CODE 128</li><li>C128A : CODE 128 A</li><li>C128B : CODE 128 B</li><li>C128C : CODE 128 C</li><li>EAN2 : 2-Digits UPC-Based Extension</li><li>EAN5 : 5-Digits UPC-Based Extension</li><li>EAN8 : EAN 8</li><li>EAN13 : EAN 13</li><li>UPCA : UPC-A</li><li>UPCE : UPC-E</li><li>MSI : MSI (Variation of Plessey code)</li><li>MSI+ : MSI + CHECKSUM (modulo 11)</li><li>POSTNET : POSTNET</li><li>PLANET : PLANET</li><li>RMS4CC : RMS4CC (Royal Mail 4-state Customer Code) - CBC (Customer Bar Code)</li><li>KIX : KIX (Klant index - Customer index)</li><li>IMB: Intelligent Mail Barcode - Onecode - USPS-B-3200</li><li>IMBPRE: Pre-processed Intelligent Mail Barcode - Onecode - USPS-B-3200, using only F,A,D,T letters</li><li>CODABAR : CODABAR</li><li>CODE11 : CODE 11</li><li>PHARMA : PHARMACODE</li><li>PHARMA2T : PHARMACODE TWO-TRACKS</li></ul> 103 case 'C39+': { // CODE 39 with checksum 237 * @param $checksum (boolean) if true add a checksum to the code. 241 protected function barcode_code39($code, $extended=false, $checksum=false) { argument 294 if ($checksum) { 295 // checksum 380 * Calculate CODE 39 checksum (modulo 43). 382 * @return char checksum 611 barcode_msi($code, $checksum = false) global() argument 670 barcode_s25($code, $checksum = false) global() argument 742 barcode_i25($code, $checksum = false) global() argument [all...] |
/plugin/latex/ |
H A D | TODO | 13 breaks the idea of having images tagged by checksum (it would depend in which
|
/plugin/latex-was/ |
H A D | TODO | 13 breaks the idea of having images tagged by checksum (it would depend in which
|
/plugin/dw2pdf/vendor/mpdf/mpdf/src/ |
H A D | TTFontFile.php | 309 $record['checksum'] = [$this->read_ushort(), $this->read_ushort()]; 326 $checksum = $this->calcChecksum($table); 331 $checksum = $this->sub32($checksum, $adjustment); 333 $xchecksum = $t['checksum']; 334 if ($xchecksum != $checksum) { 335 throw new \Mpdf\Exception\FontException(sprintf('TTF file "%s": invalid checksum %s table: %s (expected %s)', $this->filename, dechex($checksum[0]) . dechex($checksum[1]), $t['tag'], dechex($xchecksum[0]) . dechex($xchecksum[1]))); 4740 $checksum [all...] |
H A D | OtlDump.php | 237 $record['checksum'] = [$this->read_ushort(), $this->read_ushort()]; 253 $checksum = $this->calcChecksum($table); 258 $checksum = $this->sub32($checksum, $adjustment); 260 $xchecksum = $t['checksum']; 261 if ($xchecksum != $checksum) { 262 throw new \Mpdf\Exception\FontException(sprintf('TTF file "%s": invalid checksum %s table: %s (expected %s)', $this->filename, dechex($checksum[0]) . dechex($checksum[1]), $t['tag'], dechex($xchecksum[0]) . dechex($xchecksum[1])));
|
/plugin/findologicxmlexport/vendor/twig/twig/test/Twig/Tests/Loader/Fixtures/phar/ |
H A D | phar-sample.phar | 266 die("Invalid internal .phar file (checksum error)");
|
/plugin/diagramsnet/lib/resources/ |
H A D | dia_i18n.txt | 119 checksum=checksum
|