Searched refs:end_i (Results 1 - 9 of 9) sorted by relevance

/gem5/ext/systemc/src/sysc/datatypes/int/
H A Dsc_int_base.cpp156 int end_i; // Highest order word in dst_p to process. local
162 end_i = high_i / BITS_PER_DIGIT;
169 switch ( end_i - dst_i )
202 int end_i; // Highest order word in dst_p to process. local
212 end_i = high_i / BITS_PER_DIGIT;
224 switch ( end_i - dst_i )
614 int end_i; // Highest order word in dst_p to process. local
620 end_i = (low_i + (m_len-1)) / BITS_PER_DIGIT;
625 for ( ; dst_i <= end_i; dst_i++ ) dst_p[dst_i] = 0;
647 int end_i; // Highes local
[all...]
H A Dsc_uint_base.cpp155 int end_i; // Highest order word in dst_p to process. local
161 end_i = (low_i + (m_left-m_right)) / BITS_PER_DIGIT;
167 for ( ; dst_i <= end_i; dst_i++ ) dst_p[dst_i] = 0;
175 int end_i; // Highest order word in dst_p to process. local
185 end_i = high_i / BITS_PER_DIGIT;
197 switch ( end_i - dst_i )
586 int end_i; // Highest order word in dst_p to process. local
592 end_i = (low_i + (m_len-1)) / BITS_PER_DIGIT;
600 for ( ; dst_i <= end_i; dst_i++ ) dst_p[dst_i] = 0;
622 int end_i; // Highes local
[all...]
H A Dsc_unsigned.cpp148 int end_i; // Index of high order word to set. local
156 end_i = (low_i + nbits - 2) / BITS_PER_DIGIT;
169 for ( ; dst_i <= end_i; dst_i++ ) dst_p[dst_i] = 0;
178 int end_i; // Index of high order word to set. local
195 end_i = high_i / BITS_PER_DIGIT;
209 if ( dst_i == end_i )
221 for ( src_i = 0; dst_i < end_i; dst_i++, src_i++ )
241 for ( src_i = 1, dst_i++; dst_i < end_i; dst_i++, src_i++ )
262 if ( dst_i == end_i )
277 for ( src_i = 0; dst_i < end_i; dst_
[all...]
H A Dsc_signed.cpp144 int end_i; // Index of high order word to set. local
152 end_i = (low_i + nbits - 1) / BITS_PER_DIGIT;
162 for ( ; dst_i <= end_i; dst_i++ ) dst_p[dst_i] = 0;
171 int end_i; // Index of high order word to set. local
187 end_i = high_i / BITS_PER_DIGIT;
200 if ( dst_i == end_i )
212 for ( src_i = 0; dst_i < end_i; dst_i++, src_i++ )
232 for ( src_i = 1, dst_i++; dst_i < end_i; dst_i++, src_i++ )
254 if ( dst_i == end_i )
269 for ( src_i = 0; dst_i < end_i; dst_
[all...]
/gem5/src/systemc/dt/int/
H A Dsc_int_base.cc163 int end_i; // Highest order word in dst_p to process. local
169 end_i = high_i / BITS_PER_DIGIT;
174 switch (end_i - dst_i) {
203 int end_i; // Highest order word in dst_p to process. local
213 end_i = high_i / BITS_PER_DIGIT;
223 switch (end_i - dst_i) {
577 int end_i; // Highest order word in dst_p to process. local
583 end_i = (low_i + (m_len - 1)) / BITS_PER_DIGIT;
588 for (; dst_i <= end_i; dst_i++)
612 int end_i; // Highes local
[all...]
H A Dsc_uint_base.cc166 int end_i; // Highest order word in dst_p to process. local
172 end_i = (low_i + (m_left-m_right)) / BITS_PER_DIGIT;
178 for (; dst_i <= end_i; dst_i++)
188 int end_i; // Highest order word in dst_p to process. local
198 end_i = high_i / BITS_PER_DIGIT;
208 switch (end_i - dst_i) {
574 int end_i; // Highest order word in dst_p to process. local
580 end_i = (low_i + (m_len - 1)) / BITS_PER_DIGIT;
587 for (; dst_i <= end_i; dst_i++)
611 int end_i; // Highes local
[all...]
H A Dsc_unsigned.cc169 int end_i; // Index of high order word to set. local
176 end_i = (low_i + nbits - 2) / BITS_PER_DIGIT;
188 for (; dst_i <= end_i; dst_i++)
199 int end_i; // Index of high order word to set. local
214 end_i = high_i / BITS_PER_DIGIT;
223 if (dst_i == end_i) {
230 for (src_i = 0; dst_i < end_i; dst_i++, src_i++) {
245 for (src_i = 1, dst_i++; dst_i < end_i; dst_i++, src_i++) {
262 if (dst_i == end_i) {
273 for (src_i = 0; dst_i < end_i; dst_
[all...]
H A Dsc_signed.cc161 int end_i; // Index of high order word to set. local
167 end_i = (low_i + nbits - 1) / BITS_PER_DIGIT;
175 for (; dst_i <= end_i; dst_i++)
186 int end_i; // Index of high order word to set. local
199 end_i = high_i / BITS_PER_DIGIT;
208 if (dst_i == end_i) {
215 for (src_i = 0; dst_i < end_i; dst_i++, src_i++) {
230 for (src_i = 1, dst_i++; dst_i < end_i; dst_i++, src_i++) {
247 if (dst_i == end_i) {
257 for (src_i = 0; dst_i < end_i; dst_
[all...]
/gem5/src/sim/
H A Dcxx_manager.cc115 auto end_i = param_values.end(); local
118 while (i != end_i) {
122 if (i != end_i)

Completed in 32 milliseconds