Searched refs:tmp_raw (Results 1 – 2 of 2) sorted by relevance
164 char *tmp_raw, *tmp_hex; in hex2mem() local170 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()
270 char *tmp_raw; in kgdb_hex2mem() local277 tmp_raw = buf + count * 2; in kgdb_hex2mem()279 tmp_hex = tmp_raw - 1; in kgdb_hex2mem()281 tmp_raw--; in kgdb_hex2mem()282 *tmp_raw = hex_to_bin(*tmp_hex--); in kgdb_hex2mem()283 *tmp_raw |= hex_to_bin(*tmp_hex--) << 4; in kgdb_hex2mem()286 return copy_to_kernel_nofault(mem, tmp_raw, count); in kgdb_hex2mem()