Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for BSL (0.03 sec)

  1. src/cmd/internal/pkgpath/pkgpath.go

    func toSymbolV3(ppath string) string {
    	var bsl strings.Builder
    	changed := false
    	for _, c := range ppath {
    		if ('A' <= c && c <= 'Z') || ('a' <= c && c <= 'z') || ('0' <= c && c <= '9') {
    			bsl.WriteByte(byte(c))
    			continue
    		}
    
    		if c < 0x80 {
    			if u, ok := v3UnderscoreCodes[byte(c)]; ok {
    				bsl.WriteByte('_')
    				bsl.WriteByte(u)
    				changed = true
    				continue
    			}
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 20 02:13:02 UTC 2022
    - 4.2K bytes
    - Viewed (0)
  2. test/fixedbugs/issue30908.dir/m.go

    // license that can be found in the LICENSE file.
    
    package main
    
    import (
    	"os"
    
    	"./b"
    )
    
    func main() {
    	seed := "some things are better"
    	bsl := []byte(seed)
    	b.CallReadValues("/dev/null")
    	vals, err := b.ReadValues(bsl)
    	if vals["better"] != seed || err != nil {
    		os.Exit(1)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 15:00:08 UTC 2019
    - 393 bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/arch/arm64/arm64asm/tables.go

    	BFM:       "BFM",
    	BFXIL:     "BFXIL",
    	BIC:       "BIC",
    	BICS:      "BICS",
    	BIF:       "BIF",
    	BIT:       "BIT",
    	BL:        "BL",
    	BLR:       "BLR",
    	BR:        "BR",
    	BRK:       "BRK",
    	BSL:       "BSL",
    	CBNZ:      "CBNZ",
    	CBZ:       "CBZ",
    	CCMN:      "CCMN",
    	CCMP:      "CCMP",
    	CINC:      "CINC",
    	CINV:      "CINV",
    	CLREX:     "CLREX",
    	CLS:       "CLS",
    	CLZ:       "CLZ",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 16 17:57:48 UTC 2017
    - 211.8K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/arch/arm64/arm64asm/inst.json

    {"Name":"BSL","Bits":"0|Q|1|0|1|1|1|0|0|1|1|Rm:5|0|0|0|1|1|1|Rn:5|Rd:5","Arch":"Three registers of the same type variant","Syntax":"BSL <Vd>.<T>, <Vn>.<T>, <Vm>.<T>","Code":"","Alias":""},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 16 17:57:48 UTC 2017
    - 234.7K bytes
    - Viewed (0)
Back to top