Lines Matching refs:extract
24 static unsigned int extract(char *s, int start, int length);
2093 p += extract (cp, i, 2); in btoe()
2097 strncat (engout, &Wp[extract (cp, 0, 11)][0], 4); in btoe()
2099 strncat (engout, &Wp[extract (cp, 11, 11)][0], 4); in btoe()
2101 strncat (engout, &Wp[extract (cp, 22, 11)][0], 4); in btoe()
2103 strncat (engout, &Wp[extract (cp, 33, 11)][0], 4); in btoe()
2105 strncat (engout, &Wp[extract (cp, 44, 11)][0], 4); in btoe()
2107 strncat (engout, &Wp[extract (cp, 55, 11)][0], 4); in btoe()
2163 p += extract (b, i, 2); in etob()
2165 if ((p & 3) != extract (b, 64, 2)) in etob()
2196 out[i] = '!' + extract (cp, 6 * i, i >= 10 ? 4 : 6); in btoc()
2287 static unsigned int extract(char *s, int start, int length) in extract() function