Searched refs:ofs (Results 1 – 10 of 10) sorted by relevance
/PHP-8.3/ext/opcache/jit/dynasm/ |
H A D | dasm_x86.h | 159 D->sections[i].ofs = 0; in dasm_setup() 183 int pos = sec->pos, ofs = sec->ofs, mrm = -1; in dasm_put() local 200 ofs++; in dasm_put() 219 if (*p < 0x20 && (n&7) == 4) ofs++; in dasm_put() 255 ofs += 4; in dasm_put() 282 sec->ofs = ofs; in dasm_put() 291 int ofs = 0; in dasm_link() local 336 lofs += D->sections[i].ofs; in dasm_link() 356 case DASM_ALIGN: ofs -= (b[pos++]+ofs)&*p++; break; /* Adjust ofs. */ in dasm_link() 366 ofs += sec->ofs; /* Next section starts right after current section. */ in dasm_link() [all …]
|
H A D | dasm_mips.h | 61 int ofs; /* Byte offset into section. */ member 150 D->sections[i].ofs = 0; in dasm_setup() 174 int pos = sec->pos, ofs = sec->ofs; in dasm_put() local 192 ofs += 4; in dasm_put() 200 case DASM_ESC: p++; ofs += 4; break; in dasm_put() 202 case DASM_ALIGN: ofs += (ins & 255); b[pos++] = ofs; break; in dasm_put() 253 sec->ofs = ofs; in dasm_put() 262 int ofs = 0; in dasm_link() local 299 case DASM_ALIGN: ofs -= (b[pos++] + ofs) & (ins & 255); break; in dasm_link() 307 ofs += sec->ofs; /* Next section starts right after current section. */ in dasm_link() [all …]
|
H A D | dasm_ppc.h | 61 int ofs; /* Byte offset into section. */ member 150 D->sections[i].ofs = 0; in dasm_setup() 174 int pos = sec->pos, ofs = sec->ofs; in dasm_put() local 192 ofs += 4; in dasm_put() 200 case DASM_ESC: p++; ofs += 4; break; in dasm_put() 202 case DASM_ALIGN: ofs += (ins & 255); b[pos++] = ofs; break; in dasm_put() 257 sec->ofs = ofs; in dasm_put() 266 int ofs = 0; in dasm_link() local 303 case DASM_ALIGN: ofs -= (b[pos++] + ofs) & (ins & 255); break; in dasm_link() 311 ofs += sec->ofs; /* Next section starts right after current section. */ in dasm_link() [all …]
|
H A D | dasm_arm64.h | 153 D->sections[i].ofs = 0; in dasm_setup() 225 int pos = sec->pos, ofs = sec->ofs; in dasm_put() local 243 ofs += 4; in dasm_put() 253 case DASM_ALIGN: ofs += (ins & 255); b[pos++] = ofs; break; in dasm_put() 273 if ((ins & 0x8000)) ofs += 8; in dasm_put() 330 ofs += 4; in dasm_put() 343 sec->ofs = ofs; in dasm_put() 352 int ofs = 0; in dasm_link() local 389 case DASM_ALIGN: ofs -= (b[pos++] + ofs) & (ins & 255); break; in dasm_link() 399 ofs += sec->ofs; /* Next section starts right after current section. */ in dasm_link() [all …]
|
H A D | dasm_arm.h | 62 int ofs; /* Byte offset into section. */ member 151 D->sections[i].ofs = 0; in dasm_setup() 183 int pos = sec->pos, ofs = sec->ofs; in dasm_put() local 201 ofs += 4; in dasm_put() 209 case DASM_ESC: p++; ofs += 4; break; in dasm_put() 211 case DASM_ALIGN: ofs += (ins & 255); b[pos++] = ofs; break; in dasm_put() 274 sec->ofs = ofs; in dasm_put() 283 int ofs = 0; in dasm_link() local 320 case DASM_ALIGN: ofs -= (b[pos++] + ofs) & (ins & 255); break; in dasm_link() 329 ofs += sec->ofs; /* Next section starts right after current section. */ in dasm_link() [all …]
|
/PHP-8.3/ext/opcache/jit/ |
H A D | zend_jit_gdb.c | 201 uint32_t ofs = (uint32_t)(p - ctx->startp); in zend_gdbjit_strz() local 206 return ofs; in zend_gdbjit_strz() 244 sect->ofs = 0; in zend_gdbjit_secthdr() 254 sect->ofs = offsetof(zend_gdbjit_obj, sym); in zend_gdbjit_secthdr() 457 ctx->obj.sect[sect].ofs = (uintptr_t)((char *)ctx->p - (char *)&ctx->obj); in zend_gdbjit_initsect()
|
H A D | zend_elf.h | 57 uintptr_t ofs; member
|
H A D | zend_elf.c | 37 if (lseek(fd, sect->ofs, SEEK_SET) < 0) { in zend_elf_read_sect()
|
/PHP-8.3/ext/fileinfo/libmagic/ |
H A D | cdf.c | 882 size_t ofs; in cdf_get_property_info_pos() local 893 ofs = CDF_GETUINT32(p, tail); in cdf_get_property_info_pos() 894 if (ofs < 2 * sizeof(uint32_t)) { in cdf_get_property_info_pos() 895 DPRINTF(("Offset too small %zu\n", ofs)); in cdf_get_property_info_pos() 899 ofs -= 2 * sizeof(uint32_t); in cdf_get_property_info_pos() 900 if (ofs > CAST(size_t, e - p)) { in cdf_get_property_info_pos() 901 DPRINTF(("Offset too big %zu %td\n", ofs, e - p)); in cdf_get_property_info_pos() 905 return CAST(const uint8_t *, cdf_offset(CAST(const void *, p), ofs)); in cdf_get_property_info_pos()
|
/PHP-8.3/ext/mysqlnd/ |
H A D | mysqlnd.h | 148 #define mysqlnd_field_seek(result, ofs) (result)->m.seek_field((result), (ofs)) argument
|
Completed in 34 milliseconds