Home
last modified time | relevance | path

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

/php-src/ext/standard/
H A Dstring.c2833 unsigned char xlat[256]; local
2835 memset(xlat, 0, sizeof(xlat));
2838 xlat[(size_t)(unsigned char) str_from[i]] = str_to[i] - str_from[i];
2842 str[i] += xlat[(size_t)(unsigned char) str[i]];
2918 unsigned char xlat[256]; local
2920 memset(xlat, 0, sizeof(xlat));;
2923 xlat[(size_t)(unsigned char) str_from[i]] = str_to[i] - str_from[i];
2927 if (xlat[(size_t)(unsigned char) ZSTR_VAL(str)[i]]) {
2931 ZSTR_VAL(new_str)[i] = ZSTR_VAL(str)[i] + xlat[(size_t)(unsigned char) ZSTR_VAL(str)[i]];
/php-src/ext/opcache/
H A Dzend_persist.c284 HashTable *xlat = zend_shared_alloc_get_xlat_entry(attributes); in zend_persist_attributes() local
285 if (xlat) { in zend_persist_attributes()
286 return xlat; in zend_persist_attributes()
/php-src/ext/opcache/jit/ir/
H A Dir_ra.c2025 uint32_t *xlat = ir_mem_malloc((ctx->vregs_count + 1) * sizeof(uint32_t)); in ir_coalesce() local
2029 xlat[i] = n; in ir_coalesce()
2049 ctx->vregs[j] = xlat[ctx->vregs[j]]; in ir_coalesce()
2054 ir_mem_free(xlat); in ir_coalesce()

Completed in 36 milliseconds