Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for chku64 (0.1 sec)

  1. test/intcvt.go

    	chku32(uint32(i64), ci64&0xffffffff)
    	chku32(uint32(u8), cu8&0xffffffff)
    	chku32(uint32(u16), cu16&0xffffffff)
    	chku32(uint32(u32), cu32&0xffffffff)
    	chku32(uint32(u64), cu64&0xffffffff)
    	//	chku32(uint32(f32), 0)
    	//	chku32(uint32(f64), 0)
    
    	chku64(uint64(i8), ci8&0xffffffffffffffff)
    	chku64(uint64(i16), ci16&0xffffffffffffffff)
    	chku64(uint64(i32), ci32&0xffffffffffffffff)
    	chku64(uint64(i64), ci64&0xffffffffffffffff)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 23 07:47:26 UTC 2012
    - 4.3K bytes
    - Viewed (0)
  2. src/net/dnsname_test.go

    	defer close(ch)
    	var char63 = ""
    	for i := 0; i < 63; i++ {
    		char63 += "a"
    	}
    	char64 := char63 + "a"
    	longDomain := strings.Repeat(char63+".", 5) + "example"
    
    	for _, tc := range dnsNameTests {
    		ch <- tc
    	}
    
    	ch <- dnsNameTest{char63 + ".com", true}
    	ch <- dnsNameTest{char64 + ".com", false}
    
    	// Remember: wire format is two octets longer than presentation
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 18 17:20:52 UTC 2023
    - 2K bytes
    - Viewed (0)
  3. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/binaryinfo/DumpbinBinaryInfo.groovy

                // 011 00000000 UNDEF  notype ()    External     | ?life@@YAHXZ (int __cdecl life(void))
                // 012 00000000 SECT4  notype ()    External     | _main
                // 013 00000000 SECT6  notype       Static       | .chks64
                def tokens = line.split('\\s+')
                def pipeIndex = tokens.findIndexOf { it == '|' }
                assert pipeIndex != -1
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 5.1K bytes
    - Viewed (0)
Back to top