Home
last modified time | relevance | path

Searched refs:dec (Results 1 – 3 of 3) sorted by relevance

/dokuwiki/vendor/openpsa/universalfeedcreator/lib/Creator/
H A DMBOXCreator.php41 $dec = ord($c);
42 if (($dec == 32) && ($i == ($linlen - 1))) { // convert space at eol only
44 } elseif (($dec == 61) || ($dec < 32) || ($dec > 126)) { // always encode "\t", which is *not* required
45 $h2 = floor($dec / 16);
46 $h1 = floor($dec % 16);
/dokuwiki/inc/
H A Ddeprecated.php195 public function dec($str) {
193 public function dec($str) { global() function in JSON
H A Dcommon.php1426 * @param int $dec A number of decimal places
1433 function filesize_h($size, $dec = 1)
1444 return round($size, $dec) . "\xC2\xA0" . $sizes[$i]; //non-breaking space
1418 filesize_h($size, $dec = 1) global() argument