Home | History | Annotate | Download | only in engine

Lines Matching refs:st

21 void getB(IB *st, Hdr2 *usedtobeundef);
27 static void getID(IB *st, char str[4]) {
28 str[0] = gb(st);
29 str[1] = gb(st);
30 str[2] = gb(st);
31 str[3] = gb(st);
33 static void getH(IB *st, Hdr *header) {
34 getID (st, header->I);
35 header->S = gl(st);
37 static void readILBM(IB *st, Info *pic) {
43 getH (st, &header);
44 getID(st, header.I);
46 while (st->cur < st->end && i < 4) {
48 getH (st, &header);
51 int bitmapImageRepFromIFF(IB st, const unsigned char *ib, int il) {
53 st.ib = ib;
54 st.cur = 0;
55 st.end = il;
56 readILBM(&st,&pic);