Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 55 of 55 for quint8 (0.14 sec)

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

    		v.AddArg(x)
    		return true
    	}
    	// match: (MOVBUreg (MOVVconst [c]))
    	// result: (MOVVconst [int64(uint8(c))])
    	for {
    		if v_0.Op != OpMIPS64MOVVconst {
    			break
    		}
    		c := auxIntToInt64(v_0.AuxInt)
    		v.reset(OpMIPS64MOVVconst)
    		v.AuxInt = int64ToAuxInt(int64(uint8(c)))
    		return true
    	}
    	return false
    }
    func rewriteValueMIPS64_OpMIPS64MOVBload(v *Value) bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jul 31 03:59:48 UTC 2023
    - 211.6K bytes
    - Viewed (0)
  2. src/cmd/link/internal/ld/data.go

    	if siz == 0 { // informational relocation - no work to do
    		return rr, false
    	}
    
    	rt := r.Type()
    	if rt >= objabi.ElfRelocOffset {
    		return rr, false
    	}
    	rr.Type = rt
    	rr.Size = uint8(siz)
    
    	// TODO(mundaym): remove this special case - see issue 14218.
    	if target.IsS390X() {
    		switch rt {
    		case objabi.R_PCRELDBL:
    			rt = objabi.R_PCREL
    		}
    	}
    
    	switch rt {
    	default:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
  3. src/net/http/server.go

    	// on this connection, if any.
    	lastMethod string
    
    	curReq atomic.Pointer[response] // (which has a Request in it)
    
    	curState atomic.Uint64 // packed (unixtime<<8|uint8(ConnState))
    
    	// mu guards hijackedv
    	mu sync.Mutex
    
    	// hijackedv is whether this connection has been hijacked
    	// by a Handler with the Hijacker interface.
    	// It is guarded by mu.
    	hijackedv bool
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/_gen/ARM64.rules

    // bfi
    (OR (UBFIZ [bfc] x) (ANDconst [ac] y))
    	&& ac == ^((1<<uint(bfc.getARM64BFwidth())-1) << uint(bfc.getARM64BFlsb()))
    	=> (BFI [bfc] y x)
    (ORshiftRL [rc] (ANDconst [ac] x) (SLLconst [lc] y))
    	&& lc > rc && ac == ^((1<<uint(64-lc)-1) << uint64(lc-rc))
    	=> (BFI [armBFAuxInt(lc-rc, 64-lc)] x y)
    // bfxil
    (OR (UBFX [bfc] x) (ANDconst [ac] y)) && ac == ^(1<<uint(bfc.getARM64BFwidth())-1)
    	=> (BFXIL [bfc] y x)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 113.1K bytes
    - Viewed (0)
  5. pkg/controller/job/job_controller_test.go

    				t.Errorf("Unexpected conditions %v", actual.Status.Conditions)
    			}
    			// validate slow start
    			expectedLimit := 0
    			for pass := uint8(0); expectedLimit <= tc.podLimit; pass++ {
    				expectedLimit += controller.SlowStartInitialBatchSize << pass
    			}
    			if tc.podLimit > 0 && fakePodControl.CreateCallCount > expectedLimit {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 15:36:36 UTC 2024
    - 229.2K bytes
    - Viewed (0)
Back to top