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

  /external/bison/lib/
rawmemchr.c 36 longword repeated_c; local
56 repeated_c has c in every byte. */
58 repeated_c = c | (c << 8);
59 repeated_c |= repeated_c << 16;
63 repeated_c |= repeated_c << 31 << 1;
71 repeated_c |= repeated_c << i;
79 c. We first use an xor with repeated_c. This reduces the tas
    [all...]
memchr.c 71 longword repeated_c; local
91 repeated_c has c in every byte. */
93 repeated_c = c | (c << 8);
94 repeated_c |= repeated_c << 16;
98 repeated_c |= repeated_c << 31 << 1;
106 repeated_c |= repeated_c << i;
114 with repeated_c. This reduces the task to testing whether *any of th
    [all...]
strchrnul.c 36 longword repeated_c; local
58 repeated_c has c in every byte. */
60 repeated_c = c | (c << 8);
61 repeated_c |= repeated_c << 16;
65 repeated_c |= repeated_c << 31 << 1;
73 repeated_c |= repeated_c << i;
81 c. We first use an xor with repeated_c. This reduces the tas
    [all...]

Completed in 504 milliseconds