Home
last modified time | relevance | path

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

/openbmc/openbmc/poky/meta/recipes-core/glibc/ldconfig-native-2.12.1/
H A Dendian-ness_handling.patch423 - file_entries->libs[idx_old].key = str_offset + pad;
424 + file_entries->libs[idx_old].key = write32(str_offset + pad, be);
435 - file_entries_new->libs[idx_new].key = str_offset;
439 + file_entries_new->libs[idx_new].key = write32(str_offset, be);
444 str_offset += len;
447 - file_entries->libs[idx_old].value = str_offset + pad;
448 + file_entries->libs[idx_old].value = write32(str_offset + pad, be);
450 - file_entries_new->libs[idx_new].value = str_offset;
451 + file_entries_new->libs[idx_new].value = write32(str_offset, be);
454 str_offset += len;
/openbmc/qemu/target/xtensa/
H A Dxtensa-semi.c382 int str_offset = (argc + 1) * sizeof(uint32_t); in HELPER() local
390 argptr = tswap32(regs[3] + str_offset); in HELPER()
396 regs[3] + str_offset, in HELPER()
398 str_offset += str_size; in HELPER()
/openbmc/linux/drivers/media/pci/cx18/
H A Dcx18-mailbox.c447 u32 str_offset; in epu_debug_irq() local
451 str_offset = order->mb.args[1]; in epu_debug_irq()
452 if (str_offset) { in epu_debug_irq()
453 cx18_setup_page(cx, str_offset); in epu_debug_irq()
454 cx18_memcpy_fromio(cx, str, cx->enc_mem + str_offset, 252); in epu_debug_irq()
462 return str_offset ? 1 : 0; in epu_debug_irq()
/openbmc/linux/drivers/net/wireless/atmel/
H A Dat76c50x-usb.h341 __le32 str_offset; /* offset of the copyright string */ member
H A Dat76c50x-usb.c1650 str = (char *)fwh + le32_to_cpu(fwh->str_offset); in at76_load_firmware()
/openbmc/linux/drivers/crypto/intel/qat/qat_common/
H A Dqat_uclo.c75 unsigned int str_offset) in qat_uclo_get_string() argument
77 if (!str_table->table_len || str_offset > str_table->table_len) in qat_uclo_get_string()
79 return (char *)(((uintptr_t)(str_table->strings)) + str_offset); in qat_uclo_get_string()