Lines Matching defs:stbiw__sbn
816 #define stbiw__sbn(a) stbiw__sbraw(a)[1]
818 #define stbiw__sbneedgrow(a,n) ((a)==0 || stbiw__sbn(a)+n >= stbiw__sbm(a))
822 #define stbiw__sbpush(a, v) (stbiw__sbmaybegrow(a,1), (a)[stbiw__sbn(a)++] = (v))
823 #define stbiw__sbcount(a) ((a) ? stbiw__sbn(a) : 0)
935 if (hash_table[h] && stbiw__sbn(hash_table[h]) == 2*quality) {
937 stbiw__sbn(hash_table[h]) = quality;
985 if (stbiw__sbn(out) > data_len + 2 + ((data_len+32766)/32767)*5) {
986 stbiw__sbn(out) = 2; // truncate to DEFLATE 32K window and FLEVEL = 1
995 memcpy(out+stbiw__sbn(out), data+j, blocklen);
996 stbiw__sbn(out) += blocklen;
1017 *out_len = stbiw__sbn(out);