Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for slbmte (0.21 sec)

  1. src/cmd/asm/internal/asm/testdata/ppc64.s

    	TLBSYNC                         // 7c00046c
    	HRFID                           // 4c000224
    	SLBIA                           // 7c0003e4
    	SLBIE R3                        // 7c001b64
    	SLBMFEE R3, R4                  // 7c801f26
    	SLBMFEV R3, R4                  // 7c801ea6
    	SLBMTE R3, R4                   // 7c801b24
    
    	TW $31, R0, R0                  // 7fe00008
    	TD $31, R0, R0                  // 7fe00088
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 21:53:50 UTC 2024
    - 50.2K bytes
    - Viewed (0)
  2. src/cmd/internal/obj/ppc64/asm9.go

    			o1 = AOP_IRR(c.opirr(p.As), r, uint32(p.From.Reg), uint32(uint16(p.To.Offset)))
    		} else {
    			o1 = AOP_RRR(c.oprrr(p.As), r, uint32(p.From.Reg), uint32(p.To.Reg))
    		}
    
    	case 72: /* slbmte (Rb+Rs -> slb[Rb]) -> Rs, Rb */
    		o1 = AOP_RRR(c.oprrr(p.As), uint32(p.From.Reg), 0, uint32(p.To.Reg))
    
    	case 73: /* mcrfs crfD,crfS */
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 13:55:28 UTC 2024
    - 156.1K bytes
    - Viewed (0)
  3. src/cmd/asm/internal/arch/ppc64.go

    		ppc64.AEXTSBCC, ppc64.AEXTSB, ppc64.AEXTSHCC, ppc64.AEXTSH,
    		ppc64.AEXTSWCC, ppc64.AEXTSW, ppc64.ANEGCC, ppc64.ANEGVCC,
    		ppc64.ANEGV, ppc64.ANEG, ppc64.ASLBMFEE, ppc64.ASLBMFEV,
    		ppc64.ASLBMTE, ppc64.ASUBMECC, ppc64.ASUBMEVCC, ppc64.ASUBMEV,
    		ppc64.ASUBME, ppc64.ASUBZECC, ppc64.ASUBZEVCC, ppc64.ASUBZEV,
    		ppc64.ASUBZE:
    		return true
    	}
    	return false
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 21:53:50 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  4. docs/en/mkdocs.yml

        scheme: default
        primary: teal
        accent: amber
        toggle:
          icon: material/lightbulb
          name: Switch to dark mode
      - media: '(prefers-color-scheme: dark)'
        scheme: slate
        primary: teal
        accent: amber
        toggle:
          icon: material/lightbulb-outline
          name: Switch to light mode
      features:
      - search.suggest
      - search.highlight
      - content.tabs.link
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 02 22:37:31 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  5. src/go/types/check.go

    	}
    }
    
    // initFiles initializes the files-specific portion of checker.
    // The provided files must all belong to the same package.
    func (check *Checker) initFiles(files []*ast.File) {
    	// start with a clean slate (check.Files may be called multiple times)
    	check.files = nil
    	check.imports = nil
    	check.dotImportMap = nil
    
    	check.firstErr = nil
    	check.methods = nil
    	check.untyped = nil
    	check.delayed = nil
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  6. src/cmd/internal/obj/ppc64/obj9.go

    				}
    			}
    
    		case ALWAR,
    			ALBAR,
    			ASTBCCC,
    			ASTWCCC,
    			AEIEIO,
    			AICBI,
    			AISYNC,
    			ATLBIE,
    			ATLBIEL,
    			ASLBIA,
    			ASLBIE,
    			ASLBMFEE,
    			ASLBMFEV,
    			ASLBMTE,
    			ADCBF,
    			ADCBI,
    			ADCBST,
    			ADCBT,
    			ADCBTST,
    			ADCBZ,
    			ASYNC,
    			ATLBSYNC,
    			APTESYNC,
    			ALWSYNC,
    			ATW,
    			AWORD,
    			ARFI,
    			ARFCI,
    			ARFID,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:17:17 UTC 2024
    - 40.8K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/types2/check.go

    	}
    }
    
    // initFiles initializes the files-specific portion of checker.
    // The provided files must all belong to the same package.
    func (check *Checker) initFiles(files []*syntax.File) {
    	// start with a clean slate (check.Files may be called multiple times)
    	check.files = nil
    	check.imports = nil
    	check.dotImportMap = nil
    
    	check.firstErr = nil
    	check.methods = nil
    	check.untyped = nil
    	check.delayed = nil
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 23.3K bytes
    - Viewed (0)
  8. src/cmd/dist/build.go

    	os.Setenv("GOPROXY", "off")
    
    	// Use a build cache separate from the default user one.
    	// Also one that will be wiped out during startup, so that
    	// make.bash really does start from a clean slate.
    	oldgocache = os.Getenv("GOCACHE")
    	os.Setenv("GOCACHE", pathf("%s/pkg/obj/go-build", goroot))
    
    	// Disable GOEXPERIMENT when building toolchain1 and
    	// go_bootstrap. We don't need any experiments for the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:34:40 UTC 2024
    - 54K bytes
    - Viewed (0)
  9. samples/bookinfo/src/productpage/static/tailwind/tailwind.css

    ,this.stone},get trueGray(){return sr({version:"v3.0",from:"trueGray",to:"neutral"}),this.neutral},get coolGray(){return sr({version:"v3.0",from:"coolGray",to:"gray"}),this.gray},get blueGray(){return sr({version:"v3.0",from:"blueGray",to:"slate"}),this.slate}}});function es(i,...e){for(let t of e){for(let r in t)i?.hasOwnProperty?.(r)||(i[r]=t[r]);for(let r of Object.getOwnPropertySymbols(t))i?.hasOwnProperty?.(r)||(i[r]=t[r])}return i}var vu=C(()=>{l()});function Ke(i){if(Array.isArray(i))return...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 28 14:48:01 UTC 2024
    - 357.1K bytes
    - Viewed (1)
Back to top