Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,075 for satconv (0.16 sec)

  1. src/internal/buildcfg/cfg.go

    	i := strings.IndexFunc(v, func(r rune) bool {
    		return r < '0' || r > '9'
    	})
    	year, _ := strconv.Atoi(v[:i])
    	return year
    }
    
    type gowasmFeatures struct {
    	SatConv bool
    	SignExt bool
    }
    
    func (f gowasmFeatures) String() string {
    	var flags []string
    	if f.SatConv {
    		flags = append(flags, "satconv")
    	}
    	if f.SignExt {
    		flags = append(flags, "signext")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 20:08:06 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  2. src/cmd/go/testdata/script/tooltags.txt

    go list -f '{{context.ToolTags}}'
    stdout 'riscv64.rva20u64'
    
    env GOARCH=386
    env GO386=sse2
    go list -f '{{context.ToolTags}}'
    stdout '386.sse2'
    
    env GOARCH=wasm
    env GOWASM=satconv
    go list -f '{{context.ToolTags}}'
    stdout 'wasm.satconv'
    
    -- go.mod --
    module m
    
    -- p.go --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 07:25:25 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/wasm/ssa.go

    			break
    		}
    		s.Prog(wasm.AI64DivS)
    
    	case ssa.OpWasmI64TruncSatF32S, ssa.OpWasmI64TruncSatF64S:
    		getValue64(s, v.Args[0])
    		if buildcfg.GOWASM.SatConv {
    			s.Prog(v.Op.Asm())
    		} else {
    			if v.Op == ssa.OpWasmI64TruncSatF32S {
    				s.Prog(wasm.AF64PromoteF32)
    			}
    			p := s.Prog(wasm.ACall)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 24 00:21:13 UTC 2023
    - 17.6K bytes
    - Viewed (0)
  4. src/cmd/go/internal/help/helpdoc.go

    	  feature build tags.
    	- For GOARCH=riscv64,
    	  GORISCV64=rva20u64 and rva22u64 correspond to the riscv64.rva20u64
    	  and riscv64.rva22u64 build tags.
    	- For GOARCH=wasm, GOWASM=satconv and signext
    	  correspond to the wasm.satconv and wasm.signext feature build tags.
    
    For GOARCH=amd64, arm, ppc64, ppc64le, and riscv64, a particular feature level
    sets the feature build tags for all previous levels as well.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 36.3K bytes
    - Viewed (0)
  5. src/cmd/go/alldocs.go

    //   - For GOARCH=riscv64,
    //     GORISCV64=rva20u64 and rva22u64 correspond to the riscv64.rva20u64
    //     and riscv64.rva22u64 build tags.
    //   - For GOARCH=wasm, GOWASM=satconv and signext
    //     correspond to the wasm.satconv and wasm.signext feature build tags.
    //
    // For GOARCH=amd64, arm, ppc64, ppc64le, and riscv64, a particular feature level
    // sets the feature build tags for all previous levels as well.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  6. src/archive/tar/strconv.go

    	const padding = 3 // Extra padding for ' ', '=', and '\n'
    	size := len(k) + len(v) + padding
    	size += len(strconv.Itoa(size))
    	record := strconv.Itoa(size) + " " + k + "=" + v + "\n"
    
    	// Final adjustment if adding size field increased the record size.
    	if len(record) != size {
    		size = len(record)
    		record = strconv.Itoa(size) + " " + k + "=" + v + "\n"
    	}
    	return record, nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 01 14:28:42 UTC 2023
    - 9K bytes
    - Viewed (0)
  7. src/math/big/ratconv.go

    // license that can be found in the LICENSE file.
    
    // This file implements rat-to-string conversion functions.
    
    package big
    
    import (
    	"errors"
    	"fmt"
    	"io"
    	"strconv"
    	"strings"
    )
    
    func ratTok(ch rune) bool {
    	return strings.ContainsRune("+-/0123456789.eE", ch)
    }
    
    var ratZero Rat
    var _ fmt.Scanner = &ratZero // *Rat must implement fmt.Scanner
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 15 22:16:34 UTC 2023
    - 12.3K bytes
    - Viewed (0)
  8. src/math/big/natconv.go

    cui fliter <******@****.***> 1668165755 +0800
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 18 17:59:44 UTC 2022
    - 14.6K bytes
    - Viewed (0)
  9. src/math/big/intconv.go

    cui fliter <******@****.***> 1697288956 +0800
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 11:59:09 UTC 2023
    - 6.7K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/types/fmt.go

    		if verb == 'v' && f.Flag('+') {
    			mode = fmtDebug
    		}
    		fmt.Fprint(f, sconv(s, verb, mode))
    
    	default:
    		fmt.Fprintf(f, "%%!%c(*types.Sym=%p)", verb, s)
    	}
    }
    
    func (s *Sym) String() string {
    	return sconv(s, 0, fmtGo)
    }
    
    // See #16897 for details about performance implications
    // before changing the implementation of sconv.
    func sconv(s *Sym, verb rune, mode fmtMode) string {
    	if verb == 'L' {
    		panic("linksymfmt")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 12 15:41:17 UTC 2023
    - 15.7K bytes
    - Viewed (0)
Back to top