Home
last modified time | relevance | path

Searched refs:octets (Results 1 – 7 of 7) sorted by relevance

/plugin/dokucrypt/
H A Dscript.js789 function packBytes(octets) { argument
791 if (!octets || octets.length % 4) { return; }
795 for (var j=0; j<octets.length; j+= 4) {
796 state[0][j/4] = octets[j];
797 state[1][j/4] = octets[j+1];
798 state[2][j/4] = octets[j+2];
799 state[3][j/4] = octets[j+3];
/plugin/dokucrypt2/
H A Dscript.js861 function packBytes(octets) { argument
863 if (!octets || octets.length % 4) { return; }
867 for (var j=0; j<octets.length; j+= 4) {
868 state[0][j/4] = octets[j];
869 state[1][j/4] = octets[j+1];
870 state[2][j/4] = octets[j+2];
871 state[3][j/4] = octets[j+3];
/plugin/pdfjs/pdfjs/web/locale/oc/
H A Dviewer.properties81 document_properties_kb={{size_kb}} Ko ({{size_b}} octets)
84 document_properties_mb={{size_mb}} Mo ({{size_b}} octets)
/plugin/pdfjs/pdfjs/web/locale/fr/
H A Dviewer.properties89 document_properties_kb={{size_kb}} Ko ({{size_b}} octets)
92 document_properties_mb={{size_mb}} Mo ({{size_b}} octets)
/plugin/authgooglesheets/vendor/guzzlehttp/psr7/
H A DREADME.md752 …Decodes percent-encoded octets of unreserved characters. For consistency, percent-encoded octets i…
/plugin/codemirror/dist/modes/
H A Dsql.min.js.map1 …llable nullif nulls number numeric object occurrences_regex octet_length octets of off offset oids…
/plugin/xlsx2dw/packages/exceljs/
H A Dexceljs.js48025 var octets = 1 + (Math.log(len) / Math.LN2 >>> 3);
48026 arr.push(octets | 0x80);
48028 while (--octets) {
48029 arr.push(len >>> (octets << 3) & 0xff);