Home
last modified time | relevance | path

Searched refs:tmp_raw (Results 1 – 3 of 3) sorted by relevance

/openbmc/u-boot/common/
H A Dkgdb.c164 char *tmp_raw, *tmp_hex; in hex2mem() local
170 tmp_raw = buf + count * 2; in hex2mem()
171 tmp_hex = tmp_raw - 1; in hex2mem()
175 tmp_raw--; in hex2mem()
179 *tmp_raw = hexValue; in hex2mem()
183 *tmp_raw |= hexValue << 4; in hex2mem()
187 memcpy(mem, tmp_raw, count); in hex2mem()
/openbmc/qemu/tests/vm/
H A Dfreebsd50 tmp_raw = img + ".tmp.raw"
51 tmp_raw_xz = tmp_raw + ".xz"
57 self.exec_qemu_img("convert", "-O", "qcow2", tmp_raw, img_tmp)
59 os.remove(tmp_raw)
/openbmc/linux/kernel/debug/
H A Dgdbstub.c267 char *tmp_raw; in kgdb_hex2mem() local
274 tmp_raw = buf + count * 2; in kgdb_hex2mem()
276 tmp_hex = tmp_raw - 1; in kgdb_hex2mem()
278 tmp_raw--; in kgdb_hex2mem()
279 *tmp_raw = hex_to_bin(*tmp_hex--); in kgdb_hex2mem()
280 *tmp_raw |= hex_to_bin(*tmp_hex--) << 4; in kgdb_hex2mem()
283 return copy_to_kernel_nofault(mem, tmp_raw, count); in kgdb_hex2mem()