Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for iota (0.07 sec)

  1. doc/go_spec.html

    	b = 1 << iota  // b == 2  (iota == 1)
    	c = 3          // c == 3  (iota == 2, unused)
    	d = 1 << iota  // d == 8  (iota == 3)
    )
    
    const (
    	u         = iota * 42  // u == 0     (untyped integer constant)
    	v float64 = iota * 42  // v == 42.0  (float64 constant)
    	w         = iota * 42  // w == 84    (untyped integer constant)
    )
    
    const x = iota  // x == 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 21:07:21 UTC 2024
    - 281.5K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssagen/ssa.go

    	if s.softFloat {
    		if c, ok := s.sfcall(op, arg0, arg1); ok {
    			return c
    		}
    	}
    	return s.newValue2(op, t, arg0, arg1)
    }
    
    type instrumentKind uint8
    
    const (
    	instrumentRead = iota
    	instrumentWrite
    	instrumentMove
    )
    
    func (s *state) instrument(t *types.Type, addr *ssa.Value, kind instrumentKind) {
    	s.instrument2(t, addr, nil, kind)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  3. src/net/http/h2_bundle.go

    // https://lists.w3.org/Archives/Public/ietf-http-wg/2016JulSep/0599.html
    //
    // "reserved (remote)" is omitted since the client code does not
    // support server push.
    const (
    	http2stateIdle http2streamState = iota
    	http2stateOpen
    	http2stateHalfClosedLocal
    	http2stateHalfClosedRemote
    	http2stateClosed
    )
    
    var http2stateName = [...]string{
    	http2stateIdle:             "Idle",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/arch/ppc64/ppc64asm/tables.go

    // Code generated by ppc64map -fmt=decoder ../pp64.csv DO NOT EDIT.
    
    package ppc64asm
    
    const (
    	_ Op = iota
    	HASHCHK
    	HASHCHKP
    	HASHST
    	HASHSTP
    	BRD
    	BRH
    	BRW
    	CFUGED
    	CNTLZDM
    	CNTTZDM
    	DCFFIXQQ
    	DCTFIXQQ
    	LXVKQ
    	LXVP
    	LXVPX
    	LXVRBX
    	LXVRDX
    	LXVRHX
    	LXVRWX
    	MTVSRBM
    	MTVSRBMI
    	MTVSRDM
    	MTVSRHM
    	MTVSRQM
    	MTVSRWM
    	PADDI
    	PDEPD
    	PEXTD
    	PLBZ
    	PLD
    	PLFD
    	PLFS
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 22 17:16:14 UTC 2022
    - 334.7K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/arch/x86/x86asm/tables.go

    	/*13424*/ uint16(xArgRM64),
    	/*13425*/ uint16(xMatch),
    	/*13426*/ uint16(xSetOp), uint16(PUSH),
    	/*13428*/ uint16(xArgRM64),
    	/*13429*/ uint16(xMatch),
    }
    
    const (
    	_ Op = iota
    
    	AAA
    	AAD
    	AAM
    	AAS
    	ADC
    	ADD
    	ADDPD
    	ADDPS
    	ADDSD
    	ADDSS
    	ADDSUBPD
    	ADDSUBPS
    	AESDEC
    	AESDECLAST
    	AESENC
    	AESENCLAST
    	AESIMC
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 16 22:24:28 UTC 2022
    - 266.8K bytes
    - Viewed (0)
Back to top