Lines Matching full:signature
20 #define SIGNATURE 0xdead macro
25 /* x86 boot sector code: write SIGNATURE into memory,
47 [0x06] = LOW(SIGNATURE),
48 [0x07] = HIGH(SIGNATURE),
69 /* For s390x, use a mini "kernel" with the appropriate signature */
82 0xa7, 0x48, LOW(SIGNATURE), HIGH(SIGNATURE), /* lhi r4,0xadde */
109 LOW(SIGNATURE), SIGNATURE_ADDR, in boot_sector_init()
110 HIGH(SIGNATURE), SIGNATURE_ADDR + 1); in boot_sector_init()
134 /* Loop until signature in memory is OK. */
139 uint16_t signature; in boot_sector_test() local
154 signature = (signature_high << 8) | signature_low; in boot_sector_test()
155 if (signature == SIGNATURE) { in boot_sector_test()
156 /* wipe signature */ in boot_sector_test()
173 g_assert_cmphex(signature, ==, SIGNATURE); in boot_sector_test()