Home | History | Annotate | Download | only in util

Lines Matching refs:int8_t

35 static void u_format_signed_encode_rgtc_ubyte(int8_t *blkaddr, int8_t srccolors[4][4],
38 static void u_format_signed_fetch_texel_rgtc(unsigned srcRowStride, const int8_t *pixdata,
39 unsigned i, unsigned j, int8_t *value, unsigned comps);
181 int8_t *dst = (int8_t *)dst_row;
183 int8_t tmp[4][4]; /* [bh][bw][comps] */
202 const int8_t *src = (int8_t *)src_row;
207 int8_t tmp_r;
224 int8_t tmp_r;
225 u_format_signed_fetch_texel_rgtc(0, (int8_t *)src, i, j, &tmp_r, 1);
386 const int8_t *src = (int8_t *)src_row;
391 int8_t tmp_r, tmp_g;
413 int8_t *dst = (int8_t *)dst_row;
415 int8_t tmp_r[4][4]; /* [bh][bw][comps] */
416 int8_t tmp_g[4][4]; /* [bh][bw][comps] */
440 int8_t tmp_r, tmp_g;
441 u_format_signed_fetch_texel_rgtc(0, (int8_t *)src, i, j, &tmp_r, 2);
442 u_format_signed_fetch_texel_rgtc(0, (int8_t *)src + 8, i, j, &tmp_g, 2);
464 #define TYPE int8_t
465 #define T_MIN (int8_t)-128
466 #define T_MAX (int8_t)127