Home
last modified time | relevance | path

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

/openbmc/qemu/tests/qemu-iotests/
H A D13891 l1_entry=$(peek_file_be "$TEST_IMG" $l1_ofs 8)
92 l1_entry=$((l1_entry & ~(1 << 63)))
93 poke_file_be "$TEST_IMG" $l1_ofs 8 $l1_entry
104 -e "s/\\([^0-9a-f]\\)$(printf %x $l1_entry)\\([^0-9a-f]\\)/\1L1_ENTRY_VALUE\2/"
H A D138.out21 Repairing OFLAG_COPIED L2 cluster: l1_index=0 l1_entry=L1_ENTRY_VALUE refcount=1
H A D217.out33 Repairing OFLAG_COPIED L2 cluster: l1_index=0 l1_entry=40000 refcount=1
/openbmc/qemu/tests/image-fuzzer/qcow2/
H A Dfuzz.py333 def l1_entry(current): function
/openbmc/qemu/block/
H A Dqcow2-refcount.c1975 uint64_t l1_entry = s->l1_table[i]; in check_oflag_copied() local
1976 uint64_t l2_offset = l1_entry & L1E_OFFSET_MASK; in check_oflag_copied()
1989 if ((refcount == 1) != ((l1_entry & QCOW_OFLAG_COPIED) != 0)) { in check_oflag_copied()
1993 repair ? "Repairing" : "ERROR", i, l1_entry, refcount); in check_oflag_copied()
1996 ? l1_entry | QCOW_OFLAG_COPIED in check_oflag_copied()
1997 : l1_entry & ~QCOW_OFLAG_COPIED; in check_oflag_copied()