Searched refs:append3bytes (Results 1 – 2 of 2) sorted by relevance
/plugin/plantumlparser/syntax/ |
H A D | PlantUmlDiagram.php | 70 private function append3bytes($b1, $b2, $b3) { 88 $str .= $this->append3bytes(ord(substr($c, $i, 1)), ord(substr($c, $i+1, 1)), 0); 90 $str .= $this->append3bytes(ord(substr($c, $i, 1)), 0, 0); 92 $str .= $this->append3bytes(ord(substr($c, $i, 1)), ord(substr($c, $i+1, 1)), 67 private function append3bytes($b1, $b2, $b3) { global() function in PlantUmlDiagram
|
/plugin/diagramsnet/lib/js/diagramly/ |
H A D | EditorUi.js | 7631 r += append3bytes(data.charCodeAt(i), data.charCodeAt(i + 1), 0); 7635 r += append3bytes(data.charCodeAt(i), 0, 0); 7639 r += append3bytes(data.charCodeAt(i), data.charCodeAt(i + 1), 7647 function append3bytes(b1, b2, b3) function
|