Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for chku64 (0.19 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. api/go1.6.txt

    pkg debug/elf, type Chdr32 struct, Size uint32
    pkg debug/elf, type Chdr32 struct, Type uint32
    pkg debug/elf, type Chdr64 struct
    pkg debug/elf, type Chdr64 struct, Addralign uint64
    pkg debug/elf, type Chdr64 struct, Size uint64
    pkg debug/elf, type Chdr64 struct, Type uint32
    pkg debug/elf, type CompressionType int
    pkg debug/elf, type R_MIPS int
    pkg debug/elf, type SectionHeader struct, FileSize uint64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 13 23:40:13 UTC 2016
    - 12.9K bytes
    - Viewed (0)
  4. 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)
  5. src/debug/elf/file.go

    				s.Size = uint64(bo.Uint32(chdata[unsafe.Offsetof(ch.Size):]))
    				s.Addralign = uint64(bo.Uint32(chdata[unsafe.Offsetof(ch.Addralign):]))
    				s.compressionOffset = int64(unsafe.Sizeof(ch))
    			case ELFCLASS64:
    				var ch Chdr64
    				chdata := make([]byte, unsafe.Sizeof(ch))
    				if _, err := s.sr.ReadAt(chdata, 0); err != nil {
    					return nil, err
    				}
    				s.compressionType = CompressionType(bo.Uint32(chdata[unsafe.Offsetof(ch.Type):]))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 23 16:49:58 UTC 2024
    - 43.1K bytes
    - Viewed (0)
  6. src/debug/elf/elf.go

    // ELF64 Dynamic structure. The ".dynamic" section contains an array of them.
    type Dyn64 struct {
    	Tag int64  /* Entry type. */
    	Val uint64 /* Integer/address value */
    }
    
    // ELF64 Compression header.
    type Chdr64 struct {
    	Type      uint32
    	_         uint32 /* Reserved. */
    	Size      uint64
    	Addralign uint64
    }
    
    /*
     * Relocation entries.
     */
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 00:01:16 UTC 2024
    - 134.6K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"COMPRESS_ZSTD", Const, 21},
    		{"Chdr32", Type, 6},
    		{"Chdr32.Addralign", Field, 6},
    		{"Chdr32.Size", Field, 6},
    		{"Chdr32.Type", Field, 6},
    		{"Chdr64", Type, 6},
    		{"Chdr64.Addralign", Field, 6},
    		{"Chdr64.Size", Field, 6},
    		{"Chdr64.Type", Field, 6},
    		{"Class", Type, 0},
    		{"CompressionType", Type, 6},
    		{"DF_1_CONFALT", Const, 21},
    		{"DF_1_DIRECT", Const, 21},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 534.2K bytes
    - Viewed (0)
  8. src/cmd/link/internal/ld/data.go

    	for _, sym := range syms {
    		total += ldr.SymSize(sym)
    	}
    
    	var buf bytes.Buffer
    	if ctxt.IsELF {
    		switch ctxt.Arch.PtrSize {
    		case 8:
    			binary.Write(&buf, ctxt.Arch.ByteOrder, elf.Chdr64{
    				Type:      uint32(elf.COMPRESS_ZLIB),
    				Size:      uint64(total),
    				Addralign: uint64(ctxt.Arch.Alignment),
    			})
    		case 4:
    			binary.Write(&buf, ctxt.Arch.ByteOrder, elf.Chdr32{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (1)
Back to top