Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 176 for Ds (0.04 sec)

  1. src/cmd/vendor/golang.org/x/arch/x86/x86asm/intel.go

    					a.Segment = 0
    				}
    			case SI, ESI, RSI:
    				if a.Segment == DS {
    					a.Segment = 0
    				}
    			}
    		case LEA:
    			a.Segment = 0
    		default:
    			switch a.Base {
    			case SP, ESP, RSP, BP, EBP, RBP:
    				if a.Segment == SS {
    					a.Segment = 0
    				}
    			default:
    				if a.Segment == DS {
    					a.Segment = 0
    				}
    			}
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 29 22:23:32 UTC 2017
    - 11.7K bytes
    - Viewed (0)
  2. src/runtime/defs_darwin_amd64.go

    	eax    uint32
    	ebx    uint32
    	ecx    uint32
    	edx    uint32
    	edi    uint32
    	esi    uint32
    	ebp    uint32
    	esp    uint32
    	ss     uint32
    	eflags uint32
    	eip    uint32
    	cs     uint32
    	ds     uint32
    	es     uint32
    	fs     uint32
    	gs     uint32
    }
    
    type floatstate32 struct {
    	fpu_reserved  [2]int32
    	fpu_fcw       fpcontrol
    	fpu_fsw       fpstatus
    	fpu_ftw       uint8
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 12 21:17:22 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  3. src/cmd/link/internal/wasm/asm.go

    	// Generate at most this many segments. A higher number of segments gets rejected by some WebAssembly runtimes.
    	const maxNumSegments = 100000
    
    	var segments []*dataSegment
    	for secIndex, ds := range dataSects {
    		data := ds.data
    		offset := int32(ds.sect.Vaddr)
    
    		// skip leading zeroes
    		for len(data) > 0 && data[0] == 0 {
    			data = data[1:]
    			offset++
    		}
    
    		for len(data) > 0 {
    			dataLen := int32(len(data))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 16:17:48 UTC 2024
    - 21.9K bytes
    - Viewed (0)
  4. src/debug/elf/file.go

    	switch tag {
    	case DT_NEEDED, DT_SONAME, DT_RPATH, DT_RUNPATH:
    	default:
    		return nil, fmt.Errorf("non-string-valued tag %v", tag)
    	}
    	ds := f.SectionByType(SHT_DYNAMIC)
    	if ds == nil {
    		// not dynamic, so no libraries
    		return nil, nil
    	}
    	d, err := ds.Data()
    	if err != nil {
    		return nil, err
    	}
    
    	dynSize := 8
    	if f.Class == ELFCLASS64 {
    		dynSize = 16
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 23 16:49:58 UTC 2024
    - 43.1K bytes
    - Viewed (0)
  5. src/main/assemblies/files/service.bat

    echo Failed starting service manager for '%SERVICE_ID%'
    goto:eof
    :managed
    echo Successfully started service manager for '%SERVICE_ID%'.
    goto:eof
    
    :doRemove
    rem Remove the service
    "%EXECUTABLE%" //DS//%SERVICE_ID% %LOG_OPTS%
    if not errorlevel 1 goto removed
    echo Failed removing '%SERVICE_ID%' service
    goto:eof
    :removed
    echo The service '%SERVICE_ID%' has been removed
    goto:eof
    
    :doInstall
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sun Jan 15 06:32:15 UTC 2023
    - 6K bytes
    - Viewed (0)
  6. src/cmd/cgo/internal/testcshared/cshared_test.go

    	createHeadersOnce(t)
    
    	f, err := elf.Open(libgoname)
    	if err != nil {
    		t.Fatalf("elf.Open failed: %v", err)
    	}
    	defer f.Close()
    
    	ds := f.SectionByType(elf.SHT_DYNAMIC)
    	if ds == nil {
    		t.Fatalf("no SHT_DYNAMIC section")
    	}
    	d, err := ds.Data()
    	if err != nil {
    		t.Fatalf("can't read SHT_DYNAMIC contents: %v", err)
    	}
    	for len(d) > 0 {
    		var tag elf.DynTag
    		switch f.Class {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 14 13:19:50 UTC 2023
    - 21K bytes
    - Viewed (0)
  7. src/go/constant/value_test.go

    			continue
    		}
    
    		x := MakeFromLiteral(a[0], kind, 0)
    		var y Value
    		if a[1] == "?" {
    			y = MakeUnknown()
    		} else {
    			if ns, ds, ok := strings.Cut(a[1], "/"); ok && kind == token.FLOAT {
    				n := MakeFromLiteral(ns, token.INT, 0)
    				d := MakeFromLiteral(ds, token.INT, 0)
    				y = BinaryOp(n, token.QUO, d)
    			} else {
    				y = MakeFromLiteral(a[1], kind, 0)
    			}
    			if y.Kind() == Unknown {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 13 18:45:54 UTC 2021
    - 15.6K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/arch/x86/x86asm/decode.go

    		}
    	}
    
    	// defaultSeg returns the default segment for an implicit
    	// memory reference: the final override if present, or else DS.
    	defaultSeg := func() Reg {
    		if segIndex >= 0 {
    			inst.Prefix[segIndex] |= PrefixImplicit
    			return prefixToSegment(inst.Prefix[segIndex])
    		}
    		return DS
    	}
    
    	// Add implicit arguments not present in the tables.
    	// Normally we shy away from making implicit arguments explicit,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 10 18:59:52 UTC 2023
    - 45.1K bytes
    - Viewed (0)
  9. src/debug/macho/macho.go

    	AX    uint32
    	BX    uint32
    	CX    uint32
    	DX    uint32
    	DI    uint32
    	SI    uint32
    	BP    uint32
    	SP    uint32
    	SS    uint32
    	FLAGS uint32
    	IP    uint32
    	CS    uint32
    	DS    uint32
    	ES    uint32
    	FS    uint32
    	GS    uint32
    }
    
    // RegsAMD64 is the Mach-O AMD64 register structure.
    type RegsAMD64 struct {
    	AX    uint64
    	BX    uint64
    	CX    uint64
    	DX    uint64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 14 00:56:52 UTC 2021
    - 7.6K bytes
    - Viewed (0)
  10. cmd/server-startup-msg.go

    	xnet "github.com/minio/pkg/v3/net"
    )
    
    // generates format string depending on the string length and padding.
    func getFormatStr(strLen int, padding int) string {
    	formatStr := fmt.Sprintf("%ds", strLen+padding)
    	return "%" + formatStr
    }
    
    // Prints the formatted startup message.
    func printStartupMessage(apiEndpoints []string, err error) {
    	logger.Info(color.Bold(MinioBannerName))
    	if err != nil {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 6.8K bytes
    - Viewed (0)
Back to top