Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for pli (0.02 sec)

  1. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/apf_controller.go

    	cfgCtlr.lockAndDigestConfigObjects(nil, nil)
    	fci := config.InformerFactory.Flowcontrol().V1()
    	pli := fci.PriorityLevelConfigurations()
    	fsi := fci.FlowSchemas()
    	cfgCtlr.plLister = pli.Lister()
    	cfgCtlr.plInformerSynced = pli.Informer().HasSynced
    	cfgCtlr.fsLister = fsi.Lister()
    	cfgCtlr.fsInformerSynced = fsi.Informer().HasSynced
    	pli.Informer().AddEventHandler(cache.ResourceEventHandlerFuncs{
    		AddFunc: func(obj interface{}) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 48.8K bytes
    - Viewed (0)
  2. src/cmd/asm/internal/asm/testdata/ppc64.s

    	// Hex constant 0xFFFFFFFF80000001
    	MOVD $-2147483647, R5           // 3ca0800060a50001 or 0603800038a00001
    	// Hex constant 0xFFFFFFFE00000002 (load of constant on < power10, pli on >= power10
    	MOVD $-8589934590, R5           // 3ca00000e8a50000 or 0602000038a00002
    
    	// For backwards compatibility, MOVW $const,Rx and MOVWZ $const,Rx assemble identically
    	// and accept the same constants.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 21:53:50 UTC 2024
    - 50.2K bytes
    - Viewed (0)
  3. src/cmd/internal/obj/ppc64/obj9.go

    		isS32 := int64(int32(p.From.Offset)) == p.From.Offset
    		isU32 := uint64(uint32(p.From.Offset)) == uint64(p.From.Offset)
    		// If prefixed instructions are supported, a 34b signed constant can be generated by one pli instruction.
    		isS34 := pfxEnabled && (p.From.Offset<<30)>>30 == p.From.Offset
    
    		// Try converting MOVD $const,Rx into ADDIS/ORIS $s32>>16,R0,Rx
    		switch {
    		case isS32 && p.From.Offset&0xFFFF == 0 && p.From.Offset != 0:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:17:17 UTC 2024
    - 40.8K bytes
    - Viewed (0)
Back to top