Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 133 for fmin32 (0.18 sec)

  1. src/index/suffixarray/gen.go

    		if strings.HasSuffix(name, "_32") {
    			buf.WriteString(fix32.Replace(fn))
    		}
    		if strings.HasSuffix(name, "_8_32") {
    			// x_8_32 -> x_8_64 done above
    			fn = fix8_32.Replace(stripByteOnly(fn))
    			buf.WriteString(fn)
    			buf.WriteString(fix32.Replace(fn))
    		}
    	}
    
    	if err := os.WriteFile("sais2.go", buf.Bytes(), 0666); err != nil {
    		log.Fatal(err)
    	}
    }
    
    var fix32 = strings.NewReplacer(
    	"32", "64",
    	"int32", "int64",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 1.9K bytes
    - Viewed (0)
  2. platforms/native/platform-native/src/integTest/groovy/org/gradle/nativeplatform/LibraryBinariesIntegrationTest.groovy

                void DLL_FUNC helloShared() {
                    std::cout << "Hello shared";
                }
            """
    
            and:
            file("src/helloShared/headers/helloshared.h") << """
                #ifdef _WIN32
                #define DLL_FUNC __declspec(dllexport)
                #else
                #define DLL_FUNC
                #endif
    
                void DLL_FUNC helloShared();
            """
    
            and:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  3. platforms/software/build-init/src/main/resources/org/gradle/buildinit/tasks/templates/cpplibrary/hello.h.template

    ${fileComment.multilineComment}
    #ifndef ${namespace.groovyString.toUpperCase()}_H
    #define ${namespace.groovyString.toUpperCase()}_H
    
    #ifdef _WIN32
    #define ${namespace.groovyString.toUpperCase()}_EXPORT_FUNC __declspec(dllexport)
    #else
    #define ${namespace.groovyString.toUpperCase()}_EXPORT_FUNC
    #endif
    
    #include <string>
    
    namespace ${namespace.groovyString} {
        class Greeter {
            public:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 26 19:39:09 UTC 2023
    - 497 bytes
    - Viewed (0)
  4. test/fixedbugs/issue28688.go

    import (
    	"fmt"
    )
    
    // When using soft-float, OMUL might be rewritten to function
    // call so we should ensure it was evaluated first. Stack frame
    // setup for "test" function call should happen after call to runtime.fmul32
    
    var x int32 = 1
    
    func main() {
    	var y float32 = 1.0
    	test(x, y*y)
    }
    
    //go:noinline
    func test(id int32, a float32) {
    
    	if id != x {
    		fmt.Printf("got: %d, want: %d\n", id, x)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 03 16:14:24 UTC 2021
    - 622 bytes
    - Viewed (0)
  5. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/app/PlatformDetectingTestApp.groovy

    int main () {
        ${outputPlatform()}
    
        outputLibraryPlatform();
    }
    """)
        }
    
        @Override
        SourceFile getLibraryHeader() {
            sourceFile("headers", "hello.h", """
    #ifdef _WIN32
    #define DLL_FUNC __declspec(dllexport)
    #else
    #define DLL_FUNC
    #endif
    
    void DLL_FUNC outputLibraryPlatform();
            """)
        }
    
    
        List<SourceFile> librarySources = [
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2K bytes
    - Viewed (0)
  6. schema/field_test.go

    		{Name: "INT16", DBName: "fint16", BindNames: []string{"INT16"}, DataType: schema.Int, Creatable: true, Updatable: true, Readable: true, Size: 16, Tag: `gorm:"column:fint16"`},
    		{Name: "INT32", DBName: "fint32", BindNames: []string{"INT32"}, DataType: schema.Int, Creatable: true, Updatable: true, Readable: true, Size: 32, Tag: `gorm:"column:fint32"`},
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Sat Feb 19 09:02:53 UTC 2022
    - 12.7K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/native-binaries/flavors/groovy/src/hello/headers/hello.h

    #if defined(_WIN32) && defined(DLL_EXPORT)
    #define LIB_FUNC __declspec(dllexport)
    #else
    #define LIB_FUNC
    #endif
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 136 bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/native-binaries/multi-project/groovy/lib/src/main/headers/hello.h

    #if defined(_WIN32) && defined(DLL_EXPORT)
    #define LIB_FUNC __declspec(dllexport)
    #else
    #define LIB_FUNC
    #endif
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 136 bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/native-binaries/variants/groovy/src/hello/headers/hello.h

    #if defined(_WIN32) && defined(DLL_EXPORT)
    #define LIB_FUNC __declspec(dllexport)
    #else
    #define LIB_FUNC
    #endif
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 136 bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/native-binaries/visual-studio/groovy/src/hello/headers/hello.h

    #if defined(_WIN32) && defined(DLL_EXPORT)
    #define LIB_FUNC __declspec(dllexport)
    #else
    #define LIB_FUNC
    #endif
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 136 bytes
    - Viewed (0)
Back to top