Home
last modified time | relevance | path

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

/PHP-7.2/ext/standard/
H A Dstring.c2900 unsigned char xlat[256], j = 0; local
2902 do { xlat[j] = j; } while (++j != 0);
2905 xlat[(size_t)(unsigned char) str_from[i]] = str_to[i];
2909 str[i] = xlat[(size_t)(unsigned char) str[i]];
2942 unsigned char xlat[256], j = 0; local
2944 do { xlat[j] = j; } while (++j != 0);
2947 xlat[(size_t)(unsigned char) str_from[i]] = str_to[i];
2951 if (ZSTR_VAL(str)[i] != xlat[(size_t)(unsigned char) ZSTR_VAL(str)[i]]) {
2954 ZSTR_VAL(new_str)[i] = xlat[(size_t)(unsigned char) ZSTR_VAL(str)[i]];
2960 ZSTR_VAL(new_str)[i] = xlat[(size_t)(unsigned char) ZSTR_VAL(str)[i]];

Completed in 17 milliseconds