Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 59 for uimm16 (0.15 sec)

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

    	y += x
    	return (y-1)&y == 0
    }
    
    // isARM64addcon reports whether x can be encoded as the immediate value in an ADD or SUB instruction.
    func isARM64addcon(v int64) bool {
    	/* uimm12 or uimm24? */
    	if v < 0 {
    		return false
    	}
    	if (v & 0xFFF) == 0 {
    		v >>= 12
    	}
    	return v <= 0xFFF
    }
    
    // setPos sets the position of v to pos, then returns true.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 64.2K bytes
    - Viewed (0)
  2. src/reflect/type.go

    	Bool:          "bool",
    	Int:           "int",
    	Int8:          "int8",
    	Int16:         "int16",
    	Int32:         "int32",
    	Int64:         "int64",
    	Uint:          "uint",
    	Uint8:         "uint8",
    	Uint16:        "uint16",
    	Uint32:        "uint32",
    	Uint64:        "uint64",
    	Uintptr:       "uintptr",
    	Float32:       "float32",
    	Float64:       "float64",
    	Complex64:     "complex64",
    	Complex128:    "complex128",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 85.5K bytes
    - Viewed (0)
  3. src/crypto/tls/conn.go

    	// start with a uint16 length where the MSB is set and the first record
    	// is always < 256 bytes long. Therefore typ == 0x80 strongly suggests
    	// an SSLv2 client.
    	if !handshakeComplete && typ == 0x80 {
    		c.sendAlert(alertProtocolVersion)
    		return c.in.setErrorLocked(c.newRecordHeaderError(nil, "unsupported SSLv2 handshake received"))
    	}
    
    	vers := uint16(hdr[1])<<8 | uint16(hdr[2])
    	expectedVers := c.vers
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  4. src/cmd/link/internal/ppc64/asm.go

    	rs := r.Xsym
    
    	emitReloc := func(v uint16, off uint64) {
    		out.Write64(uint64(sectoff) + off)
    		out.Write32(uint32(ldr.SymDynid(rs)))
    		out.Write16(v)
    	}
    
    	var v uint16
    	switch r.Type {
    	default:
    		return false
    	case objabi.R_ADDR, objabi.R_DWARFSECREF:
    		v = ld.XCOFF_R_POS
    		if r.Size == 4 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 19 20:54:08 UTC 2024
    - 63.7K bytes
    - Viewed (0)
  5. cmd/batch-handlers.go

    	}
    	// Read header
    	switch binary.LittleEndian.Uint16(data[0:2]) {
    	case format:
    	default:
    		return fmt.Errorf("%s: unknown format: %d", ri.JobType, binary.LittleEndian.Uint16(data[0:2]))
    	}
    	switch binary.LittleEndian.Uint16(data[2:4]) {
    	case version:
    	default:
    		return fmt.Errorf("%s: unknown version: %d", ri.JobType, binary.LittleEndian.Uint16(data[2:4]))
    	}
    
    	ri.mu.Lock()
    	defer ri.mu.Unlock()
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 11 03:13:30 UTC 2024
    - 56K bytes
    - Viewed (0)
  6. src/runtime/mgcscavenge.go

    	// allocated.
    	//
    	// Only the first 10 bits are used.
    	inUse uint16
    
    	// lastInUse indicates how many pages in this chunk were allocated
    	// when we transitioned from gen-1 to gen.
    	//
    	// Only the first 10 bits are used.
    	lastInUse uint16
    
    	// gen is the generation counter from a scavengeIndex from the
    	// last time this scavChunkData was updated.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:48:45 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  7. src/runtime/mheap.go

    	// undefined and should never be referenced.
    	//
    	// Object n starts at address n*elemsize + (start << pageShift).
    	freeindex uint16
    	// TODO: Look up nelems from sizeclass and remove this field if it
    	// helps performance.
    	nelems uint16 // number of object in the span.
    	// freeIndexForScan is like freeindex, except that freeindex is
    	// used by the allocator whereas freeIndexForScan is used by the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 78K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/text/cases/tables9.0.0.go

    func (t *caseTrie) lookupValue(n uint32, b byte) uint16 {
    	switch {
    	case n < 18:
    		return uint16(caseValues[n<<6+uint32(b)])
    	default:
    		n -= 18
    		return uint16(sparse.lookup(n, b))
    	}
    }
    
    // caseValues: 20 blocks, 1280 entries, 2560 bytes
    // The third block is the zero block.
    var caseValues = [1280]uint16{
    	// Block 0x0, offset 0x0
    	0x27: 0x0054,
    	0x2e: 0x0054,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 92.4K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/text/cases/tables10.0.0.go

    func (t *caseTrie) lookupValue(n uint32, b byte) uint16 {
    	switch {
    	case n < 18:
    		return uint16(caseValues[n<<6+uint32(b)])
    	default:
    		n -= 18
    		return uint16(sparse.lookup(n, b))
    	}
    }
    
    // caseValues: 20 blocks, 1280 entries, 2560 bytes
    // The third block is the zero block.
    var caseValues = [1280]uint16{
    	// Block 0x0, offset 0x0
    	0x27: 0x0054,
    	0x2e: 0x0054,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 93.9K bytes
    - Viewed (0)
  10. pkg/proxy/ipvs/proxier.go

    			continue
    		}
    		proxier.ipsetList[kubeClusterIPSet].activeEntries.Insert(entry.String())
    		// ipvs call
    		serv := &utilipvs.VirtualServer{
    			Address:   svcInfo.ClusterIP(),
    			Port:      uint16(svcInfo.Port()),
    			Protocol:  string(svcInfo.Protocol()),
    			Scheduler: proxier.ipvsScheduler,
    		}
    		// Set session affinity flag and timeout for IPVS service
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Apr 28 15:51:23 UTC 2024
    - 77.7K bytes
    - Viewed (0)
Back to top