Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 35 of 35 for doxcoff (0.16 sec)

  1. src/cmd/cgo/gcc.go

    package main
    
    import (
    	"bytes"
    	"debug/dwarf"
    	"debug/elf"
    	"debug/macho"
    	"debug/pe"
    	"encoding/binary"
    	"errors"
    	"flag"
    	"fmt"
    	"go/ast"
    	"go/parser"
    	"go/token"
    	"internal/xcoff"
    	"math"
    	"os"
    	"os/exec"
    	"strconv"
    	"strings"
    	"unicode"
    	"unicode/utf8"
    
    	"cmd/internal/quoted"
    )
    
    var debugDefine = flag.Bool("debug-define", false, "print relevant #defines")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 97K bytes
    - Viewed (0)
  2. src/cmd/link/internal/ld/lib.go

    	if c1 == 0x01 && (c2 == 0xD7 || c2 == 0xF7) {
    		ldxcoff := func(ctxt *Link, f *bio.Reader, pkg string, length int64, pn string) {
    			textp, err := loadxcoff.Load(ctxt.loader, ctxt.Arch, ctxt.IncVersion(), f, pkg, length, pn)
    			if err != nil {
    				Errorf(nil, "%v", err)
    				return
    			}
    			ctxt.Textp = append(ctxt.Textp, textp...)
    		}
    		return ldhostobj(ldxcoff, ctxt.HeadType, f, pkg, length, pn, file)
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 88.6K bytes
    - Viewed (0)
  3. src/cmd/go/internal/work/exec.go

    	{0x00, 0x00, 0x06, 0x47},                  // Plan 9 arm
    	{0x00, 0x61, 0x73, 0x6D},                  // WASM
    	{0x01, 0xDF},                              // XCOFF 32bit
    	{0x01, 0xF7},                              // XCOFF 64bit
    }
    
    func isObject(s string) bool {
    	f, err := os.Open(s)
    	if err != nil {
    		return false
    	}
    	defer f.Close()
    	buf := make([]byte, 64)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  4. src/cmd/link/internal/ppc64/asm.go

    			if target.IsAIX() && rt == objabi.R_POWER_TLS_LE {
    				// Fixup val, an addis/addi pair of instructions, which generate a 32b displacement
    				// from the threadpointer (R13), into a 16b relocation. XCOFF only supports 16b
    				// TLS LE relocations. Likewise, verify this is an addis/addi sequence.
    				const expectedOpcodes = 0x3C00000038000000
    				const expectedOpmasks = 0xFC000000FC000000
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 19 20:54:08 UTC 2024
    - 63.7K bytes
    - Viewed (0)
  5. cmd/testdata/decryptObjectInfo.json.zst

    PlnWG/Ioybk2VSy5/OrlwFmQcg3Ww8RqH3/7Kw5X0l/Nz5wC3lniGSA==","X-Minio-Internal-Server-Side-Encryption-Seal-Algorithm":"DAREv2-HMAC-SHA256","content-type":"application/octet-stream"}},{"Bucket":"buck1","Name":"go_113/src/cmd/link/internal/loadxcoff/ldxcoff.go","UserDef":{"X-Minio-Internal-Server-Side-Encryption-Iv":"LzZS6iir99sIrPxKt7TL=","X-Minio-Internal-Server-Side-Encryption-S3-Kms-Key-Id":"my-minio-key","X-Minio-Internal-Server-Side-Encryption-S3-Kms-Sealed-Key":"IAAfAOXmHKV30oFHTfIa+ffxQnVcbm...
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Oct 29 16:34:20 UTC 2020
    - 164K bytes
    - Viewed (0)
Back to top