/openbmc/linux/rust/kernel/init/ |
H A D | macros.rs | 1035 @zeroed(), // Nothing means default behavior. 1050 @munch_fields(..Zeroable::zeroed()), 1060 @zeroed(()), // `()` means zero all fields not mentioned. 1100 @zeroed($($init_zeroed:expr)?), 1169 @munch_fields($(..Zeroable::zeroed())? $(,)?), 1273 @munch_fields(..Zeroable::zeroed() $(,)?), 1284 let mut zeroed = ::core::mem::zeroed(); localVariable 1287 ::core::ptr::write($slot, zeroed); 1288 zeroed = ::core::mem::zeroed(); 1296 ..zeroed
|
/openbmc/linux/rust/alloc/ |
H A D | alloc.rs | 178 fn alloc_impl(&self, layout: Layout, zeroed: bool) -> Result<NonNull<[u8]>, AllocError> { in alloc_impl() 183 let raw_ptr = if zeroed { alloc_zeroed(layout) } else { alloc(layout) }; in alloc_impl() 197 zeroed: bool, in grow_impl() 205 0 => self.alloc_impl(new_layout, zeroed), in grow_impl() 217 if zeroed { in grow_impl() 229 let new_ptr = self.alloc_impl(new_layout, zeroed)?; in grow_impl()
|
/openbmc/phosphor-mboxd/vpnor/test/ |
H A D | tmpd.hpp | 48 std::vector<char> zeroed(part.data.actual, 0); in VpnorRoot() local 51 .write(zeroed.data(), zeroed.size()); in VpnorRoot()
|
/openbmc/hiomapd/vpnor/test/ |
H A D | tmpd.hpp | 53 std::vector<char> zeroed(part.data.actual, 0); in VpnorRoot() local 56 .write(zeroed.data(), zeroed.size()); in VpnorRoot()
|
/openbmc/linux/rust/alloc/vec/ |
H A D | into_iter.rs | 199 Some(unsafe { mem::zeroed() }) in next() 291 if T::IS_ZST { mem::zeroed() } else { ptr::read(self.ptr.add(i)) } in __iterator_get_unchecked() 307 Some(unsafe { mem::zeroed() }) in next_back()
|
H A D | is_zero.rs | 159 let none: Self = unsafe { core::mem::MaybeUninit::zeroed().assume_init() };
|
/openbmc/linux/Documentation/userspace-api/media/v4l/ |
H A D | pixfmt-v4l2-mplane.rst | 47 - Reserved for future extensions. Should be zeroed by drivers and 118 - Reserved for future extensions. Should be zeroed by drivers and
|
H A D | vidioc-enum-framesizes.rst | 163 - Reserved space for future use. Must be zeroed by drivers and
|
H A D | vidioc-create-bufs.rst | 45 array must be zeroed.
|
/openbmc/linux/arch/arm/nwfpe/ |
H A D | ChangeLog | 63 structures, and that recycled ones may not have init_flag zeroed. 64 I couldn't even find anything that guarantees it is zeroed when
|
/openbmc/qemu/block/ |
H A D | vmdk.c | 1455 bool zeroed) in get_whole_cluster() argument 1466 copy_from_backing = bs->backing && !zeroed; in get_whole_cluster() 1592 bool zeroed = false; in get_cluster_offset() local 1698 zeroed = true; in get_cluster_offset() 1714 zeroed = true; in get_cluster_offset() 1718 if (!cluster_sector || zeroed) { in get_cluster_offset() 1720 return zeroed ? VMDK_ZEROED : VMDK_UNALLOC; in get_cluster_offset() 1738 zeroed); in get_cluster_offset() 2061 QEMUIOVector *qiov, bool zeroed, bool zero_dry_run) in vmdk_pwritev() argument 2091 !(extent->compressed || zeroed), in vmdk_pwritev() [all …]
|
/openbmc/qemu/hw/nvme/ |
H A D | dif.c | 357 bool zeroed; in nvme_dif_mangle_mdata() local 382 zeroed = !!(ret & BDRV_BLOCK_ZERO); in nvme_dif_mangle_mdata() 384 trace_pci_nvme_block_status(offset, bytes, pnum, ret, zeroed); in nvme_dif_mangle_mdata() 386 if (zeroed) { in nvme_dif_mangle_mdata()
|
/openbmc/linux/drivers/staging/media/av7110/ |
H A D | video-command.rst | 65 /* The structure must be zeroed before use by the application
|
/openbmc/linux/net/core/ |
H A D | gro.c | 461 BUILD_BUG_ON(sizeof_field(struct napi_gro_cb, zeroed) != sizeof(u32)); in dev_gro_receive() 462 BUILD_BUG_ON(!IS_ALIGNED(offsetof(struct napi_gro_cb, zeroed), in dev_gro_receive() 464 *(u32 *)&NAPI_GRO_CB(skb)->zeroed = 0; in dev_gro_receive()
|
/openbmc/linux/Documentation/driver-api/usb/ |
H A D | usb3-debug-port.rst | 76 [ 1815.999595] usb 4-3: LPM exit latency is zeroed, disabling LPM. 144 [ 79.475003] usb 2-2.1: LPM exit latency is zeroed, disabling LPM.
|
/openbmc/linux/Documentation/driver-api/serial/ |
H A D | serial-iso7816.rst | 54 /* Reserved fields as to be zeroed */
|
/openbmc/qemu/docs/interop/ |
H A D | qed_spec.txt | 94 …zero. Image files with cluster_size > 2^12 will have more unused bits which should also be zeroed. 102 Zero data clusters are a space-efficient way of storing zeroed regions of the image.
|
/openbmc/qemu/tests/qemu-iotests/ |
H A D | 237.out | 37 …dk"}, "hwversion": "4", "size": 67108864, "subformat": "monolithicSparse", "zeroed-grain": false}}} 64 … "TEST_DIR/PID-t.vmdk"}, "size": 33554432, "subformat": "monolithicSparse", "zeroed-grain": true}}}
|
/openbmc/qemu/docs/devel/testing/ |
H A D | blkverify.rst | 49 And test.img is corrupt, its first sector is zeroed when it shouldn't be::
|
/openbmc/linux/mm/ |
H A D | vmalloc.c | 3694 size_t zeroed = zero_iter(iter, to_zero); in vmap_ram_vread_iter() local 3696 addr += zeroed; in vmap_ram_vread_iter() 3697 remains -= zeroed; in vmap_ram_vread_iter() 3699 if (remains == 0 || zeroed != to_zero) in vmap_ram_vread_iter() 3808 size_t zeroed = zero_iter(iter, to_zero); in vread_iter() local 3810 addr += zeroed; in vread_iter() 3811 remains -= zeroed; in vread_iter() 3813 if (remains == 0 || zeroed != to_zero) in vread_iter()
|
/openbmc/linux/arch/sh/ |
H A D | Kconfig.debug | 82 can already be guaranteed to ber zeroed on boot, say Y.
|
/openbmc/linux/Documentation/userspace-api/ |
H A D | futex2.rst | 43 the upper bits are zeroed. ``uintptr_t`` does the tricky and it works for
|
/openbmc/linux/Documentation/admin-guide/device-mapper/ |
H A D | writecache.rst | 9 When the device is constructed, the first sector should be zeroed or the
|
/openbmc/linux/Documentation/ABI/testing/ |
H A D | sysfs-fs-ext4 | 104 The maximum number of kilobytes which will be zeroed
|
/openbmc/linux/Documentation/filesystems/ext4/ |
H A D | group_descr.rst | 173 - inode table is zeroed (EXT4_BG_INODE_ZEROED).
|