Searched refs:repeated_c (Results 1 - 8 of 8) sorted by relevance

/netbsd-current/external/gpl3/gdb.old/dist/gnulib/import/
H A Drawmemchr.c36 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
[all...]
H A Dmemchr.c71 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
[all...]
H A Dmemrchr.c58 longword repeated_c; local
78 repeated_c has c in every byte. */
80 repeated_c = c | (c << 8);
81 repeated_c |= repeated_c << 16;
85 repeated_c |= repeated_c << 31 << 1;
93 repeated_c |= repeated_c << i;
101 with repeated_c
[all...]
H A Dstrchrnul.c36 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
[all...]
/netbsd-current/external/gpl3/gdb/dist/gnulib/import/
H A Dmemchr.c71 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
[all...]
H A Dmemrchr.c58 longword repeated_c; local
78 repeated_c has c in every byte. */
80 repeated_c = c | (c << 8);
81 repeated_c |= repeated_c << 16;
85 repeated_c |= repeated_c << 31 << 1;
93 repeated_c |= repeated_c << i;
101 with repeated_c
[all...]
H A Dstrchrnul.c36 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
[all...]
H A Drawmemchr.c56 repeated_c has c in every byte. */
58 longword repeated_c = repeated_one * c; local
64 c. We first use an xor with repeated_c. This reduces the task
104 longword longword1 = *longword_ptr ^ repeated_c;

Completed in 230 milliseconds