Home
last modified time | relevance | path

Searched refs:zeroed (Results 1 – 25 of 81) sorted by relevance

1234

/openbmc/linux/rust/kernel/init/
H A Dmacros.rs1035 @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 Dalloc.rs178 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 Dtmpd.hpp48 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 Dtmpd.hpp53 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 Dinto_iter.rs199 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 Dis_zero.rs159 let none: Self = unsafe { core::mem::MaybeUninit::zeroed().assume_init() };
/openbmc/linux/Documentation/userspace-api/media/v4l/
H A Dpixfmt-v4l2-mplane.rst47 - Reserved for future extensions. Should be zeroed by drivers and
118 - Reserved for future extensions. Should be zeroed by drivers and
H A Dvidioc-enum-framesizes.rst163 - Reserved space for future use. Must be zeroed by drivers and
H A Dvidioc-create-bufs.rst45 array must be zeroed.
/openbmc/linux/arch/arm/nwfpe/
H A DChangeLog63 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 Dvmdk.c1455 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 Ddif.c357 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 Dvideo-command.rst65 /* The structure must be zeroed before use by the application
/openbmc/linux/net/core/
H A Dgro.c461 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 Dusb3-debug-port.rst76 [ 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 Dserial-iso7816.rst54 /* Reserved fields as to be zeroed */
/openbmc/qemu/docs/interop/
H A Dqed_spec.txt94 …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 D237.out37 …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 Dblkverify.rst49 And test.img is corrupt, its first sector is zeroed when it shouldn't be::
/openbmc/linux/mm/
H A Dvmalloc.c3694 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 DKconfig.debug82 can already be guaranteed to ber zeroed on boot, say Y.
/openbmc/linux/Documentation/userspace-api/
H A Dfutex2.rst43 the upper bits are zeroed. ``uintptr_t`` does the tricky and it works for
/openbmc/linux/Documentation/admin-guide/device-mapper/
H A Dwritecache.rst9 When the device is constructed, the first sector should be zeroed or the
/openbmc/linux/Documentation/ABI/testing/
H A Dsysfs-fs-ext4104 The maximum number of kilobytes which will be zeroed
/openbmc/linux/Documentation/filesystems/ext4/
H A Dgroup_descr.rst173 - inode table is zeroed (EXT4_BG_INODE_ZEROED).

1234