Home
last modified time | relevance | path

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

/php-src/ext/standard/
H A Dstring.c2801 unsigned char xlat[256]; local
2803 memset(xlat, 0, sizeof(xlat));
2806 xlat[(size_t)(unsigned char) str_from[i]] = str_to[i] - str_from[i];
2810 str[i] += xlat[(size_t)(unsigned char) str[i]];
2886 unsigned char xlat[256]; local
2888 memset(xlat, 0, sizeof(xlat));;
2891 xlat[(size_t)(unsigned char) str_from[i]] = str_to[i] - str_from[i];
2895 if (xlat[(size_t)(unsigned char) ZSTR_VAL(str)[i]]) {
2899 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.c286 HashTable *xlat = zend_shared_alloc_get_xlat_entry(attributes); in zend_persist_attributes() local
287 if (xlat) { in zend_persist_attributes()
288 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 35 milliseconds