Home
last modified time | relevance | path

Searched refs:temp_ptr (Results 1 – 10 of 10) sorted by relevance

/OK3568_Linux_fs/kernel/drivers/acpi/acpica/
H A Dexnames.c41 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()
/OK3568_Linux_fs/kernel/drivers/char/tpm/eventlog/
H A Dtpm2.c134 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 Dtpm1.c226 char *temp_ptr; in tpm1_binary_bios_measurements_show() local
236 temp_ptr = (char *) &temp_event; in tpm1_binary_bios_measurements_show()
239 seq_putc(m, temp_ptr[i]); in tpm1_binary_bios_measurements_show()
241 temp_ptr = (char *) v; in tpm1_binary_bios_measurements_show()
245 seq_putc(m, temp_ptr[i]); in tpm1_binary_bios_measurements_show()
/OK3568_Linux_fs/u-boot/fs/ext4/
H A Dext4_write.c848 char *temp_ptr = NULL; in ext4fs_write() local
928 temp_ptr = zalloc(fs->blksz); in ext4fs_write()
929 if (!temp_ptr) in ext4fs_write()
939 temp_ptr); in ext4fs_write()
940 if (ext4fs_log_journal(temp_ptr, itable_blkno)) in ext4fs_write()
943 memcpy(temp_ptr + blkoff, inode_buffer, fs->inodesz); in ext4fs_write()
944 if (ext4fs_put_metadata(temp_ptr, itable_blkno)) in ext4fs_write()
960 memset(temp_ptr, '\0', fs->blksz); in ext4fs_write()
962 0, fs->blksz, temp_ptr); in ext4fs_write()
963 if (ext4fs_log_journal(temp_ptr, parent_itable_blkno)) in ext4fs_write()
[all …]
H A Dext4_common.c199 unsigned char *temp_ptr = NULL; in put_ext4() local
221 temp_ptr = sec_buf; in put_ext4()
222 memcpy((temp_ptr + remainder), (unsigned char *)buf, size); in put_ext4()
230 temp_ptr = sec_buf; in put_ext4()
231 memcpy(temp_ptr, buf, size); in put_ext4()
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/geometry/index/detail/
H A Dvarray.hpp1576 Value * temp_ptr = reinterpret_cast<Value*>(temp.address()); in swap_dispatch() local
1578 ::memcpy(temp_ptr, this->data(), sizeof(Value) * this->size()); in swap_dispatch()
1580 ::memcpy(other.data(), temp_ptr, sizeof(Value) * this->size()); in swap_dispatch()
1621 value_type * temp_ptr = reinterpret_cast<value_type*>(temp_storage.address()); in swap_dispatch_impl() local
1623 ::memcpy(temp_ptr, boost::addressof(*first_sm), sizeof(value_type)); in swap_dispatch_impl()
1625 ::memcpy(boost::addressof(*first_la), temp_ptr, sizeof(value_type)); in swap_dispatch_impl()
/OK3568_Linux_fs/kernel/drivers/net/ethernet/seeq/
H A Dether3.c598 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()
/OK3568_Linux_fs/kernel/fs/cifs/
H A Dcifssmb.c6185 char *temp_ptr; in CIFSSMBQAllEAs() local
6283 temp_ptr = (char *)temp_fea; in CIFSSMBQAllEAs()
6289 temp_ptr += 4; in CIFSSMBQAllEAs()
6308 memcmp(ea_name, temp_ptr, name_len) == 0) { in CIFSSMBQAllEAs()
6309 temp_ptr += name_len + 1; in CIFSSMBQAllEAs()
6317 memcpy(EAData, temp_ptr, value_len); in CIFSSMBQAllEAs()
6326 memcpy(EAData, temp_ptr, name_len); in CIFSSMBQAllEAs()
6339 temp_ptr += name_len + 1 + value_len; in CIFSSMBQAllEAs()
6340 temp_fea = (struct fea *)temp_ptr; in CIFSSMBQAllEAs()
/OK3568_Linux_fs/kernel/drivers/scsi/lpfc/
H A Dlpfc_nportdisc.c2182 void *temp_ptr; in lpfc_cmpl_prli_prli_issue() local
2193 temp_ptr = lpfc_check_elscmpl_iocb(phba, cmdiocb, rspiocb); in lpfc_cmpl_prli_prli_issue()
2195 npr = (PRLI *) temp_ptr; in lpfc_cmpl_prli_prli_issue()
2197 nvpr = (struct lpfc_nvme_prli *) temp_ptr; in lpfc_cmpl_prli_prli_issue()
/OK3568_Linux_fs/kernel/tools/lib/bpf/
H A Dbtf.c1258 void *temp_ptr; in btf__get_from_id() local
1261 temp_ptr = realloc(ptr, last_size); in btf__get_from_id()
1262 if (!temp_ptr) { in btf__get_from_id()
1266 ptr = temp_ptr; in btf__get_from_id()