Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 198 for Hi (0.05 sec)

  1. src/hash/maphash/maphash_runtime.go

    		return uint64(runtime_memhash(unsafe.Pointer(&buf[0]), uintptr(seed), uintptr(len)))
    	}
    	lo := runtime_memhash(unsafe.Pointer(&buf[0]), uintptr(seed), uintptr(len))
    	hi := runtime_memhash(unsafe.Pointer(&buf[0]), uintptr(seed>>32), uintptr(len))
    	return uint64(hi)<<32 | uint64(lo)
    }
    
    func rthashString(s string, state uint64) uint64 {
    	buf := unsafe.Slice(unsafe.StringData(s), len(s))
    	return rthash(buf, state)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 05 20:34:30 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  2. src/net/netip/export_test.go

    package netip
    
    import "unique"
    
    var (
    	Z0    = z0
    	Z4    = z4
    	Z6noz = z6noz
    )
    
    type Uint128 = uint128
    
    type AddrDetail = addrDetail
    
    func Mk128(hi, lo uint64) Uint128 {
    	return uint128{hi, lo}
    }
    
    func MkAddr(u Uint128, z unique.Handle[AddrDetail]) Addr {
    	return Addr{u, z}
    }
    
    func IPv4(a, b, c, d uint8) Addr { return AddrFrom4([4]byte{a, b, c, d}) }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 18:14:15 UTC 2024
    - 730 bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/unix/zptrace_mipsnn_linux.go

    //go:build linux && (mips || mips64)
    
    package unix
    
    import "unsafe"
    
    // PtraceRegsMips is the registers used by mips binaries.
    type PtraceRegsMips struct {
    	Regs     [32]uint64
    	Lo       uint64
    	Hi       uint64
    	Epc      uint64
    	Badvaddr uint64
    	Status   uint64
    	Cause    uint64
    }
    
    // PtraceGetRegsMips fetches the registers used by mips binaries.
    func PtraceGetRegsMips(pid int, regsout *PtraceRegsMips) error {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  4. src/testing/testing_windows.go

    	delta := a.now - b.now
    
    	if queryPerformanceFrequency == 0 {
    		queryPerformanceFrequency = windows.QueryPerformanceFrequency()
    	}
    	hi, lo := bits.Mul64(uint64(delta), uint64(time.Second)/uint64(time.Nanosecond))
    	quo, _ := bits.Div64(hi, lo, uint64(queryPerformanceFrequency))
    	return time.Duration(quo)
    }
    
    var queryPerformanceFrequency int64
    
    // highPrecisionTimeSince returns duration since a.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 22:55:25 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/unix/zptrace_mipsnnle_linux.go

    //go:build linux && (mipsle || mips64le)
    
    package unix
    
    import "unsafe"
    
    // PtraceRegsMipsle is the registers used by mipsle binaries.
    type PtraceRegsMipsle struct {
    	Regs     [32]uint64
    	Lo       uint64
    	Hi       uint64
    	Epc      uint64
    	Badvaddr uint64
    	Status   uint64
    	Cause    uint64
    }
    
    // PtraceGetRegsMipsle fetches the registers used by mipsle binaries.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  6. src/cmd/internal/obj/arm64/asm_arm64_test.go

    		},
    	}
    	for _, test := range tests {
    		hi, lo, err := splitImm24uScaled(test.v, test.shift)
    		switch {
    		case err == nil && test.wantErr:
    			t.Errorf("splitImm24uScaled(%v, %v) succeeded, want error", test.v, test.shift)
    		case err != nil && !test.wantErr:
    			t.Errorf("splitImm24uScaled(%v, %v) failed: %v", test.v, test.shift, err)
    		case !test.wantErr:
    			if got, want := hi, test.wantHi; got != want {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 02:46:11 UTC 2023
    - 7.8K bytes
    - Viewed (0)
  7. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/app/CppMainWithOptionalFeature.groovy

        }
    
        final SourceFile sourceFile = new SourceFile("cpp", "main.cpp", """
        #include <iostream>
        #include "greeter.h"
    
        int main(int argc, char** argv) {
        #ifdef WITH_FEATURE
            std::cout << "hi from main" << std::endl;
        #endif
            Greeter greeter;
            greeter.sayHello();
            return 0;
        }
        """)
    
        @Override
        String getExpectedOutput() {
            return greeter.expectedOutput
    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. platforms/documentation/docs/src/snippets/customPlugins/customPlugin/tests/customPluginScript.out

    Hi from the GreetingScriptPlugin...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 22:35:53 UTC 2024
    - 33 bytes
    - Viewed (0)
  9. platforms/core-runtime/serialization/src/test/groovy/org/gradle/internal/serialize/BaseSerializerFactoryTest.groovy

        def factory = new BaseSerializerFactory()
    
        def "uses efficient serialization for Strings"() {
            expect:
            def serializer = factory.getSerializerFor(String)
            usesEfficientSerialization("hi", serializer, 3) == "hi"
        }
    
        def "uses efficient serialization for Files"() {
            expect:
            def serializer = factory.getSerializerFor(File)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 15 16:06:56 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  10. test/complit.go

    	}
    	if t != nil {
    		panic("bad")
    	}
    }
    
    type P struct {
    	a, b int
    }
    
    func NewP(a, b int) *P {
    	return &P{a, b}
    }
    
    func main() {
    	var t T
    	t = T{0, 7.2, "hi", &t}
    
    	var tp *T
    	tp = &T{0, 7.2, "hi", &t}
    
    	tl := &T{i: 0, next: &T{i: 1, next: &T{i: 2, next: &T{i: 3, next: &T{i: 4}}}}}
    	teq(tl, 5)
    
    	a1 := []int{1, 2, 3}
    	if len(a1) != 3 {
    		panic("a1")
    	}
    	a2 := [10]int{1, 2, 3}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Feb 19 02:19:43 UTC 2012
    - 1.7K bytes
    - Viewed (0)
Back to top