Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 657 for intp (0.12 sec)

  1. src/cmd/vendor/golang.org/x/arch/arm/armasm/decode.go

    		if p == 0 && w == 1 {
    			return nil
    		}
    		sign := int8(+1)
    		if u == 0 {
    			sign = -1
    		}
    		imm := int16((x>>8)&(1<<4-1)<<4 | x&(1<<4-1))
    		mode := AddrMode(uint8(p<<1) | uint8(w^1))
    		return Mem{Base: Rn, Mode: mode, Offset: int16(sign) * imm}
    
    	case arg_mem_R_pm_imm8at0_offset:
    		Rn := Reg((x >> 16) & (1<<4 - 1))
    		u := (x >> 23) & 1
    		sign := int8(+1)
    		if u == 0 {
    			sign = -1
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 22 17:16:14 UTC 2022
    - 12.6K bytes
    - Viewed (0)
  2. src/encoding/gob/enc_helpers.go

    	if !v.CanAddr() {
    		return false
    	}
    	return encInt8Slice(state, v.Slice(0, v.Len()))
    }
    
    func encInt8Slice(state *encoderState, v reflect.Value) bool {
    	slice, ok := v.Interface().([]int8)
    	if !ok {
    		// It is kind int8 but not type int8. TODO: We can handle this unsafely.
    		return false
    	}
    	for _, x := range slice {
    		if x != 0 || state.sendZero {
    			state.encodeInt(int64(x))
    		}
    	}
    	return true
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Mar 10 17:50:11 UTC 2018
    - 9.9K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/config.go

    	fp64RegMask    regMask        // floating point register mask
    	specialRegMask regMask        // special register mask
    	intParamRegs   []int8         // register numbers of integer param (in/out) registers
    	floatParamRegs []int8         // register numbers of floating param (in/out) registers
    	ABI1           *abi.ABIConfig // "ABIInternal" under development // TODO change comment when this becomes current
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:11:47 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/_gen/main.go

    func countRegs(r regMask) int {
    	return bits.OnesCount64(uint64(r))
    }
    
    // for sorting a pair of integers by key
    type intPair struct {
    	key, val int
    }
    type byKey []intPair
    
    func (a byKey) Len() int           { return len(a) }
    func (a byKey) Swap(i, j int)      { a[i], a[j] = a[j], a[i] }
    func (a byKey) Less(i, j int) bool { return a[i].key < a[j].key }
    
    type ArchsByName []arch
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 19 22:42:34 UTC 2023
    - 16.9K bytes
    - Viewed (0)
  5. src/encoding/gob/dec_helpers.go

    	// Can only slice if it is addressable.
    	if !v.CanAddr() {
    		return false
    	}
    	return decInt8Slice(state, v.Slice(0, v.Len()), length, ovfl)
    }
    
    func decInt8Slice(state *decoderState, v reflect.Value, length int, ovfl error) bool {
    	slice, ok := v.Interface().([]int8)
    	if !ok {
    		// It is kind int8 but not type int8. TODO: We can handle this unsafely.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 24 19:28:46 UTC 2023
    - 15.4K bytes
    - Viewed (0)
  6. schema/field_test.go

    		{Name: "INT", DBName: "fint", BindNames: []string{"INT"}, DataType: schema.Int, Creatable: true, Updatable: true, Readable: true, Size: 64, Tag: `gorm:"column:fint"`},
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Sat Feb 19 09:02:53 UTC 2022
    - 12.7K bytes
    - Viewed (0)
  7. src/database/sql/convert.go

    	//
    	// This also allows scanning into user defined types such as "type Int int64".
    	// For symmetry, also check for string destination types.
    	switch dv.Kind() {
    	case reflect.Pointer:
    		if src == nil {
    			dv.SetZero()
    			return nil
    		}
    		dv.Set(reflect.New(dv.Type().Elem()))
    		return convertAssignRows(dv.Interface(), src, rows)
    	case reflect.Int, reflect.Int8, reflect.Int16, reflect.Int32, reflect.Int64:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  8. api/except.txt

    pkg syscall (openbsd-amd64), const CCR0_FLUSH ideal-int
    pkg syscall (openbsd-amd64), const CPUID_CFLUSH = 524288
    pkg syscall (openbsd-amd64), const CPUID_CFLUSH ideal-int
    pkg syscall (openbsd-amd64), const EFER_LMA = 1024
    pkg syscall (openbsd-amd64), const EFER_LMA ideal-int
    pkg syscall (openbsd-amd64), const EFER_LME = 256
    pkg syscall (openbsd-amd64), const EFER_LME ideal-int
    pkg syscall (openbsd-amd64), const EFER_NXE = 2048
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 25 00:13:30 UTC 2023
    - 34.6K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apimachinery/pkg/apis/meta/fuzzer/fuzzer.go

    	partLen := c.Rand.Intn(64) // len is [0, 63]
    	if !canBeEmpty {
    		partLen = c.Rand.Intn(63) + 1 // len is [1, 63]
    	}
    
    	runes := make([]rune, partLen)
    	if partLen == 0 {
    		return string(runes)
    	}
    
    	runes[0] = validStartEnd[c.Rand.Intn(len(validStartEnd))].choose(c.Rand)
    	for i := range runes[1:] {
    		runes[i+1] = validMiddle[c.Rand.Intn(len(validMiddle))].choose(c.Rand)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 03 15:12:26 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/magic.go

    	d := uint64(c) << (64 - n) >> (64 - n)
    
    	C := new(big.Int).SetUint64(d)
    	s := C.BitLen()
    	M := big.NewInt(1)
    	M.Lsh(M, n+uint(s))     // 2^(n+s)
    	M.Add(M, C)             // 2^(n+s)+c
    	M.Sub(M, big.NewInt(1)) // 2^(n+s)+c-1
    	M.Div(M, C)             // ⎡2^(n+s)/c⎤
    	if M.Bit(int(n)) != 1 {
    		panic("n+1st bit isn't set")
    	}
    	M.SetBit(M, int(n), 0)
    	m := M.Uint64()
    	return umagicData{s: int64(s), m: m}
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:25 UTC 2024
    - 15.8K bytes
    - Viewed (0)
Back to top