uint8_t           702 tools/capdis.c         uint8_t *p=adr2ptr(fw,adr);
uint8_t           735 tools/capdis.c         uint8_t *p=adr2ptr(fw,adr);
uint8_t           801 tools/capdis.c         uint8_t *p=adr2ptr(fw,adr);
uint8_t            63 tools/dumputil.c uint8_t deref_byte_ptr(dump_t *dump,unsigned off)
uint8_t            78 tools/dumputil.c 	uint8_t *p;
uint8_t             6 tools/dumputil.h 		const uint8_t *pb;
uint8_t            19 tools/dumputil.h uint8_t deref_byte_ptr(dump_t *dump,unsigned off);
uint8_t          6317 tools/finsig_thumb2.c         uint32_t j = ptr2adr(fw,(uint8_t *)fw->firmware_ver_str);
uint8_t           272 tools/firmware_load_ng.c uint32_t ptr2adr(firmware *fw, uint8_t *ptr)
uint8_t           278 tools/firmware_load_ng.c uint8_t* adr2ptr(firmware *fw, uint32_t adr)
uint8_t           293 tools/firmware_load_ng.c uint8_t* adr2ptr_with_data(firmware *fw, uint32_t adr)
uint8_t           397 tools/firmware_load_ng.c             return ptr2adr(fw,(uint8_t *)p);
uint8_t           907 tools/firmware_load_ng.c         uint8_t *p=adr2ptr(fw,adr);
uint8_t           992 tools/firmware_load_ng.c     uint8_t *p=adr2ptr(fw,adr);
uint8_t          1077 tools/firmware_load_ng.c     uint8_t *p=adr2ptr(fw,adr);
uint8_t          1155 tools/firmware_load_ng.c         uint32_t adr_chunk_end = ptr2adr(fw,(uint8_t*)br_end);
uint8_t          1161 tools/firmware_load_ng.c             adr=ptr2adr(fw,(uint8_t *)br->p);
uint8_t          2371 tools/firmware_load_ng.c static const uint8_t code[]=
uint8_t            57 tools/firmware_load_ng.h     const uint8_t *code; // pointer into buffer for code
uint8_t            71 tools/firmware_load_ng.h     uint8_t *buf;
uint8_t            89 tools/firmware_load_ng.h         uint8_t        *buf8;                // Firmware data
uint8_t           139 tools/firmware_load_ng.h uint8_t* adr2ptr(firmware *fw, uint32_t adr);
uint8_t           142 tools/firmware_load_ng.h uint8_t* adr2ptr_with_data(firmware *fw, uint32_t adr);
uint8_t           152 tools/firmware_load_ng.h uint32_t ptr2adr(firmware *fw, uint8_t *ptr);
uint8_t            42 tools/rawconvert.c typedef unsigned (*get_pixel_func_t)(uint8_t *p, unsigned row_bytes, unsigned x, unsigned y);
uint8_t            43 tools/rawconvert.c typedef void (*set_pixel_func_t)(uint8_t *p, unsigned row_bytes, unsigned x, unsigned y, unsigned value);
uint8_t            54 tools/rawconvert.c void set_12_pixel(uint8_t *p,unsigned row_bytes, unsigned x, unsigned y, unsigned value)
uint8_t            56 tools/rawconvert.c  uint8_t* addr=p+y*row_bytes+(x>>2)*6;
uint8_t            77 tools/rawconvert.c unsigned get_12_pixel(uint8_t *p, unsigned row_bytes, unsigned x, unsigned y)
uint8_t            79 tools/rawconvert.c  uint8_t* addr = p + y * row_bytes + (x>>2) * 6;
uint8_t            89 tools/rawconvert.c unsigned get_10_pixel(uint8_t *p, unsigned row_bytes, unsigned x, unsigned y)
uint8_t            91 tools/rawconvert.c 	uint8_t* addr = p + y * row_bytes + (x>>3) * 10;
uint8_t           105 tools/rawconvert.c void set_10_pixel(uint8_t *p, unsigned row_bytes, unsigned x, unsigned y, unsigned value)
uint8_t           107 tools/rawconvert.c 	uint8_t* addr = p + y*row_bytes + (x>>3)*10;
uint8_t           144 tools/rawconvert.c unsigned get_8_pixel(uint8_t *buf, unsigned row_bytes, unsigned x, unsigned y)
uint8_t           149 tools/rawconvert.c void set_8_pixel(uint8_t *buf, unsigned row_bytes, unsigned x, unsigned y, unsigned value)
uint8_t           151 tools/rawconvert.c 	buf[row_bytes*y+x] = (uint8_t)value;
uint8_t           154 tools/rawconvert.c unsigned get_16_pixel(uint8_t *buf, unsigned row_bytes, unsigned x, unsigned y)
uint8_t           159 tools/rawconvert.c void set_16_pixel(uint8_t *buf, unsigned row_bytes, unsigned x, unsigned y, unsigned value)
uint8_t           219 tools/rawconvert.c 	uint8_t *in_data;
uint8_t           220 tools/rawconvert.c 	uint8_t *out_data;
uint8_t            35 tools/yuvconvert.c static uint8_t clip(int v) {
uint8_t            41 tools/yuvconvert.c void yuv_to_rgb(uint8_t **dest, uint8_t y, int8_t u, int8_t v)
uint8_t            51 tools/yuvconvert.c 	uint8_t *out_data;
uint8_t            52 tools/yuvconvert.c 	uint8_t *prgb_data;
uint8_t           199 tools/yuvconvert.c 		uint8_t *p_yuv;
uint8_t           212 tools/yuvconvert.c 		p_yuv = (uint8_t*)in_data;