Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for isOptHdrEq (0.09 sec)

  1. src/debug/pe/file_test.go

    			{".text", 0x7bc390, 0x4400, 0x7bc390, 0x4400, 0x0, 0x0, 0x0, 0x0, 0x60500020},
    			{".bss", 0x168f870, 0x7c0790, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xc8000080},
    		},
    		hasNoDwarfInfo: true,
    	},
    }
    
    func isOptHdrEq(a, b any) bool {
    	switch va := a.(type) {
    	case *OptionalHeader32:
    		vb, ok := b.(*OptionalHeader32)
    		if !ok {
    			return false
    		}
    		return *vb == *va
    	case *OptionalHeader64:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 01 02:25:16 UTC 2023
    - 22.3K bytes
    - Viewed (0)
Back to top