Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for nonZero (0.09 sec)

  1. src/cmd/compile/internal/ppc64/ssa.go

    			p.Reg = dstReg
    			p.From.Type = obj.TYPE_CONST
    			p.From.Offset = bytesPerLoop
    			p.To.Type = obj.TYPE_REG
    			p.To.Reg = dstReg
    
    			// BC with BO_BCTR generates bdnz to branch on nonzero CTR
    			// to loop top.
    			p = s.Prog(ppc64.ABC)
    			p.From.Type = obj.TYPE_CONST
    			p.From.Offset = ppc64.BO_BCTR
    			p.Reg = ppc64.REG_CR0LT
    			p.To.Type = obj.TYPE_BRANCH
    			p.To.SetTarget(top)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 19:59:38 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/rewrite.go

    func auxIntToValAndOff(i int64) ValAndOff {
    	return ValAndOff(i)
    }
    func auxIntToArm64BitField(i int64) arm64BitField {
    	return arm64BitField(i)
    }
    func auxIntToInt128(x int64) int128 {
    	if x != 0 {
    		panic("nonzero int128 not allowed")
    	}
    	return 0
    }
    func auxIntToFlagConstant(x int64) flagConstant {
    	return flagConstant(x)
    }
    
    func auxIntToOp(cc int64) Op {
    	return Op(cc)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 64.2K bytes
    - Viewed (0)
  3. pkg/scheduler/internal/cache/cache_test.go

    		makeBasePod(t, nodeName, "test-resource-request-and-port-2", "200m", "1Ki", "", []v1.ContainerPort{{HostIP: "127.0.0.1", HostPort: 8080, Protocol: "TCP"}}),
    		makeBasePod(t, nodeName, "test-nonzero-request", "", "", "", []v1.ContainerPort{{HostIP: "127.0.0.1", HostPort: 80, Protocol: "TCP"}}),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 17 01:38:03 UTC 2023
    - 63.8K bytes
    - Viewed (0)
  4. pkg/kubelet/pod_workers.go

    	// syncTerminatingPod call and means all running containers are stopped.
    	terminatedAt time.Time
    	// gracePeriod is the requested gracePeriod once terminatingAt is nonzero.
    	gracePeriod int64
    	// notifyPostTerminating will be closed once the pod transitions to
    	// terminated. After the pod is in terminated state, nothing should be
    	// added to this list.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 02 13:22:37 UTC 2024
    - 74.8K bytes
    - Viewed (0)
  5. src/cmd/internal/obj/riscv/obj.go

    	enc := encode(as)
    	if enc == nil {
    		panic("encodeR: could not encode instruction")
    	}
    	if enc.rs2 != 0 && rs2 != 0 {
    		panic("encodeR: instruction uses rs2, but rs2 was nonzero")
    	}
    	return funct7<<25 | enc.funct7<<25 | enc.rs2<<20 | rs2<<20 | rs1<<15 | enc.funct3<<12 | funct3<<12 | rd<<7 | enc.opcode
    }
    
    // encodeR4 encodes an R4-type RISC-V instruction.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 07 03:32:27 UTC 2024
    - 77K bytes
    - Viewed (0)
Back to top