Searched refs:temp_ptr (Results 1 – 9 of 9) sorted by relevance
/openbmc/linux/drivers/acpi/acpica/ |
H A D | exnames.c | 41 char *temp_ptr; in acpi_ex_allocate_name_string() local 73 temp_ptr = name_string; in acpi_ex_allocate_name_string() 78 *temp_ptr++ = AML_ROOT_PREFIX; in acpi_ex_allocate_name_string() 81 *temp_ptr++ = AML_PARENT_PREFIX; in acpi_ex_allocate_name_string() 91 *temp_ptr++ = AML_MULTI_NAME_PREFIX; in acpi_ex_allocate_name_string() 92 *temp_ptr++ = (char)num_name_segs; in acpi_ex_allocate_name_string() 97 *temp_ptr++ = AML_DUAL_NAME_PREFIX; in acpi_ex_allocate_name_string() 104 *temp_ptr = 0; in acpi_ex_allocate_name_string()
|
/openbmc/linux/drivers/char/tpm/eventlog/ |
H A D | tpm2.c | 134 void *temp_ptr; in tpm2_binary_bios_measurements_show() local 140 temp_ptr = event_header; in tpm2_binary_bios_measurements_show() 143 seq_write(m, temp_ptr, size); in tpm2_binary_bios_measurements_show() 146 temp_ptr = event; in tpm2_binary_bios_measurements_show() 148 seq_write(m, temp_ptr, size); in tpm2_binary_bios_measurements_show()
|
H A D | tpm1.c | 227 char *temp_ptr; in tpm1_binary_bios_measurements_show() local 237 temp_ptr = (char *) &temp_event; in tpm1_binary_bios_measurements_show() 240 seq_putc(m, temp_ptr[i]); in tpm1_binary_bios_measurements_show() 242 temp_ptr = (char *) v; in tpm1_binary_bios_measurements_show() 246 seq_putc(m, temp_ptr[i]); in tpm1_binary_bios_measurements_show()
|
/openbmc/u-boot/fs/ext4/ |
H A D | ext4_write.c | 847 char *temp_ptr = NULL; in ext4fs_write() local 933 temp_ptr = zalloc(fs->blksz); in ext4fs_write() 934 if (!temp_ptr) in ext4fs_write() 944 temp_ptr); in ext4fs_write() 945 if (ext4fs_log_journal(temp_ptr, itable_blkno)) in ext4fs_write() 948 memcpy(temp_ptr + blkoff, inode_buffer, fs->inodesz); in ext4fs_write() 949 if (ext4fs_put_metadata(temp_ptr, itable_blkno)) in ext4fs_write() 965 memset(temp_ptr, '\0', fs->blksz); in ext4fs_write() 967 0, fs->blksz, temp_ptr); in ext4fs_write() 968 if (ext4fs_log_journal(temp_ptr, parent_itable_blkno)) in ext4fs_write() [all …]
|
H A D | ext4_common.c | 197 unsigned char *temp_ptr = NULL; in put_ext4() local 219 temp_ptr = sec_buf; in put_ext4() 220 memcpy((temp_ptr + remainder), (unsigned char *)buf, size); in put_ext4() 228 temp_ptr = sec_buf; in put_ext4() 229 memcpy(temp_ptr, buf, size); in put_ext4()
|
/openbmc/linux/drivers/net/ethernet/seeq/ |
H A D | ether3.c | 598 unsigned int temp_ptr; in ether3_rx() local 600 temp_ptr = ether3_readword(dev); in ether3_rx() 603 (RXSTAT_DONE | RXHDR_CHAINCONTINUE) || !temp_ptr) in ether3_rx() 607 next_ptr = ntohs(temp_ptr); in ether3_rx()
|
/openbmc/linux/fs/smb/client/ |
H A D | cifssmb.c | 5618 char *temp_ptr; in CIFSSMBQAllEAs() local 5716 temp_ptr = (char *)temp_fea; in CIFSSMBQAllEAs() 5722 temp_ptr += 4; in CIFSSMBQAllEAs() 5741 memcmp(ea_name, temp_ptr, name_len) == 0) { in CIFSSMBQAllEAs() 5742 temp_ptr += name_len + 1; in CIFSSMBQAllEAs() 5750 memcpy(EAData, temp_ptr, value_len); in CIFSSMBQAllEAs() 5759 memcpy(EAData, temp_ptr, name_len); in CIFSSMBQAllEAs() 5772 temp_ptr += name_len + 1 + value_len; in CIFSSMBQAllEAs() 5773 temp_fea = (struct fea *)temp_ptr; in CIFSSMBQAllEAs()
|
/openbmc/linux/drivers/scsi/lpfc/ |
H A D | lpfc_nportdisc.c | 2154 void *temp_ptr; in lpfc_cmpl_prli_prli_issue() local 2169 temp_ptr = lpfc_check_elscmpl_iocb(phba, cmdiocb, rspiocb); in lpfc_cmpl_prli_prli_issue() 2171 npr = (PRLI *) temp_ptr; in lpfc_cmpl_prli_prli_issue() 2173 nvpr = (struct lpfc_nvme_prli *) temp_ptr; in lpfc_cmpl_prli_prli_issue()
|
/openbmc/linux/tools/lib/bpf/ |
H A D | btf.c | 1366 void *temp_ptr; in btf_get_from_fd() local 1369 temp_ptr = realloc(ptr, last_size); in btf_get_from_fd() 1370 if (!temp_ptr) { in btf_get_from_fd() 1374 ptr = temp_ptr; in btf_get_from_fd()
|