Lines Matching defs:value
152 // The return value from an image loader is an 'unsigned char *' which points
174 // If image loading fails for any reason, the return value will be NULL,
200 // dimensions set to a larger value than the configurable STBI_MAX_DIMENSIONS,
2046 // build a table that decodes both magnitude and value of small ACs in
2094 // decode a jpeg huffman value from the bitstream
2190 // given a value that's at position X in the zigzag stream,
2413 // take a -128..127 value and stbi__clamp it and convert to 0..255
2916 // marker, return 0xff, which is never a valid marker value
3557 // insert the previous pixel value (from t1).
3597 // insert the previous pixel value (from t1).
3622 // "previous" value for next iter
4102 stbi__uint16 value[STBI__ZNSYMS];
4155 z->value[c] = (stbi__uint16) i;
4237 return z->value[b];
4914 // already got 255 as the alpha value in the output
4939 // already got 65535 as the alpha value in the output
5391 // extract an arbitrarily-aligned N-bit value (N=bits)
5850 // read 16bit value and convert to 24bit RGB
6245 // where each channel consists of an 8-bit (or 16-bit) value for each pixel in the image.
6442 stbi_uc count,value[4];
6450 if (!stbi__readval(s,packet->channel,value)) return 0;
6453 stbi__copyval(packet->channel,dest,value);
6466 stbi_uc value[4];
6475 if (!stbi__readval(s,packet->channel,value))
6479 stbi__copyval(packet->channel,dest,value);
7172 unsigned char count, value;
7271 value = stbi__get8(s);
7275 scanline[i++ * 4 + k] = value;
7574 int value = 0;
7577 value = value*10 + (*c - '0');
7579 if((value > 214748364) || (value == 214748364 && *c > '7'))
7583 return value;
7620 maxv = stbi__pnm_getinteger(s, &c); // read max value
7622 return stbi__err("max value > 65535", "PPM image supports only 8-bit and 16-bit images");
7811 2.06 (2015-04-19) fix bug where PSD returns wrong '*comp' value
7929 0.96 fix detection of invalid v value - particleman@mollyrocket forum