Searched refs:right (Results 26 - 33 of 33) sorted by relevance

12

/gem5/ext/googletest/googletest/include/gtest/internal/
H A Dgtest-internal.h175 // Returns the optimal edits to go from 'left' to 'right'.
182 const std::vector<size_t>& left, const std::vector<size_t>& right);
187 const std::vector<std::string>& right);
191 const std::vector<std::string>& right,
196 // Calculate the diff between 'left' and 'right' and return it in unified diff
199 // in left + right.
201 const std::string& right,
540 // If *pstr starts with the given prefix, modifies *pstr to be right
/gem5/ext/googletest/googletest/src/
H A Dgtest.cc1029 const std::vector<size_t>& right) {
1031 left.size() + 1, std::vector<double>(right.size() + 1));
1033 left.size() + 1, std::vector<EditType>(right.size() + 1));
1035 // Populate for empty right.
1047 for (size_t r_i = 0; r_i < right.size(); ++r_i) {
1048 if (left[l_i] == right[r_i]) {
1075 for (size_t l_i = left.size(), r_i = right.size(); l_i > 0 || r_i > 0;) {
1106 const std::vector<std::string>& right) {
1113 for (size_t i = 0; i < right.size(); ++i) {
1114 right_ids.push_back(intern_table.GetId(right[
1028 CalculateOptimalEdits(const std::vector<size_t>& left, const std::vector<size_t>& right) argument
1104 CalculateOptimalEdits( const std::vector<std::string>& left, const std::vector<std::string>& right) argument
1203 CreateUnifiedDiff(const std::vector<std::string>& left, const std::vector<std::string>& right, size_t context) argument
[all...]
/gem5/ext/pybind11/tests/
H A Dconftest.py171 def pytest_assertrepr_compare(op, left, right):
/gem5/ext/systemc/src/sysc/datatypes/int/
H A Dsc_nbutils.cpp234 // right justified bit value.
249 int src_i; // Index in src_p now accessing (left to right).
251 int word_i; // Bit within word now accessing (left to right).
286 // We stride right to left through the source in BITS_PER_DIGIT chunks.
287 // Each of those chunks is processed from left to right a bit at a time.
369 // right justified bit value.
384 int src_i; // Index in src_p now accessing (left to right).
386 int word_i; // Bit within word now accessing (left to right).
421 // We stride right to left through the source in BITS_PER_DIGIT chunks.
422 // Each of those chunks is processed from left to right
[all...]
/gem5/src/systemc/dt/int/
H A Dsc_nbutils.cc247 // right justified bit value.
263 int src_i; // Index in src_p now accessing (left to right).
265 int word_i; // Bit within word now accessing (left to right).
299 // We stride right to left through the source in BITS_PER_DIGIT chunks.
300 // Each of those chunks is processed from left to right a bit at a time.
376 // right justified bit value.
392 int src_i; // Index in src_p now accessing (left to right).
394 int word_i; // Bit within word now accessing (left to right).
426 // We stride right to left through the source in BITS_PER_DIGIT chunks.
427 // Each of those chunks is processed from left to right
[all...]
/gem5/configs/common/cores/arm/
H A DHPI.py116 def bin(op, left, right):
121 ret.right = right(env)
498 ('right', un('SignExtend32To64', int_reg(src(3)))),
501 bin('SLessThan', ref('right'), literal(0)))),
505 bin('UDiv', un('Abs', ref('right')),
514 if_expr(bin('Equal', ref('right'), literal(0)),
521 ('right', un('SignExtend32To64', int_reg(src(1)))),
524 bin('SLessThan', ref('right'), literal(0)))),
528 bin('UDiv', un('Abs', ref('right')),
[all...]
/gem5/ext/googletest/googletest/test/
H A Dgtest_unittest.cc3480 const char* right; member in struct:__anon65::Case
3512 CharsToIndices(c->right))))
3513 << "Left <" << c->left << "> Right <" << c->right << "> Edits <"
3515 CharsToIndices(c->left), CharsToIndices(c->right))) << ">";
3517 CharsToLines(c->right)))
3518 << "Left <" << c->left << "> Right <" << c->right << "> Diff <"
3519 << CreateUnifiedDiff(CharsToLines(c->left), CharsToLines(c->right))
3578 const std::string right(
3581 EqFailure("left", "right", left, right, fals
[all...]
/gem5/ext/googletest/googlemock/include/gmock/
H A Dgmock-matchers.h2759 typename RhsStlContainer::const_iterator right = rhs_.begin(); local
2760 for (size_t i = 0; i != actual_size; ++i, ++left, ++right) {
2761 const InnerMatcherArg value_pair(*left, *right);
2770 UniversalPrint(*right, listener->stream());

Completed in 72 milliseconds

12