Home
last modified time | relevance | path

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

/PHP-7.4/ext/standard/
H A Dstring.c2928 unsigned char xlat[256], j = 0; local
2930 do { xlat[j] = j; } while (++j != 0);
2933 xlat[(size_t)(unsigned char) str_from[i]] = str_to[i];
2937 str[i] = xlat[(size_t)(unsigned char) str[i]];
2970 unsigned char xlat[256], j = 0; local
2972 do { xlat[j] = j; } while (++j != 0);
2975 xlat[(size_t)(unsigned char) str_from[i]] = str_to[i];
2979 if (ZSTR_VAL(str)[i] != xlat[(size_t)(unsigned char) ZSTR_VAL(str)[i]]) {
2982 ZSTR_VAL(new_str)[i] = xlat[(size_t)(unsigned char) ZSTR_VAL(str)[i]];
2988 ZSTR_VAL(new_str)[i] = xlat[(size_t)(unsigned char) ZSTR_VAL(str)[i]];

Completed in 16 milliseconds