Searched refs:result (Results 426 - 446 of 446) sorted by relevance

<<1112131415161718

/gem5/src/cpu/kvm/
H A Dx86_cpu.cc1221 // The CPU might have been suspended as a result of the INIT
1407 CpuidResult &result)
1413 e.eax = (uint32_t)result.rax;
1414 e.ebx = (uint32_t)result.rbx;
1415 e.ecx = (uint32_t)result.rcx;
1416 e.edx = (uint32_t)result.rdx;
1406 makeKvmCpuid(uint32_t function, uint32_t index, CpuidResult &result) argument
/gem5/ext/mcpat/
H A DxmlParser.cc1072 NextToken result; local
1076 result.pClr = NULL; // prevent warning
1086 result.pStr = &pXML->lpXML[indexStart];
1092 if (xstrncmp(ctag->lpszOpen, result.pStr, ctag->openTagLen) == 0) {
1093 result.pClr = ctag;
1096 return result;
1227 result.pStr = NULL;
1230 return result;
/gem5/ext/systemc/src/sysc/utils/
H A Dsc_report_handler.cpp660 int result = verbosity_level; local
662 return result;
/gem5/ext/googletest/googletest/include/gtest/
H A Dgtest-printers.h970 Strings result; local
972 TersePrintPrefixToStrings(value, &result);
973 return result;
H A Dgtest.h329 // Stores result of the assertion predicate.
338 // Makes a successful assertion result.
341 // Makes a failed assertion result.
344 // Makes a failed assertion result with the given failure message.
517 // The result of a single Test. This includes a list of
553 // Returns the i-th test part result among all the results. i can range
601 // Adds a test part result to the list.
639 // Test result
704 // Returns the result of the test.
705 const TestResult* result() cons function in class:testing::TestInfo
[all...]
/gem5/ext/googletest/googlemock/include/gmock/
H A Dgmock-matchers.h77 // bool InterestedInWhy(bool result) const;
79 // result is 'result'.
101 // the match result. A matcher's MatchAndExplain() method can use
146 // result to 'listener' if necessary (see the next paragraph), in
153 // the match result *if and only if* they can provide additional
162 // what the actual element count is, regardless of the match result,
183 // A match result listener that stores the explanation in a string.
227 // A match result listener that ignores the explanation.
236 // A match result listene
2374 ResultType result = local
2432 const bool result = size_matcher_.MatchAndExplain(size, &size_listener); local
2492 const bool result = local
[all...]
H A Dgmock-spec-builders.h146 // the action's result. The call description string will be used in
155 // the action's result.
210 // Returns the result of invoking this mock function with the given
213 // result.
810 // Adds unsatisfied pre-requisites of this expectation to 'result'.
811 void FindUnsatisfiedPrerequisites(ExpectationSet* result) const
1104 // Describes the result of matching the arguments against this
1366 // Prints the held value as an action's result to os.
1379 // Prints the held value as an action's result to os.
1387 // result i
[all...]
/gem5/src/dev/arm/
H A Dgic_v3_its.cc242 auto result = translateLPI(yield, device_id, event_id); local
244 uint32_t intid = result.first;
245 Gicv3Redistributor *redist = result.second;
/gem5/src/systemc/ext/dt/bit/
H A Dsc_bit_proxies.hh2242 sc_digit result = 0; local
2248 result |= (m_obj[n].value() & SC_DIGIT_ONE) << k++;
2254 result |= (m_obj[n].value() & SC_DIGIT_ONE) << k++;
2257 return result;
2293 sc_digit result = 0; local
2299 result |= ((m_obj[n].value() & SC_DIGIT_TWO) >> 1) << k++;
2305 result |= ((m_obj[n].value() & SC_DIGIT_TWO) >> 1) << k++;
2308 return result;
/gem5/src/base/stats/
H A Dtext.cc551 print.value = info.result();
578 print.vec = info.result();
/gem5/ext/pybind11/include/pybind11/
H A Deigen.h281 int result = detail::npy_api::get().PyArray_CopyInto_(ref.ptr(), buf.ptr()); local
283 if (result < 0) { // Copy failed!
/gem5/ext/systemc/src/sysc/qt/md/
H A Dksr1.s193 # The helper funtion will return here. Any result it has placed in
/gem5/src/systemc/ext/dt/int/
H A Dsc_signed.hh50 result type of a binary operator on unsigned and signed arguments
52 result type be signed. The new semantics is required by the VSIA
735 bool result; // True if non-zero. local
739 result = true;
742 result = false;
744 return result;
1282 In the new semantics, the result is u if both operands are u; the
1283 result is s otherwise. The only exception is subtraction. The result
H A Dsc_unsigned.hh54 result type of a binary operator on unsigned and signed arguments
56 result type be signed. The new semantics is required by the VSIA
642 bool result; // True if non-zero. local
647 result = true;
650 result = false;
652 return result;
1187 In the new semantics, the result is u if both operands are u; the
1188 result is s otherwise. The only exception is subtraction. The result
/gem5/ext/systemc/src/sysc/datatypes/bit/
H A Dsc_bit_proxies.h2531 sc_digit result = 0; local
2537 result |= (m_obj[n].value() & SC_DIGIT_ONE) << k ++;
2543 result |= (m_obj[n].value() & SC_DIGIT_ONE) << k ++;
2546 return result;
2584 sc_digit result = 0; local
2590 result |= ((m_obj[n].value() & SC_DIGIT_TWO) >> 1) << k ++;
2596 result |= ((m_obj[n].value() & SC_DIGIT_TWO) >> 1) << k ++;
2599 return result;
/gem5/ext/googletest/googlemock/test/
H A Dgmock-actions_test.cc557 const std::vector<int>& result = *(a.Perform(make_tuple()).v); local
558 EXPECT_THAT(result, ::testing::ElementsAre(0, 1, 2, 3, 4));
H A Dgmock-generated-actions_test.cc674 return_type result = Dummy(true); local
675 return result;
/gem5/src/arch/
H A Disa_parser.py1268 def __internalConcatAttrs(self, attr_name, filter, result):
1271 result += getattr(op_desc, attr_name)
1272 return result
/gem5/ext/systemc/src/sysc/datatypes/int/
H A Dsc_signed.h50 result type of a binary operator on unsigned and signed arguments
52 result type be signed. The new semantics is required by the VSIA
787 bool result; // True if non-zero. local
792 result = true;
797 result = false;
799 return result;
1386 In the new semantics, the result is u if both operands are u; the
1387 result is s otherwise. The only exception is subtraction. The result
H A Dsc_unsigned.h54 result type of a binary operator on unsigned and signed arguments
56 result type be signed. The new semantics is required by the VSIA
693 bool result; // True if non-zero. local
698 result = true;
703 result = false;
705 return result;
1287 In the new semantics, the result is u if both operands are u; the
1288 result is s otherwise. The only exception is subtraction. The result
/gem5/ext/googletest/googletest/test/
H A Dgtest_unittest.cc585 // Tests that encoding an invalid code-point generates the expected result.
660 // Tests that encoding an invalid code-point generates the expected result.
674 // generates the expected result.
1954 ExpectNonFatalFailureRecordingPropertyWithReservedKey(*test_info->result(),
2545 // Tests that IsSubstring() returns the correct result when the input
2556 // Tests that IsSubstring() returns the correct result when the input
2578 // Tests that IsSubstring returns the correct result when the input
2586 // Tests that IsSubstring returns the correct result when the input
2609 // Tests that IsNotSubstring() returns the correct result when the input
2616 // Tests that IsNotSubstring() returns the correct result whe
[all...]

Completed in 132 milliseconds

<<1112131415161718