Home
last modified time | relevance | path

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

/third_party/uboot/u-boot-2020.01/fs/ext4/
Dext4_write.c855 char *temp_ptr = NULL; in ext4fs_write() local
962 temp_ptr = zalloc(fs->blksz); in ext4fs_write()
963 if (!temp_ptr) in ext4fs_write()
973 temp_ptr); in ext4fs_write()
974 if (ext4fs_log_journal(temp_ptr, itable_blkno)) in ext4fs_write()
977 memcpy(temp_ptr + blkoff, inode_buffer, fs->inodesz); in ext4fs_write()
978 if (ext4fs_put_metadata(temp_ptr, itable_blkno)) in ext4fs_write()
994 memset(temp_ptr, '\0', fs->blksz); in ext4fs_write()
996 0, fs->blksz, temp_ptr); in ext4fs_write()
997 if (ext4fs_log_journal(temp_ptr, parent_itable_blkno)) in ext4fs_write()
[all …]
Dext4_common.c197 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()
/third_party/FreeBSD/sys/dev/usb/
Dusb_device.c2253 char *temp_ptr; in usbd_set_device_strings() local
2262 temp_ptr = (char *)udev->scratch.data; in usbd_set_device_strings()
2269 (void)usbd_req_get_string_any(udev, NULL, temp_ptr, temp_size, in usbd_set_device_strings()
2271 udev->serial = bsd_strdup(temp_ptr, M_USB); in usbd_set_device_strings()
2274 (void)usbd_req_get_string_any(udev, NULL, temp_ptr, temp_size, in usbd_set_device_strings()
2276 usb_trim_spaces(temp_ptr); in usbd_set_device_strings()
2277 if (temp_ptr[0] != '\0') in usbd_set_device_strings()
2278 udev->manufacturer = bsd_strdup(temp_ptr, M_USB); in usbd_set_device_strings()
2281 (void)usbd_req_get_string_any(udev, NULL, temp_ptr, temp_size, in usbd_set_device_strings()
2283 usb_trim_spaces(temp_ptr); in usbd_set_device_strings()
[all …]
/third_party/boost/boost/geometry/index/detail/
Dvarray.hpp1572 Value * temp_ptr = reinterpret_cast<Value*>(temp.address()); in swap_dispatch() local
1574 ::memcpy(temp_ptr, this->data(), sizeof(Value) * this->size()); in swap_dispatch()
1576 ::memcpy(other.data(), temp_ptr, sizeof(Value) * this->size()); in swap_dispatch()
1617 value_type * temp_ptr = reinterpret_cast<value_type*>(temp_storage.address()); in swap_dispatch_impl() local
1619 ::memcpy(temp_ptr, boost::addressof(*first_sm), sizeof(value_type)); in swap_dispatch_impl()
1621 ::memcpy(boost::addressof(*first_la), temp_ptr, sizeof(value_type)); in swap_dispatch_impl()
/third_party/boost/libs/container/bench/detail/
Dvarray.hpp1585 value_type * temp_ptr = static_cast<value_type*>(static_cast<void*>(&temp_storage)); in swap_dispatch() local
1587 ::memcpy(temp_ptr, this->data(), sizeof(Value) * this->size()); in swap_dispatch()
1589 ::memcpy(other.data(), temp_ptr, sizeof(Value) * this->size()); in swap_dispatch()
1629 value_type * temp_ptr = static_cast<value_type*>(static_cast<void*>(&temp_storage)); in swap_dispatch_impl() local
1630 ::memcpy(temp_ptr, (addressof)(*first_sm), sizeof(value_type)); in swap_dispatch_impl()
1632 ::memcpy((addressof)(*first_la), temp_ptr, sizeof(value_type)); in swap_dispatch_impl()