Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 159 for INT32 (0.12 sec)

  1. src/cmd/link/internal/ld/xcoff.go

    	XMC_TE     = 22 // TOC entry
    )
    
    // Loader Header
    type XcoffLdHdr64 struct {
    	Lversion int32  // Loader section version number
    	Lnsyms   int32  // Number of symbol table entries
    	Lnreloc  int32  // Number of relocation table entries
    	Listlen  uint32 // Length of import file ID string table
    	Lnimpid  int32  // Number of import file IDs
    	Lstlen   uint32 // Length of string table
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 01 19:58:23 UTC 2023
    - 51.8K bytes
    - Viewed (0)
  2. src/cmd/internal/obj/loong64/asm.go

    	case 11: // jmp lbra
    		v := int32(0)
    		if p.To.Target() != nil {
    			v = int32(p.To.Target().Pc-p.Pc) >> 2
    		}
    		o1 = OP_B_BL(c.opirr(p.As), uint32(v))
    		if p.To.Sym == nil {
    			if p.As == AJMP {
    				break
    			}
    			p.To.Sym = c.cursym.Func().Text.From.Sym
    			p.To.Offset = p.To.Target().Pc
    		}
    		rel := obj.Addrel(c.cursym)
    		rel.Off = int32(c.pc)
    		rel.Siz = 4
    		rel.Sym = p.To.Sym
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 02:04:54 UTC 2024
    - 61.8K bytes
    - Viewed (0)
  3. src/cmd/internal/obj/mips/asm0.go

    		o1 = OP_IRR(c.opirr(p.As), uint32(v), r, p.To.Reg)
    
    	case 5: /* syscall */
    		o1 = c.oprrr(p.As)
    
    	case 6: /* beq r1,[r2],sbra */
    		v := int32(0)
    		if p.To.Target() == nil {
    			v = int32(-4) >> 2
    		} else {
    			v = int32(p.To.Target().Pc-p.Pc-4) >> 2
    		}
    		if (v<<16)>>16 != v {
    			c.ctxt.Diag("short branch too far\n%v", p)
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 17:46:09 UTC 2024
    - 53.6K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/_gen/PPC64.rules

    (CMPWconst (MOVDconst [x]) [y]) && int32(x)==int32(y) => (FlagEQ)
    (CMPWconst (MOVDconst [x]) [y]) && int32(x)<int32(y)  => (FlagLT)
    (CMPWconst (MOVDconst [x]) [y]) && int32(x)>int32(y)  => (FlagGT)
    
    (CMPconst (MOVDconst [x]) [y]) && x==y => (FlagEQ)
    (CMPconst (MOVDconst [x]) [y]) && x<y  => (FlagLT)
    (CMPconst (MOVDconst [x]) [y]) && x>y  => (FlagGT)
    
    (CMPWUconst (MOVDconst [x]) [y]) && int32(x)==int32(y)  => (FlagEQ)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 53.2K bytes
    - Viewed (0)
  5. pkg/controller/job/job_controller.go

    	}
    	active := int32(len(jobCtx.activePods))
    	newSucceededPods, newFailedPods := getNewFinishedPods(jobCtx)
    	jobCtx.succeeded = job.Status.Succeeded + int32(len(newSucceededPods)) + int32(len(jobCtx.uncounted.succeeded))
    	jobCtx.failed = job.Status.Failed + int32(nonIgnoredFailedPodsCount(jobCtx, newFailedPods)) + int32(len(jobCtx.uncounted.failed))
    	ready := ptr.To(countReadyPods(jobCtx.activePods))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 23:56:37 UTC 2024
    - 77.6K bytes
    - Viewed (0)
  6. pkg/scheduler/framework/plugins/defaultpreemption/default_preemption_test.go

    	st "k8s.io/kubernetes/pkg/scheduler/testing"
    	tf "k8s.io/kubernetes/pkg/scheduler/testing/framework"
    )
    
    var (
    	negPriority, lowPriority, midPriority, highPriority, veryHighPriority = int32(-100), int32(0), int32(100), int32(1000), int32(10000)
    
    	smallRes = map[v1.ResourceName]string{
    		v1.ResourceCPU:    "100m",
    		v1.ResourceMemory: "100",
    	}
    	mediumRes = map[v1.ResourceName]string{
    		v1.ResourceCPU:    "200m",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 15:52:16 UTC 2024
    - 82.8K bytes
    - Viewed (0)
  7. pkg/apis/batch/validation/validation.go

    				}
    			}
    		}
    	}
    	return nil
    }
    
    func validateIndexesFormat(indexesStr string, completions int32) (int32, error) {
    	if len(indexesStr) == 0 {
    		return 0, nil
    	}
    	var lastIndex *int32
    	var total int32
    	for _, intervalStr := range strings.Split(indexesStr, ",") {
    		x, y, err := parseIndexInterval(intervalStr, completions)
    		if err != nil {
    			return 0, err
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 16:43:24 UTC 2024
    - 51.2K bytes
    - Viewed (0)
  8. pkg/controller/endpointslice/endpointslice_controller_test.go

    					Protocol: protoPtr(v1.ProtocolSCTP),
    					Port:     pointer.Int32(3456),
    				},
    				{
    					Name:     pointer.String("udp-example"),
    					Protocol: protoPtr(v1.ProtocolUDP),
    					Port:     pointer.Int32(161),
    				},
    				{
    					Name:     pointer.String("tcp-example"),
    					Protocol: protoPtr(v1.ProtocolTCP),
    					Port:     pointer.Int32(80),
    				},
    			},
    			expectedEndpoints: []discovery.Endpoint{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 08:33:32 UTC 2024
    - 65.5K bytes
    - Viewed (0)
  9. src/runtime/mgcpacer.go

    	p := c.idleMarkWorkers.Load()
    	n, max := int32(p&uint64(^uint32(0))), int32(p>>32)
    	return n < max
    }
    
    // removeIdleMarkWorker must be called when a new idle mark worker stops executing.
    func (c *gcControllerState) removeIdleMarkWorker() {
    	for {
    		old := c.idleMarkWorkers.Load()
    		n, max := int32(old&uint64(^uint32(0))), int32(old>>32)
    		if n-1 < 0 {
    			print("n=", n, " max=", max, "\n")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/_gen/AMD64.rules

    	(MOVQstoreconst [makeValAndOff(int32(c),off)] {sym} ptr mem)
    (MOVLstore [off] {sym} ptr (MOV(L|Q)const [c]) mem) =>
    	(MOVLstoreconst [makeValAndOff(int32(c),off)] {sym} ptr mem)
    (MOVWstore [off] {sym} ptr (MOV(L|Q)const [c]) mem) =>
    	(MOVWstoreconst [makeValAndOff(int32(int16(c)),off)] {sym} ptr mem)
    (MOVBstore [off] {sym} ptr (MOV(L|Q)const [c]) mem) =>
    	(MOVBstoreconst [makeValAndOff(int32(int8(c)),off)] {sym} ptr mem)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 12 19:38:41 UTC 2024
    - 93.9K bytes
    - Viewed (0)
Back to top