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

/gem5/ext/systemc/src/sysc/datatypes/int/
H A Dsc_int_base.cpp155 int dst_i; // Word in dst_p now processing. local
160 dst_i = low_i / BITS_PER_DIGIT;
168 dst_p[dst_i] = (sc_digit)(dst_p[dst_i] & mask);
169 switch ( end_i - dst_i )
174 dst_i++;
175 dst_p[dst_i] = 0;
181 dst_i++;
182 dst_p[dst_i++] = 0;
183 dst_p[dst_i]
201 int dst_i; // Word in dst_p now processing. local
613 int dst_i; // Word in dst_p now processing. local
646 int dst_i; // Word in dst_p now processing. local
[all...]
H A Dsc_uint_base.cpp154 int dst_i; // Word in dst_p now processing. local
159 dst_i = low_i / BITS_PER_DIGIT;
164 dst_p[dst_i] = (sc_digit)((dst_p[dst_i] & mask));
166 dst_i++;
167 for ( ; dst_i <= end_i; dst_i++ ) dst_p[dst_i] = 0;
174 int dst_i; // Word in dst_p now processing. local
182 dst_i
585 int dst_i; // Word in dst_p now processing. local
621 int dst_i; // Word in dst_p now processing. local
[all...]
H A Dsc_unsigned.cpp147 int dst_i; // Index to next word to set in dst_p. local
155 dst_i = low_i / BITS_PER_DIGIT;
166 dst_p[dst_i] = ( dst_p[dst_i] & ~mask );
167 dst_i++;
169 for ( ; dst_i <= end_i; dst_i++ ) dst_p[dst_i] = 0;
177 int dst_i; // Index to next word to set in dst_p. local
193 dst_i
[all...]
H A Dsc_signed.cpp143 int dst_i; // Index to next word to set in dst_p. local
151 dst_i = low_i / BITS_PER_DIGIT;
159 dst_p[dst_i] = ( dst_p[dst_i] & ~mask );
160 dst_i++;
162 for ( ; dst_i <= end_i; dst_i++ ) dst_p[dst_i] = 0;
170 int dst_i; // Index to next word to set in dst_p. local
185 dst_i
[all...]
/gem5/src/systemc/dt/int/
H A Dsc_int_base.cc162 int dst_i; // Word in dst_p now processing. local
167 dst_i = low_i / BITS_PER_DIGIT;
173 dst_p[dst_i] = (sc_digit)(dst_p[dst_i] & mask);
174 switch (end_i - dst_i) {
177 dst_i++;
178 dst_p[dst_i] = 0;
183 dst_i++;
184 dst_p[dst_i++] = 0;
185 dst_p[dst_i]
202 int dst_i; // Word in dst_p now processing. local
576 int dst_i; // Word in dst_p now processing. local
611 int dst_i; // Word in dst_p now processing. local
[all...]
H A Dsc_uint_base.cc165 int dst_i; // Word in dst_p now processing. local
170 dst_i = low_i / BITS_PER_DIGIT;
175 dst_p[dst_i] = (sc_digit)((dst_p[dst_i] & mask));
177 dst_i++;
178 for (; dst_i <= end_i; dst_i++)
179 dst_p[dst_i] = 0;
187 int dst_i; // Word in dst_p now processing. local
195 dst_i
573 int dst_i; // Word in dst_p now processing. local
610 int dst_i; // Word in dst_p now processing. local
[all...]
H A Dsc_unsigned.cc168 int dst_i; // Index to next word to set in dst_p. local
175 dst_i = low_i / BITS_PER_DIGIT;
185 dst_p[dst_i] = (dst_p[dst_i] & ~mask);
186 dst_i++;
188 for (; dst_i <= end_i; dst_i++)
189 dst_p[dst_i] = 0;
198 int dst_i; // Index to next word to set in dst_p. local
212 dst_i
[all...]
H A Dsc_signed.cc160 int dst_i; // Index to next word to set in dst_p. local
166 dst_i = low_i / BITS_PER_DIGIT;
172 dst_p[dst_i] = (dst_p[dst_i] & ~mask);
173 dst_i++;
175 for (; dst_i <= end_i; dst_i++)
176 dst_p[dst_i] = 0;
185 int dst_i; // Index to next word to set in dst_p. local
197 dst_i
[all...]

Completed in 31 milliseconds