Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for Int8 (0.08 sec)

  1. src/cmd/vendor/golang.org/x/sys/unix/ztypes_linux.go

    	Addr     [16]byte /* in6_addr */
    	Scope_id uint32
    	Conn_id  uint32
    }
    
    type RawSockaddrIUCV struct {
    	Family  uint16
    	Port    uint16
    	Addr    uint32
    	Nodeid  [8]int8
    	User_id [8]int8
    	Name    [8]int8
    }
    
    type RawSockaddrNFC struct {
    	Sa_family    uint16
    	Dev_idx      uint32
    	Target_idx   uint32
    	Nfc_protocol uint32
    }
    
    type _Socklen uint32
    
    type Linger struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 251K bytes
    - Viewed (0)
  2. doc/go_spec.html

    uint8(^1)  // illegal: same as uint8(-2), -2 cannot be represented as a uint8
    ^uint8(1)  // typed uint8 constant, same as 0xFF ^ uint8(1) = uint8(0xFE)
    int8(^1)   // same as int8(-2)
    ^int8(1)   // same as -1 ^ int8(1) = -2
    </pre>
    
    <p>
    Implementation restriction: A compiler may use rounding while
    computing untyped floating-point or complex constant expressions; see
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 21:07:21 UTC 2024
    - 281.5K bytes
    - Viewed (1)
  3. src/cmd/compile/internal/ssagen/ssa.go

    		// need this case.
    		return callee.Linksym()
    	}
    
    	return callee.LinksymABI(callee.Func.ABI)
    }
    
    func min8(a, b int8) int8 {
    	if a < b {
    		return a
    	}
    	return b
    }
    
    func max8(a, b int8) int8 {
    	if a > b {
    		return a
    	}
    	return b
    }
    
    // deferStructFnField is the field index of _defer.fn.
    const deferStructFnField = 4
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/rewritePPC64.go

    			break
    		}
    		v.copyOf(x)
    		return true
    	}
    	// match: (MOVBreg (MOVDconst [c]))
    	// result: (MOVDconst [int64(int8(c))])
    	for {
    		if v_0.Op != OpPPC64MOVDconst {
    			break
    		}
    		c := auxIntToInt64(v_0.AuxInt)
    		v.reset(OpPPC64MOVDconst)
    		v.AuxInt = int64ToAuxInt(int64(int8(c)))
    		return true
    	}
    	return false
    }
    func rewriteValuePPC64_OpPPC64MOVBstore(v *Value) bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 360.2K bytes
    - Viewed (0)
Back to top