Lines Matching +defs:a +defs:p
680 #define STBI_REALLOC(p,newsz) realloc(p,newsz) argument
681 #define STBI_FREE(p) free(p) argument
685 #define STBI_REALLOC_SIZED(p,oldsz,newsz) STBI_REALLOC(p,newsz) argument
999 static int stbi__addsizes_valid(int a, int b) in stbi__addsizes_valid()
1011 static int stbi__mul2sizes_valid(int a, int b) in stbi__mul2sizes_valid()
1021 static int stbi__mad2sizes_valid(int a, int b, int add) in stbi__mad2sizes_valid()
1028 static int stbi__mad3sizes_valid(int a, int b, int c, int add) in stbi__mad3sizes_valid()
1036 static int stbi__mad4sizes_valid(int a, int b, int c, int d, int add) in stbi__mad4sizes_valid()
1045 static void *stbi__malloc_mad2(int a, int b, int add) in stbi__malloc_mad2()
1052 static void *stbi__malloc_mad3(int a, int b, int c, int add) in stbi__malloc_mad3()
1059 static void *stbi__malloc_mad4(int a, int b, int c, int d, int add) in stbi__malloc_mad4()
1753 #define STBI__COMBO(a,b) ((a)*8+(b)) in stbi__convert_format() argument
1754 #define STBI__CASE(a,b) case STBI__COMBO(a,b): for(i=x-1; i >= 0; --i, src += a, dest += b) in stbi__convert_format() argument
1810 #define STBI__COMBO(a,b) ((a)*8+(b)) in stbi__convert_format16() argument
1811 #define STBI__CASE(a,b) case STBI__COMBO(a,b): for(i=x-1; i >= 0; --i, src += a, dest += b) in stbi__convert_format16() argument
2318 short *p = &data[stbi__jpeg_dezigzag[k]]; in stbi__jpeg_decode_block_prog_ac() local
2358 short *p = &data[stbi__jpeg_dezigzag[k++]]; in stbi__jpeg_decode_block_prog_ac() local
2521 #define dct_wadd(out, a, b) \ in stbi__idct_simd() argument
2526 #define dct_wsub(out, a, b) \ in stbi__idct_simd() argument
2531 #define dct_bfly32o(out0, out1, a,b,bias,s) \ in stbi__idct_simd() argument
2542 #define dct_interleave8(a, b) \ in stbi__idct_simd() argument
2548 #define dct_interleave16(a, b) \ in stbi__idct_simd() argument
2707 #define dct_wadd(out, a, b) \ in stbi__idct_simd() argument
2712 #define dct_wsub(out, a, b) \ in stbi__idct_simd() argument
2717 #define dct_bfly32o(out0,out1, a,b,shiftop,s) \ in stbi__idct_simd() argument
3081 int p = q >> 4, sixteen = (p != 0); in stbi__process_marker() local
3232 int Lf,p,i,q, h_max=1,v_max=1,c; in stbi__process_frame_header() local
4159 static int stbi__zhuffman_decode_slowpath(stbi__zbuf *a, stbi__zhuffman *z) in stbi__zhuffman_decode_slowpath()
4178 stbi_inline static int stbi__zhuffman_decode(stbi__zbuf *a, stbi__zhuffman *z) in stbi__zhuffman_decode()
4233 static int stbi__parse_huffman_block(stbi__zbuf *a) in stbi__parse_huffman_block()
4246 stbi_uc *p; in stbi__parse_huffman_block() local
4275 static int stbi__compute_huffman_codes(stbi__zbuf *a) in stbi__compute_huffman_codes()
4325 static int stbi__parse_uncompressed_block(stbi__zbuf *a) in stbi__parse_uncompressed_block()
4354 static int stbi__parse_zlib_header(stbi__zbuf *a) in stbi__parse_zlib_header()
4397 static int stbi__parse_zlib(stbi__zbuf *a, int parse_header) in stbi__parse_zlib()
4425 static int stbi__do_zlib(stbi__zbuf *a, char *obuf, int olen, int exp, int parse_header) in stbi__do_zlib()
4437 stbi__zbuf a; in stbi_zlib_decode_malloc_guesssize() local
4438 char *p = (char *) stbi__malloc(initial_size); in stbi_zlib_decode_malloc_guesssize() local
4458 stbi__zbuf a; in stbi_zlib_decode_malloc_guesssize_headerflag() local
4459 char *p = (char *) stbi__malloc(initial_size); in stbi_zlib_decode_malloc_guesssize_headerflag() local
4474 stbi__zbuf a; in stbi_zlib_decode_buffer() local
4485 stbi__zbuf a; in stbi_zlib_decode_noheader_malloc() local
4486 char *p = (char *) stbi__malloc(16384); in stbi_zlib_decode_noheader_malloc() local
4501 stbi__zbuf a; in stbi_zlib_decode_noheader_buffer() local
4573 static int stbi__paeth(int a, int b, int c) in stbi__paeth()
4575 int p = a + b - c; in stbi__paeth() local
4587 static int stbi__create_png_image_raw(stbi__png *a, stbi_uc *raw, stbi__uint32 raw_len, int out_n, … in stbi__create_png_image_raw()
4799 static int stbi__create_png_image(stbi__png *a, stbi_uc *image_data, stbi__uint32 image_data_len, i… in stbi__create_png_image()
4804 int p; in stbi__create_png_image() local
4848 stbi_uc *p = z->out; in stbi__compute_transparency() local
4873 stbi__uint16 *p = (stbi__uint16*) z->out; in stbi__compute_transparency16() local
4894 static int stbi__expand_png_palette(stbi__png *a, stbi_uc *palette, int len, int pal_img_n) in stbi__expand_png_palette()
4897 stbi_uc *p, *temp_out, *orig = a->out; in stbi__expand_png_palette() local
4975 stbi_uc *p = z->out; in stbi__de_iphone() local
4989 stbi_uc a = p[3]; in stbi__de_iphone() local
5014 #define STBI__PNG_TYPE(a,b,c,d) (((unsigned) (a) << 24) + ((unsigned) (b) << 16) + ((unsigned) (c)… argument
5115 stbi_uc *p; in stbi__parse_png_file() local
5192 static void *stbi__do_png(stbi__png *p, int *x, int *y, int *n, int req_comp, stbi__result_info *ri) in stbi__do_png()
5226 stbi__png p; in stbi__png_load() local
5239 static int stbi__png_info_raw(stbi__png *p, int *x, int *y, int *comp) in stbi__png_info_raw()
5253 stbi__png p; in stbi__png_info() local
5260 stbi__png p; in stbi__png_is16() local
5311 static int stbi__bitcount(unsigned int a) in stbi__bitcount()
5596 unsigned char a; in stbi__bmp_load() local
5609 unsigned int a; in stbi__bmp_load() local
6003 static int stbi__psd_decode_rle(stbi__context *s, stbi_uc *p, int pixelCount) in stbi__psd_decode_rle()
6143 stbi_uc *p; in stbi__psd_load() local
6173 stbi_uc *p = out+channel; in stbi__psd_load() local
6184 stbi_uc *p = out+channel; in stbi__psd_load() local
6203 float a = pixel[3] / 65535.0f; in stbi__psd_load() local
6215 float a = pixel[3] / 255.0f; in stbi__psd_load() local
6571 stbi_uc *p, *c; in stbi__out_gif_code() local
6612 stbi__gif_lzw *p; in stbi__process_gif_raster() local
7252 void *p; in stbi__bmp_info() local
7411 char p, t; in stbi__pnm_test() local
7490 char c, p, t; in stbi__pnm_info() local