Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for MSVC (0.03 sec)

  1. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest-spi.h

    // catches that.
    //
    // For the same reason, we have to write
    //   if (::testing::internal::AlwaysTrue()) { statement; }
    // instead of
    //   GTEST_SUPPRESS_UNREACHABLE_CODE_WARNING_BELOW_(statement)
    // to avoid an MSVC warning on unreachable code.
    #define EXPECT_NONFATAL_FAILURE(statement, substr) \
      do {\
        ::testing::TestPartResultArray gtest_failures;\
        ::testing::internal::SingleFailureChecker gtest_checker(\
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  2. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest-message.h

    //   std::cout << foo;
    //
    // will print "1 != 2".
    //
    // Message is not intended to be inherited from.  In particular, its
    // destructor is not virtual.
    //
    // Note that stringstream behaves differently in gcc and in MSVC.  You
    // can stream a NULL char pointer to it in the former, but not in the
    // latter (it causes an access violation if you do).  The Message
    // class hides this difference by treating a NULL char pointer as
    // "(null)".
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 9K bytes
    - Viewed (0)
  3. src/runtime/sys_windows_amd64.s

    	// Floating point arguments are passed in the XMM
    	// registers. Set them here in case any of the arguments
    	// are floating point values. For details see
    	//	https://learn.microsoft.com/en-us/cpp/build/x64-calling-convention?view=msvc-170
    _4args:
    	MOVQ	24(SI), R9
    	MOVQ	R9, X3
    _3args:
    	MOVQ	16(SI), R8
    	MOVQ	R8, X2
    _2args:
    	MOVQ	8(SI), DX
    	MOVQ	DX, X1
    _1args:
    	MOVQ	0(SI), CX
    	MOVQ	CX, X0
    _0args:
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 19 07:24:08 UTC 2024
    - 8.4K bytes
    - Viewed (0)
Back to top