Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 15 for dumps (0.27 sec)

  1. src/archive/zip/reader_test.go

    //		if err := w.Close(); err != nil {
    //			log.Fatal(err)
    //		}
    //		return buf.Bytes()
    //	}
    //
    // The 4 GB of zeros compresses to 4 MB, which compresses to 20 kB,
    // which compresses to 1252 bytes (in the hex dump below).
    //
    // It's here in hex for the same reason as rZipBytes above: to avoid
    // problems with on-disk virus scanners or other zip processors.
    func biggestZipBytes() []byte {
    	s := `
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Wed Mar 27 18:23:49 GMT 2024
    - 55.3K bytes
    - Viewed (0)
  2. api/go1.13.txt

    pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_MPLS_MCAST = 34888
    pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_MPLS_MCAST ideal-int
    pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_MUMPS = 33087
    pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_MUMPS ideal-int
    pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_NBPCC = 15364
    pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_NBPCC ideal-int
    Plain Text
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Thu Aug 08 18:44:16 GMT 2019
    - 452.6K bytes
    - Viewed (0)
  3. doc/asm.html

    </p>
    
    <p>
    Branches and direct jumps are always written as offsets to the PC, or as
    jumps to labels:
    </p>
    
    <pre>
    label:
    	MOVW $0, R1
    	JMP label
    </pre>
    
    <p>
    Each label is visible only within the function in which it is defined.
    It is therefore permitted for multiple functions in a file to define
    and use the same label names.
    Direct jumps and call instructions can target text symbols,
    HTML
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Tue Nov 28 19:15:27 GMT 2023
    - 36.3K bytes
    - Viewed (0)
  4. api/go1.16.txt

    pkg syscall (darwin-arm64), const NAME_MAX = 255
    pkg syscall (darwin-arm64), const NAME_MAX ideal-int
    pkg syscall (darwin-arm64), const NET_RT_DUMP = 1
    pkg syscall (darwin-arm64), const NET_RT_DUMP ideal-int
    pkg syscall (darwin-arm64), const NET_RT_DUMP2 = 7
    pkg syscall (darwin-arm64), const NET_RT_DUMP2 ideal-int
    pkg syscall (darwin-arm64), const NET_RT_FLAGS = 2
    pkg syscall (darwin-arm64), const NET_RT_FLAGS ideal-int
    Plain Text
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Fri Dec 02 16:30:41 GMT 2022
    - 479.2K bytes
    - Viewed (0)
  5. api/go1.txt

    pkg syscall (darwin-386), const MS_KILLPAGES ideal-int
    pkg syscall (darwin-386), const MS_SYNC ideal-int
    pkg syscall (darwin-386), const NAME_MAX ideal-int
    pkg syscall (darwin-386), const NET_RT_DUMP ideal-int
    pkg syscall (darwin-386), const NET_RT_DUMP2 ideal-int
    pkg syscall (darwin-386), const NET_RT_FLAGS ideal-int
    pkg syscall (darwin-386), const NET_RT_IFLIST ideal-int
    pkg syscall (darwin-386), const NET_RT_IFLIST2 ideal-int
    Plain Text
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Wed Aug 14 18:58:28 GMT 2013
    - 1.7M bytes
    - Viewed (1)
  6. api/go1.14.txt

    pkg syscall (freebsd-arm64), const MSG_WAITALL ideal-int
    pkg syscall (freebsd-arm64), const NAME_MAX = 255
    pkg syscall (freebsd-arm64), const NAME_MAX ideal-int
    pkg syscall (freebsd-arm64), const NET_RT_DUMP = 1
    pkg syscall (freebsd-arm64), const NET_RT_DUMP ideal-int
    pkg syscall (freebsd-arm64), const NET_RT_FLAGS = 2
    pkg syscall (freebsd-arm64), const NET_RT_FLAGS ideal-int
    pkg syscall (freebsd-arm64), const NET_RT_IFLIST = 3
    Plain Text
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Fri Feb 17 20:31:46 GMT 2023
    - 508.9K bytes
    - Viewed (0)
  7. api/go1.20.txt

    pkg syscall (freebsd-riscv64), const NAME_MAX = 255 #53466
    pkg syscall (freebsd-riscv64), const NAME_MAX ideal-int #53466
    pkg syscall (freebsd-riscv64), const NET_RT_DUMP = 1 #53466
    pkg syscall (freebsd-riscv64), const NET_RT_DUMP ideal-int #53466
    pkg syscall (freebsd-riscv64), const NET_RT_FLAGS = 2 #53466
    pkg syscall (freebsd-riscv64), const NET_RT_FLAGS ideal-int #53466
    Plain Text
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Fri Feb 17 21:23:32 GMT 2023
    - 602.6K bytes
    - Viewed (0)
  8. src/cmd/asm/internal/flags/flags.go

    package flags
    
    import (
    	"cmd/internal/obj"
    	"cmd/internal/objabi"
    	"flag"
    	"fmt"
    	"os"
    	"path/filepath"
    	"strings"
    )
    
    var (
    	Debug      = flag.Bool("debug", false, "dump instructions as they are parsed")
    	OutputFile = flag.String("o", "", "output file; default foo.o for /a/b/c/foo.s as first argument")
    	TrimPath   = flag.String("trimpath", "", "remove prefix from recorded source file paths")
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Tue Aug 22 19:18:23 GMT 2023
    - 2.8K bytes
    - Viewed (0)
  9. src/cmd/asm/internal/asm/parse.go

    	p.addr = p.addr[0:0]
    	p.isJump = p.arch.IsJump(word)
    	for _, op := range operands {
    		addr := p.address(op)
    		if !p.isJump && addr.Reg < 0 { // Jumps refer to PC, a pseudo.
    			p.errorf("illegal use of pseudo-register in %s", word)
    		}
    		p.addr = append(p.addr, addr)
    	}
    	if p.isJump {
    		p.asmJump(op, cond, p.addr)
    		return
    	}
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Wed Feb 21 14:34:57 GMT 2024
    - 36.9K bytes
    - Viewed (0)
  10. api/go1.1.txt

    pkg syscall (darwin-386), const MS_KILLPAGES = 4
    pkg syscall (darwin-386), const MS_SYNC = 16
    pkg syscall (darwin-386), const NAME_MAX = 255
    pkg syscall (darwin-386), const NET_RT_DUMP = 1
    pkg syscall (darwin-386), const NET_RT_DUMP2 = 7
    pkg syscall (darwin-386), const NET_RT_FLAGS = 2
    pkg syscall (darwin-386), const NET_RT_IFLIST = 3
    pkg syscall (darwin-386), const NET_RT_IFLIST2 = 6
    Plain Text
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Thu Mar 31 20:37:15 GMT 2022
    - 2.6M bytes
    - Viewed (0)
Back to top