Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for num (0.22 sec)

  1. src/cmd/cgo/doc.go

    	#line 1 "not-type"
    	void __cgo_f_1_2(void) { foo *__cgo_undefined__2; }
    	#line 1 "not-int-const"
    	void __cgo_f_1_3(void) { enum { __cgo_undefined__3 = (foo)*1 }; }
    	#line 1 "not-num-const"
    	void __cgo_f_1_4(void) { static const double __cgo_undefined__4 = (foo); }
    	#line 1 "not-str-lit"
    	void __cgo_f_1_5(void) { static const char __cgo_undefined__5[] = (foo); }
    
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Sun Mar 31 09:02:45 GMT 2024
    - 42.1K bytes
    - Viewed (0)
  2. src/cmd/asm/internal/asm/parse.go

    		p.errorf("expected register; found %s", name)
    		return 0, false
    	}
    	p.get('(')
    	tok := p.get(scanner.Int)
    	num, err := strconv.ParseInt(tok.String(), 10, 16)
    	p.get(')')
    	if err != nil {
    		p.errorf("parsing register list: %s", err)
    		return 0, false
    	}
    	r, ok := p.arch.RegisterNumber(name, int16(num))
    	if !ok {
    		p.errorf("illegal register %s(%d)", name, r)
    		return 0, false
    	}
    	return r, true
    }
    
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Wed Feb 21 14:34:57 GMT 2024
    - 36.9K bytes
    - Viewed (0)
  3. src/cmd/asm/internal/arch/arm64.go

    }
    
    // ARM64RegisterExtension constructs an ARM64 register with extension or arrangement.
    func ARM64RegisterExtension(a *obj.Addr, ext string, reg, num int16, isAmount, isIndex bool) error {
    	Rnum := (reg & 31) + int16(num<<5)
    	if isAmount {
    		if num < 0 || num > 7 {
    			return errors.New("index shift amount is out of range")
    		}
    	}
    	if reg <= arm64.REG_R31 && reg >= arm64.REG_R0 {
    		if !isAmount {
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Thu Sep 29 09:04:58 GMT 2022
    - 10.4K bytes
    - Viewed (0)
  4. api/go1.5.txt

    pkg go/constant, func MakeInt64(int64) Value
    pkg go/constant, func MakeString(string) Value
    pkg go/constant, func MakeUint64(uint64) Value
    pkg go/constant, func MakeUnknown() Value
    pkg go/constant, func Num(Value) Value
    pkg go/constant, func Real(Value) Value
    pkg go/constant, func Shift(Value, token.Token, uint) Value
    pkg go/constant, func Sign(Value) int
    pkg go/constant, func StringVal(Value) string
    Plain Text
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Thu Jul 30 21:14:09 GMT 2015
    - 46.6K bytes
    - Viewed (0)
  5. src/bufio/bufio_test.go

    		t.Fatalf("2nd nil Read = %v; want nil", err)
    	}
    	if _, err := b.Read(buf); err != nil {
    		t.Fatalf("3rd Read with buffer = %v; want nil", err)
    	}
    	if r.nread != 2 {
    		t.Errorf("num reads = %d; want 2", r.nread)
    	}
    }
    
    // Test for golang.org/issue/5947
    func TestWriterReadFromWhileFull(t *testing.T) {
    	buf := new(bytes.Buffer)
    	w := NewWriterSize(buf, 10)
    
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Feb 10 18:56:01 GMT 2023
    - 51.5K bytes
    - Viewed (0)
  6. src/cmd/cgo/gcc.go

    	//	#line xxx "not-type"
    	//	void __cgo_f_xxx_2(void) { name *__cgo_undefined__2; }
    	//	#line xxx "not-int-const"
    	//	void __cgo_f_xxx_3(void) { enum { __cgo_undefined__3 = (name)*1 }; }
    	//	#line xxx "not-num-const"
    	//	void __cgo_f_xxx_4(void) { static const double __cgo_undefined__4 = (name); }
    	//	#line xxx "not-str-lit"
    	//	void __cgo_f_xxx_5(void) { static const char __cgo_undefined__5[] = (name); }
    	//
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Thu Nov 02 16:43:23 GMT 2023
    - 97K bytes
    - Viewed (0)
  7. api/go1.13.txt

    pkg syscall (netbsd-arm64-cgo), type Sysctlnode struct, Flags uint32
    pkg syscall (netbsd-arm64-cgo), type Sysctlnode struct, Name [32]int8
    pkg syscall (netbsd-arm64-cgo), type Sysctlnode struct, Num int32
    pkg syscall (netbsd-arm64-cgo), type Sysctlnode struct, Un [16]uint8
    pkg syscall (netbsd-arm64-cgo), type Sysctlnode struct, Ver uint32
    pkg syscall (netbsd-arm64-cgo), type Sysctlnode struct, X__rsvd uint32
    Plain Text
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Thu Aug 08 18:44:16 GMT 2019
    - 452.6K bytes
    - Viewed (0)
  8. api/go1.txt

    pkg math/big, method (*Rat) Inv(*Rat) *Rat
    pkg math/big, method (*Rat) IsInt() bool
    pkg math/big, method (*Rat) Mul(*Rat, *Rat) *Rat
    pkg math/big, method (*Rat) Neg(*Rat) *Rat
    pkg math/big, method (*Rat) Num() *Int
    pkg math/big, method (*Rat) Quo(*Rat, *Rat) *Rat
    pkg math/big, method (*Rat) RatString() string
    pkg math/big, method (*Rat) Scan(fmt.ScanState, int32) error
    pkg math/big, method (*Rat) Set(*Rat) *Rat
    Plain Text
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Wed Aug 14 18:58:28 GMT 2013
    - 1.7M bytes
    - Viewed (1)
  9. api/go1.2.txt

    pkg syscall (netbsd-386), type Sysctlnode struct
    pkg syscall (netbsd-386), type Sysctlnode struct, Flags uint32
    pkg syscall (netbsd-386), type Sysctlnode struct, Name [32]int8
    pkg syscall (netbsd-386), type Sysctlnode struct, Num int32
    pkg syscall (netbsd-386), type Sysctlnode struct, Un [16]uint8
    pkg syscall (netbsd-386), type Sysctlnode struct, Ver uint32
    pkg syscall (netbsd-386), type Sysctlnode struct, X__rsvd uint32
    Plain Text
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Fri Oct 18 04:36:59 GMT 2013
    - 1.9M bytes
    - Viewed (2)
Back to top