Lines Matching defs:val32
154 uint32_t val32 = read_4ubyte_unaligned_noncvt (desc + item->offset);
155 val32 = (elf_getident (core, NULL)[EI_DATA] == ELFDATA2MSB
156 ? be32toh (val32) : le32toh (val32));
157 pid_t tid = (int32_t) val32;
158 eu_static_assert (sizeof val32 <= sizeof tid);
208 uint32_t val32 = read_4ubyte_unaligned_noncvt (desc + item->offset);
209 val32 = (elf_getident (core, NULL)[EI_DATA] == ELFDATA2MSB
210 ? be32toh (val32) : le32toh (val32));
211 tid = (int32_t) val32;
212 eu_static_assert (sizeof val32 <= sizeof tid);
225 uint32_t val32 = read_4ubyte_unaligned_noncvt (desc + item->offset);
226 val32 = (elf_getident (core, NULL)[EI_DATA] == ELFDATA2MSB
227 ? be32toh (val32) : le32toh (val32));
229 pc = val32;
266 uint32_t val32 = read_4ubyte_unaligned_noncvt (reg_desc);
267 reg_desc += sizeof val32;
268 val32 = (elf_getident (core, NULL)[EI_DATA] == ELFDATA2MSB
269 ? be32toh (val32) : le32toh (val32));
271 val = val32;
402 uint32_t val32 = read_4ubyte_unaligned_noncvt (desc + item->offset);
403 val32 = (elf_getident (core, NULL)[EI_DATA] == ELFDATA2MSB
404 ? be32toh (val32) : le32toh (val32));
405 pid = (int32_t) val32;
406 eu_static_assert (sizeof val32 <= sizeof pid);