Symbol: stbi_uc
sys/dev/stbi/stb_image.c
1037
static float *ldr_to_hdr(stbi_uc *data, int x, int y, int comp)
sys/dev/stbi/stb_image.c
1055
static stbi_uc *hdr_to_ldr(float *data, int x, int y, int comp)
sys/dev/stbi/stb_image.c
1058
stbi_uc *output = MALLOC(x * y * comp);
sys/dev/stbi/stb_image.c
2085
unsigned char *stbi_jpeg_load_from_memory(stbi_uc const *buffer, int len, int *x, int *y, int *comp, int req_comp)
sys/dev/stbi/stb_image.c
210
extern stbi_uc *stbi_load_from_memory(stbi_uc const *buffer, int len, int *x, int *y, int *comp, int req_comp);
sys/dev/stbi/stb_image.c
213
extern stbi_uc *stbi_load (char const *filename, int *x, int *y, int *comp, int req_comp);
sys/dev/stbi/stb_image.c
214
extern stbi_uc *stbi_load_from_file (FILE *f, int *x, int *y, int *comp, int req_comp);
sys/dev/stbi/stb_image.c
2145
int stbi_jpeg_test_memory(stbi_uc const *buffer, int len)
sys/dev/stbi/stb_image.c
2158
int stbi_jpeg_info_from_memory(stbi_uc const *buffer, int len, int *x, int *y, int *comp)
sys/dev/stbi/stb_image.c
2175
extern int stbi_jpeg_info_from_memory(stbi_uc const *buffer, int len, int *x, int *y, int *comp);
sys/dev/stbi/stb_image.c
219
extern float *stbi_loadf_from_memory(stbi_uc const *buffer, int len, int *x, int *y, int *comp, int req_comp);
sys/dev/stbi/stb_image.c
241
extern int stbi_info_from_memory(stbi_uc const *buffer, int len, int *x, int *y, int *comp);
sys/dev/stbi/stb_image.c
242
extern int stbi_is_hdr_from_memory(stbi_uc const *buffer, int len);
sys/dev/stbi/stb_image.c
275
int (*test_memory)(stbi_uc const *buffer, int len);
sys/dev/stbi/stb_image.c
276
stbi_uc * (*load_from_memory)(stbi_uc const *buffer, int len, int *x, int *y, int *comp, int req_comp);
sys/dev/stbi/stb_image.c
279
stbi_uc * (*load_from_file)(FILE *f, int *x, int *y, int *comp, int req_comp);
sys/dev/stbi/stb_image.c
290
typedef void (*stbi_idct_8x8)(stbi_uc *out, int out_stride, short data[64], unsigned short *dequantize);
sys/dev/stbi/stb_image.c
295
typedef void (*stbi_YCbCr_to_RGB_run)(stbi_uc *output, stbi_uc const *y, stbi_uc const *cb, stbi_uc const *cr, int count, int step);
sys/dev/stbi/stb_image.c
3149
unsigned char *stbi_png_load_from_memory(stbi_uc const *buffer, int len, int *x, int *y, int *comp, int req_comp)
sys/dev/stbi/stb_image.c
315
extern int stbi_jpeg_test_memory (stbi_uc const *buffer, int len);
sys/dev/stbi/stb_image.c
316
extern stbi_uc *stbi_jpeg_load_from_memory(stbi_uc const *buffer, int len, int *x, int *y, int *comp, int req_comp);
sys/dev/stbi/stb_image.c
3169
int stbi_png_test_memory(stbi_uc const *buffer, int len)
sys/dev/stbi/stb_image.c
317
extern int stbi_jpeg_info_from_memory(stbi_uc const *buffer, int len, int *x, int *y, int *comp);
sys/dev/stbi/stb_image.c
320
extern stbi_uc *stbi_jpeg_load (char const *filename, int *x, int *y, int *comp, int req_comp);
sys/dev/stbi/stb_image.c
3209
int stbi_png_info_from_memory(stbi_uc const *buffer, int len, int *x, int *y, int *comp)
sys/dev/stbi/stb_image.c
322
extern stbi_uc *stbi_jpeg_load_from_file (FILE *f, int *x, int *y, int *comp, int req_comp);
sys/dev/stbi/stb_image.c
3244
int stbi_bmp_test_memory (stbi_uc const *buffer, int len)
sys/dev/stbi/stb_image.c
329
extern int stbi_png_test_memory (stbi_uc const *buffer, int len);
sys/dev/stbi/stb_image.c
3291
static stbi_uc *bmp_load(stbi *s, int *x, int *y, int *comp, int req_comp)
sys/dev/stbi/stb_image.c
3295
stbi_uc pal[256][4];
sys/dev/stbi/stb_image.c
330
extern stbi_uc *stbi_png_load_from_memory (stbi_uc const *buffer, int len, int *x, int *y, int *comp, int req_comp);
sys/dev/stbi/stb_image.c
331
extern int stbi_png_info_from_memory (stbi_uc const *buffer, int len, int *x, int *y, int *comp);
sys/dev/stbi/stb_image.c
334
extern stbi_uc *stbi_png_load (char const *filename, int *x, int *y, int *comp, int req_comp);
sys/dev/stbi/stb_image.c
337
extern stbi_uc *stbi_png_load_from_file (FILE *f, int *x, int *y, int *comp, int req_comp);
sys/dev/stbi/stb_image.c
342
extern int stbi_bmp_test_memory (stbi_uc const *buffer, int len);
sys/dev/stbi/stb_image.c
344
extern stbi_uc *stbi_bmp_load (char const *filename, int *x, int *y, int *comp, int req_comp);
sys/dev/stbi/stb_image.c
345
extern stbi_uc *stbi_bmp_load_from_memory (stbi_uc const *buffer, int len, int *x, int *y, int *comp, int req_comp);
sys/dev/stbi/stb_image.c
3467
stbi_uc t;
sys/dev/stbi/stb_image.c
3469
stbi_uc *p1 = out + j *s->img_x*target;
sys/dev/stbi/stb_image.c
3470
stbi_uc *p2 = out + (s->img_y-1-j)*s->img_x*target;
sys/dev/stbi/stb_image.c
348
extern stbi_uc *stbi_bmp_load_from_file (FILE *f, int *x, int *y, int *comp, int req_comp);
sys/dev/stbi/stb_image.c
3489
stbi_uc *stbi_bmp_load (char const *filename, int *x, int *y, int *comp, int req_comp)
sys/dev/stbi/stb_image.c
3491
stbi_uc *data;
sys/dev/stbi/stb_image.c
3499
stbi_uc *stbi_bmp_load_from_file (FILE *f, int *x, int *y, int *comp, int req_comp)
sys/dev/stbi/stb_image.c
3507
stbi_uc *stbi_bmp_load_from_memory (stbi_uc const *buffer, int len, int *x, int *y, int *comp, int req_comp)
sys/dev/stbi/stb_image.c
352
extern int stbi_tga_test_memory (stbi_uc const *buffer, int len);
sys/dev/stbi/stb_image.c
354
extern stbi_uc *stbi_tga_load (char const *filename, int *x, int *y, int *comp, int req_comp);
sys/dev/stbi/stb_image.c
355
extern stbi_uc *stbi_tga_load_from_memory (stbi_uc const *buffer, int len, int *x, int *y, int *comp, int req_comp);
sys/dev/stbi/stb_image.c
3559
int stbi_tga_info_from_memory(stbi_uc const *buffer, int len, int *x, int *y, int *comp)
sys/dev/stbi/stb_image.c
356
extern int stbi_tga_info_from_memory (stbi_uc const *buffer, int len, int *x, int *y, int *comp);
sys/dev/stbi/stb_image.c
3598
int stbi_tga_test_memory (stbi_uc const *buffer, int len)
sys/dev/stbi/stb_image.c
360
extern stbi_uc *stbi_tga_load_from_file (FILE *f, int *x, int *y, int *comp, int req_comp);
sys/dev/stbi/stb_image.c
3605
static stbi_uc *tga_load(stbi *s, int *x, int *y, int *comp, int req_comp)
sys/dev/stbi/stb_image.c
364
extern int stbi_psd_test_memory (stbi_uc const *buffer, int len);
sys/dev/stbi/stb_image.c
366
extern stbi_uc *stbi_psd_load (char const *filename, int *x, int *y, int *comp, int req_comp);
sys/dev/stbi/stb_image.c
367
extern stbi_uc *stbi_psd_load_from_memory (stbi_uc const *buffer, int len, int *x, int *y, int *comp, int req_comp);
sys/dev/stbi/stb_image.c
370
extern stbi_uc *stbi_psd_load_from_file (FILE *f, int *x, int *y, int *comp, int req_comp);
sys/dev/stbi/stb_image.c
374
extern int stbi_hdr_test_memory (stbi_uc const *buffer, int len);
sys/dev/stbi/stb_image.c
377
extern float * stbi_hdr_load_from_memory (stbi_uc const *buffer, int len, int *x, int *y, int *comp, int req_comp);
sys/dev/stbi/stb_image.c
3827
stbi_uc *stbi_tga_load (char const *filename, int *x, int *y, int *comp, int req_comp)
sys/dev/stbi/stb_image.c
3829
stbi_uc *data;
sys/dev/stbi/stb_image.c
3837
stbi_uc *stbi_tga_load_from_file (FILE *f, int *x, int *y, int *comp, int req_comp)
sys/dev/stbi/stb_image.c
384
extern int stbi_pic_test_memory (stbi_uc const *buffer, int len);
sys/dev/stbi/stb_image.c
3845
stbi_uc *stbi_tga_load_from_memory (stbi_uc const *buffer, int len, int *x, int *y, int *comp, int req_comp)
sys/dev/stbi/stb_image.c
386
extern stbi_uc *stbi_pic_load (char const *filename, int *x, int *y, int *comp, int req_comp);
sys/dev/stbi/stb_image.c
387
extern stbi_uc *stbi_pic_load_from_memory (stbi_uc const *buffer, int len, int *x, int *y, int *comp, int req_comp);
sys/dev/stbi/stb_image.c
3874
int stbi_psd_test_memory(stbi_uc const *buffer, int len)
sys/dev/stbi/stb_image.c
3881
static stbi_uc *psd_load(stbi *s, int *x, int *y, int *comp, int req_comp)
sys/dev/stbi/stb_image.c
390
extern stbi_uc *stbi_pic_load_from_file (FILE *f, int *x, int *y, int *comp, int req_comp);
sys/dev/stbi/stb_image.c
394
extern int stbi_gif_test_memory (stbi_uc const *buffer, int len);
sys/dev/stbi/stb_image.c
396
extern stbi_uc *stbi_gif_load (char const *filename, int *x, int *y, int *comp, int req_comp);
sys/dev/stbi/stb_image.c
397
extern stbi_uc *stbi_gif_load_from_memory (stbi_uc const *buffer, int len, int *x, int *y, int *comp, int req_comp);
sys/dev/stbi/stb_image.c
398
extern int stbi_gif_info_from_memory (stbi_uc const *buffer, int len, int *x, int *y, int *comp);
sys/dev/stbi/stb_image.c
402
extern stbi_uc *stbi_gif_load_from_file (FILE *f, int *x, int *y, int *comp, int req_comp);
sys/dev/stbi/stb_image.c
4040
stbi_uc *stbi_psd_load(char const *filename, int *x, int *y, int *comp, int req_comp)
sys/dev/stbi/stb_image.c
4042
stbi_uc *data;
sys/dev/stbi/stb_image.c
4050
stbi_uc *stbi_psd_load_from_file(FILE *f, int *x, int *y, int *comp, int req_comp)
sys/dev/stbi/stb_image.c
4058
stbi_uc *stbi_psd_load_from_memory (stbi_uc const *buffer, int len, int *x, int *y, int *comp, int req_comp)
sys/dev/stbi/stb_image.c
4076
if (get8(s) != (stbi_uc)str[i])
sys/dev/stbi/stb_image.c
4100
stbi_uc size,type,channel;
sys/dev/stbi/stb_image.c
4103
static stbi_uc *pic_readval(stbi *s, int channel, stbi_uc *dest)
sys/dev/stbi/stb_image.c
4117
static void pic_copyval(int channel,stbi_uc *dest,const stbi_uc *src)
sys/dev/stbi/stb_image.c
4126
static stbi_uc *pic_load2(stbi *s,int width,int height,int *comp, stbi_uc *result)
sys/dev/stbi/stb_image.c
4159
stbi_uc *dest = result+y*width*4;
sys/dev/stbi/stb_image.c
4179
stbi_uc count,value[4];
sys/dev/stbi/stb_image.c
4203
stbi_uc value[4];
sys/dev/stbi/stb_image.c
4236
static stbi_uc *pic_load(stbi *s,int *px,int *py,int *comp,int req_comp)
sys/dev/stbi/stb_image.c
4238
stbi_uc *result;
sys/dev/stbi/stb_image.c
4269
int stbi_pic_test_memory(stbi_uc const *buffer, int len)
sys/dev/stbi/stb_image.c
4276
stbi_uc *stbi_pic_load_from_memory (stbi_uc const *buffer, int len, int *x, int *y, int *comp, int req_comp)
sys/dev/stbi/stb_image.c
4295
stbi_uc *stbi_pic_load(char const *filename,int *x, int *y, int *comp, int req_comp)
sys/dev/stbi/stb_image.c
4297
stbi_uc *result;
sys/dev/stbi/stb_image.c
4305
stbi_uc *stbi_pic_load_from_file(FILE *f,int *x, int *y, int *comp, int req_comp)
sys/dev/stbi/stb_image.c
4324
stbi_uc *out; // output buffer (always 4 components)
sys/dev/stbi/stb_image.c
4360
int stbi_gif_test_memory (stbi_uc const *buffer, int len)
sys/dev/stbi/stb_image.c
4651
stbi_uc *stbi_gif_load (char const *filename, int *x, int *y, int *comp, int req_comp)
sys/dev/stbi/stb_image.c
4661
stbi_uc *stbi_gif_load_from_file (FILE *f, int *x, int *y, int *comp, int req_comp)
sys/dev/stbi/stb_image.c
4679
stbi_uc *stbi_gif_load_from_memory (stbi_uc const *buffer, int len, int *x, int *y, int *comp, int req_comp)
sys/dev/stbi/stb_image.c
4733
int stbi_gif_info_from_memory(stbi_uc const *buffer, int len, int *x, int *y, int *comp)
sys/dev/stbi/stb_image.c
4757
int stbi_hdr_test_memory(stbi_uc const *buffer, int len)
sys/dev/stbi/stb_image.c
4799
static void hdr_convert(float *output, stbi_uc *input, int req_comp)
sys/dev/stbi/stb_image.c
4833
stbi_uc *scanline;
sys/dev/stbi/stb_image.c
4879
stbi_uc rgbe[4];
sys/dev/stbi/stb_image.c
4947
float *stbi_hdr_load_from_memory(stbi_uc const *buffer, int len, int *x, int *y, int *comp, int req_comp)
sys/dev/stbi/stb_image.c
4988
int stbi_info_from_memory(stbi_uc const *buffer, int len, int *x, int *y, int *comp)
sys/dev/stbi/stb_image.c
503
extern int stbi_jpeg_test_memory (stbi_uc const *buffer, int len);
sys/dev/stbi/stb_image.c
504
extern stbi_uc *stbi_jpeg_load_from_memory(stbi_uc const *buffer, int len, int *x, int *y, int *comp, int req_comp);
sys/dev/stbi/stb_image.c
505
extern int stbi_jpeg_info_from_memory(stbi_uc const *buffer, int len, int *x, int *y, int *comp);
sys/dev/stbi/stb_image.c
508
extern stbi_uc *stbi_jpeg_load (char const *filename, int *x, int *y, int *comp, int req_comp);
sys/dev/stbi/stb_image.c
510
extern stbi_uc *stbi_jpeg_load_from_file (FILE *f, int *x, int *y, int *comp, int req_comp);
sys/dev/stbi/stb_image.c
517
extern int stbi_png_test_memory (stbi_uc const *buffer, int len);
sys/dev/stbi/stb_image.c
518
extern stbi_uc *stbi_png_load_from_memory (stbi_uc const *buffer, int len, int *x, int *y, int *comp, int req_comp);
sys/dev/stbi/stb_image.c
519
extern int stbi_png_info_from_memory (stbi_uc const *buffer, int len, int *x, int *y, int *comp);
sys/dev/stbi/stb_image.c
522
extern stbi_uc *stbi_png_load (char const *filename, int *x, int *y, int *comp, int req_comp);
sys/dev/stbi/stb_image.c
525
extern stbi_uc *stbi_png_load_from_file (FILE *f, int *x, int *y, int *comp, int req_comp);
sys/dev/stbi/stb_image.c
530
extern int stbi_bmp_test_memory (stbi_uc const *buffer, int len);
sys/dev/stbi/stb_image.c
532
extern stbi_uc *stbi_bmp_load (char const *filename, int *x, int *y, int *comp, int req_comp);
sys/dev/stbi/stb_image.c
533
extern stbi_uc *stbi_bmp_load_from_memory (stbi_uc const *buffer, int len, int *x, int *y, int *comp, int req_comp);
sys/dev/stbi/stb_image.c
536
extern stbi_uc *stbi_bmp_load_from_file (FILE *f, int *x, int *y, int *comp, int req_comp);
sys/dev/stbi/stb_image.c
540
extern int stbi_tga_test_memory (stbi_uc const *buffer, int len);
sys/dev/stbi/stb_image.c
542
extern stbi_uc *stbi_tga_load (char const *filename, int *x, int *y, int *comp, int req_comp);
sys/dev/stbi/stb_image.c
543
extern stbi_uc *stbi_tga_load_from_memory (stbi_uc const *buffer, int len, int *x, int *y, int *comp, int req_comp);
sys/dev/stbi/stb_image.c
546
extern stbi_uc *stbi_tga_load_from_file (FILE *f, int *x, int *y, int *comp, int req_comp);
sys/dev/stbi/stb_image.c
550
extern int stbi_psd_test_memory (stbi_uc const *buffer, int len);
sys/dev/stbi/stb_image.c
552
extern stbi_uc *stbi_psd_load (char const *filename, int *x, int *y, int *comp, int req_comp);
sys/dev/stbi/stb_image.c
553
extern stbi_uc *stbi_psd_load_from_memory (stbi_uc const *buffer, int len, int *x, int *y, int *comp, int req_comp);
sys/dev/stbi/stb_image.c
556
extern stbi_uc *stbi_psd_load_from_file (FILE *f, int *x, int *y, int *comp, int req_comp);
sys/dev/stbi/stb_image.c
560
extern int stbi_hdr_test_memory (stbi_uc const *buffer, int len);
sys/dev/stbi/stb_image.c
563
extern float * stbi_hdr_load_from_memory (stbi_uc const *buffer, int len, int *x, int *y, int *comp, int req_comp);
sys/dev/stbi/stb_image.c
570
extern int stbi_pic_test_memory (stbi_uc const *buffer, int len);
sys/dev/stbi/stb_image.c
572
extern stbi_uc *stbi_pic_load (char const *filename, int *x, int *y, int *comp, int req_comp);
sys/dev/stbi/stb_image.c
573
extern stbi_uc *stbi_pic_load_from_memory (stbi_uc const *buffer, int len, int *x, int *y, int *comp, int req_comp);
sys/dev/stbi/stb_image.c
576
extern stbi_uc *stbi_pic_load_from_file (FILE *f, int *x, int *y, int *comp, int req_comp);
sys/dev/stbi/stb_image.c
580
extern int stbi_gif_test_memory (stbi_uc const *buffer, int len);
sys/dev/stbi/stb_image.c
582
extern stbi_uc *stbi_gif_load (char const *filename, int *x, int *y, int *comp, int req_comp);
sys/dev/stbi/stb_image.c
583
extern stbi_uc *stbi_gif_load_from_memory (stbi_uc const *buffer, int len, int *x, int *y, int *comp, int req_comp);
sys/dev/stbi/stb_image.c
584
extern int stbi_gif_info_from_memory (stbi_uc const *buffer, int len, int *x, int *y, int *comp);
sys/dev/stbi/stb_image.c
588
extern stbi_uc *stbi_gif_load_from_file (FILE *f, int *x, int *y, int *comp, int req_comp);
sys/dev/stbi/stb_image.c
649
static float *ldr_to_hdr(stbi_uc *data, int x, int y, int comp);
sys/dev/stbi/stb_image.c
650
static stbi_uc *hdr_to_ldr(float *data, int x, int y, int comp);
sys/dev/stbi/stb_image.c
691
unsigned char *stbi_load_from_memory(stbi_uc const *buffer, int len, int *x, int *y, int *comp, int req_comp)
sys/dev/stbi/stb_image.c
744
float *stbi_loadf_from_memory(stbi_uc const *buffer, int len, int *x, int *y, int *comp, int req_comp)
sys/dev/stbi/stb_image.c
746
stbi_uc *data;
sys/dev/stbi/stb_image.c
762
int stbi_is_hdr_from_memory(stbi_uc const *buffer, int len)
sys/dev/stbi/stb_image.c
918
static int getn(stbi *s, stbi_uc *buffer, int n)