HomeSort by relevance Sort by last modified time
    Searched refs:matchmap (Results 1 - 2 of 2) sorted by null

  /external/syslinux/com32/lib/
strspn.c 26 unsigned long matchmap[((1 << CHAR_BIT) + LONG_BIT - 1) / LONG_BIT]; local
30 memset(matchmap, 0, sizeof matchmap);
32 set_bit(matchmap, (unsigned char)*map++);
36 set_bit(matchmap, 0);
39 while (test_bit(matchmap, (unsigned char)*s++) ^ parity)
vsscanf.c 72 unsigned long matchmap[((1 << CHAR_BIT) + (LONG_BIT - 1)) / LONG_BIT]; local
279 memset(matchmap, 0, sizeof matchmap);
301 set_bit((unsigned char)ch, matchmap);
313 set_bit((unsigned char)ch, matchmap);
319 set_bit((unsigned char)'-', matchmap); /* - was last character */
324 set_bit(i, matchmap);
332 && test_bit((unsigned char)*q, matchmap) ^ matchinv) {

Completed in 90 milliseconds