Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for ParseInt32 (0.83 sec)

  1. src/encoding/asn1/asn1.go

    	}
    
    	// Shift up and down in order to sign extend the result.
    	ret <<= 64 - uint8(len(bytes))*8
    	ret >>= 64 - uint8(len(bytes))*8
    	return
    }
    
    // parseInt32 treats the given bytes as a big-endian, signed integer and returns
    // the result.
    func parseInt32(bytes []byte) (int32, error) {
    	if err := checkInteger(bytes); err != nil {
    		return 0, err
    	}
    	ret64, err := parseInt64(bytes)
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 19:04:28 UTC 2023
    - 31.8K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

    // false.
    // TODO(chandlerc): Find a better way to refactor flag and environment parsing
    // out of both gtest-port.cc and gtest.cc to avoid exporting this utility
    // function.
    bool ParseInt32(const Message& src_text, const char* str, Int32* value);
    
    // Parses a bool/Int32/string from the environment variable
    // corresponding to the given Google Test flag.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 67.2K bytes
    - Viewed (0)
  3. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

    // false.
    // TODO(chandlerc): Find a better way to refactor flag and environment parsing
    // out of both gtest-port.cc and gtest.cc to avoid exporting this utility
    // function.
    bool ParseInt32(const Message& src_text, const char* str, Int32* value);
    
    // Parses a bool/Int32/string from the environment variable
    // corresponding to the given Google Test flag.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 67.2K bytes
    - Viewed (0)
Back to top