Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 133 for fmin32 (0.39 sec)

  1. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/toolchain/internal/gcc/metadata/GccMetadataProviderTest.groovy

    ignoring nonexistent directory "/usr/lib/gcc/x86_64-w64-mingw32/10-win32/../../../../x86_64-w64-mingw32/sys-include"
    #include "..." search starts here:
    #include <...> search starts here:
     /usr/lib/gcc/x86_64-w64-mingw32/10-win32/include
     /usr/lib/gcc/x86_64-w64-mingw32/10-win32/include-fixed
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 16 06:01:47 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb1/smb1/SmbNamedPipe.java

     * <code>WriteFile</code>, and <code>CloseFile</code> interface was
     * being used.
     * </td></tr>
     * </table>
     *
     * <p>See <a href="../../../pipes.html">Using jCIFS to Connect to Win32
     * Named Pipes</a> for a detailed description of how to use jCIFS with
     * Win32 Named Pipe server processes.
     *
     */
    
    public class SmbNamedPipe extends SmbFile {
    
        /**
         * The pipe should be opened read-only.
         */
    
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 21:10:40 UTC 2019
    - 7.3K bytes
    - Viewed (0)
  3. cluster/gce/windows/testonly/install-ssh.psm1

        net start ${service}
        Set-Service ${service} -StartupType Automatic
      }
    }
    
    # Installs open-ssh using the instructions in
    # https://github.com/PowerShell/Win32-OpenSSH/wiki/Install-Win32-OpenSSH.
    #
    # After installation run StartProcess-WriteSshKeys to fetch ssh keys from the
    # metadata server.
    function InstallAndStart-OpenSsh {
      if (-not (ShouldWrite-File $OPENSSH_ROOT)) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 09 05:09:18 UTC 2021
    - 11.6K bytes
    - Viewed (0)
  4. src/cmd/dist/sys_windows.go

    import (
    	"syscall"
    	"unsafe"
    )
    
    var (
    	modkernel32       = syscall.NewLazyDLL("kernel32.dll")
    	procGetSystemInfo = modkernel32.NewProc("GetSystemInfo")
    )
    
    // see https://learn.microsoft.com/en-us/windows/win32/api/sysinfoapi/ns-sysinfoapi-system_info
    type systeminfo struct {
    	wProcessorArchitecture      uint16
    	wReserved                   uint16
    	dwPageSize                  uint32
    	lpMinimumApplicationAddress uintptr
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 12 16:42:41 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  5. src/runtime/softfloat64.go

    	}
    
    	return q1*b + q0, (un21*b + un0 - q0*v) >> s
    }
    
    func fadd32(x, y uint32) uint32 {
    	return f64to32(fadd64(f32to64(x), f32to64(y)))
    }
    
    func fmul32(x, y uint32) uint32 {
    	return f64to32(fmul64(f32to64(x), f32to64(y)))
    }
    
    func fdiv32(x, y uint32) uint32 {
    	// TODO: are there double-rounding problems here? See issue 48807.
    	return f64to32(fdiv64(f32to64(x), f32to64(y)))
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 08 17:58:41 UTC 2021
    - 11.5K bytes
    - Viewed (0)
  6. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/app/CppMultiply.groovy

    class CppMultiply extends CppSourceFileElement implements MultiplyElement {
        final SourceFileElement header = ofFile(new SourceFile("headers", "multiply.h", """
    #ifdef _WIN32
    #define EXPORT_FUNC __declspec(dllexport)
    #else
    #define EXPORT_FUNC
    #endif
    
    class Multiply {
    public:
        int EXPORT_FUNC multiply(int a, int b);
    };
    """))
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  7. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/app/CppSum.groovy

        final SourceFileElement header
        final SourceFileElement source
    
        CppSum(String publicHeadersDir = "headers") {
            header = ofFile(new SourceFile(publicHeadersDir, "sum.h", """
    #ifdef _WIN32
    #define EXPORT_FUNC __declspec(dllexport)
    #else
    #define EXPORT_FUNC
    #endif
    
    class Sum {
    public:
        int EXPORT_FUNC sum(int a, int b);
    };
    """))
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  8. src/runtime/cgo/gcc_386.S

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    .file "gcc_386.S"
    
    /*
     * Windows still insists on underscore prefixes for C function names.
     */
    #if defined(_WIN32)
    #define EXT(s) _##s
    #else
    #define EXT(s) s
    #endif
    
    /*
     * void crosscall1(void (*fn)(void), void (*setg_gcc)(void*), void *g)
     *
     * Calling into the gc tool chain, where all registers are caller save.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Aug 12 03:56:58 UTC 2023
    - 959 bytes
    - Viewed (0)
  9. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/app/CppGreeter.groovy

        }
    
        SourceElement getSources() {
            return source
        }
    
        CppGreeter(String publicHeaderDir = "headers") {
            header = ofFile(new SourceFile(publicHeaderDir, "greeter.h", """
    #ifdef _WIN32
    #define EXPORT_FUNC __declspec(dllexport)
    #else
    #define EXPORT_FUNC
    #endif
    
    class Greeter {
    public:
        void EXPORT_FUNC sayHello();
    };
    """))
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2K bytes
    - Viewed (0)
  10. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/app/CppLoggerWithGreeterApi.groovy

    import static org.gradle.nativeplatform.fixtures.app.SourceFileElement.ofFile
    
    class CppLoggerWithGreeterApi extends CppSourceFileElement {
        final SourceFileElement header = ofFile(new SourceFile("headers", "logger.h", """
    #ifdef _WIN32
    #define EXPORT_FUNC __declspec(dllexport)
    #else
    #define EXPORT_FUNC
    #endif
    
    #ifdef __cplusplus
    extern "C" {
    #endif
    
    void sayGreeting();
    void logGreeting();
    
    #ifdef __cplusplus
    }
    #endif
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.3K bytes
    - Viewed (0)
Back to top