Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 483 for iota (0.04 sec)

  1. src/cmd/internal/obj/loong64/a.out.go

    const (
    	NSNAME = 8
    	NSYM   = 50
    	NREG   = 32 // number of general registers
    	NFREG  = 32 // number of floating point registers
    )
    
    const (
    	REG_R0 = obj.RBaseLOONG64 + iota // must be a multiple of 32
    	REG_R1
    	REG_R2
    	REG_R3
    	REG_R4
    	REG_R5
    	REG_R6
    	REG_R7
    	REG_R8
    	REG_R9
    	REG_R10
    	REG_R11
    	REG_R12
    	REG_R13
    	REG_R14
    	REG_R15
    	REG_R16
    	REG_R17
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 02:04:54 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  2. src/go/printer/testdata/comments.golden

    const c0 = 0	// zero
    const (
    	c1	= iota	// c1
    	c2		// c2
    )
    
    // Alignment of comments in declarations>
    const (
    	_	T	= iota	// comment
    	_			// comment
    	_			// comment
    	_	= iota + 10
    	_	// comments
    
    	_		= 10	// comment
    	_	T	= 20	// comment
    )
    
    const (
    	_____	= iota	// foo
    	_		// bar
    	_	= 0	// bal
    	_		// bat
    )
    
    const (
    	_	T	= iota	// comment
    	_			// comment
    	_			// comment
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 25 23:11:14 UTC 2022
    - 11.3K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/typecheck/bexport.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package typecheck
    
    // Tags. Must be < 0.
    const (
    	// Objects
    	packageTag = -(iota + 1)
    	constTag
    	typeTag
    	varTag
    	funcTag
    	endTag
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 26 21:52:50 UTC 2023
    - 293 bytes
    - Viewed (0)
  4. src/syscall/security_windows.go

    		}
    		if e != ERROR_INSUFFICIENT_BUFFER {
    			return "", e
    		}
    		if n <= uint32(len(b)) {
    			return "", e
    		}
    	}
    }
    
    const (
    	// do not reorder
    	NetSetupUnknownStatus = iota
    	NetSetupUnjoined
    	NetSetupWorkgroupName
    	NetSetupDomainName
    )
    
    type UserInfo10 struct {
    	Name       *uint16
    	Comment    *uint16
    	UsrComment *uint16
    	FullName   *uint16
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 12 16:42:41 UTC 2023
    - 10K bytes
    - Viewed (0)
  5. src/go/doc/testdata/b.0.golden

    // 
    PACKAGE b
    
    IMPORTPATH
    	testdata/b
    
    IMPORTS
    	a
    
    FILENAMES
    	testdata/b.go
    
    CONSTANTS
    	// 
    	const (
    		C1	notExported	= iota
    		C2
    	
    		C4
    		C5
    	)
    
    	// 
    	const C notExported = 0
    
    	// 
    	const Pi = 3.14	// Pi
    
    
    VARIABLES
    	// 
    	var (
    		U1, U2, U4, U5	notExported
    	
    		U7	notExported	= 7
    	)
    
    	// 
    	var MaxInt int	// MaxInt
    
    	// 
    	var V notExported
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 11 16:05:02 UTC 2022
    - 766 bytes
    - Viewed (0)
  6. src/internal/trace/event/requirements.go

    type SchedReqs struct {
    	Thread    Constraint
    	Proc      Constraint
    	Goroutine Constraint
    }
    
    // Constraint represents a various presence requirements.
    type Constraint uint8
    
    const (
    	MustNotHave Constraint = iota
    	MayHave
    	MustHave
    )
    
    // UserGoReqs is a common requirement among events that are running
    // or are close to running user code.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 685 bytes
    - Viewed (0)
  7. src/vendor/golang.org/x/text/unicode/bidi/trieval.go

    // Code generated by running "go generate" in golang.org/x/text. DO NOT EDIT.
    
    package bidi
    
    // Class is the Unicode BiDi class. Each rune has a single class.
    type Class uint
    
    const (
    	L       Class = iota // LeftToRight
    	R                    // RightToLeft
    	EN                   // EuropeanNumber
    	ES                   // EuropeanSeparator
    	ET                   // EuropeanTerminator
    	AN                   // ArabicNumber
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 22 17:16:14 UTC 2022
    - 1.2K bytes
    - Viewed (0)
  8. src/runtime/os_wasip1.go

    //go:noescape
    func random_get(buf unsafe.Pointer, bufLen size) errno
    
    type eventtype = uint8
    
    const (
    	eventtypeClock eventtype = iota
    	eventtypeFdRead
    	eventtypeFdWrite
    )
    
    type eventrwflags = uint16
    
    const (
    	fdReadwriteHangup eventrwflags = 1 << iota
    )
    
    type userdata = uint64
    
    // The go:wasmimport directive currently does not accept values of type uint16
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 05 20:34:30 UTC 2023
    - 7K bytes
    - Viewed (0)
  9. src/cmd/cgo/internal/test/issue30527/b.go

    // Copyright 2019 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package issue30527
    
    const (
    	X = 1 << iota
    	Y
    	Z
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 12:00:02 UTC 2023
    - 211 bytes
    - Viewed (0)
  10. src/cmd/compile/internal/types2/decl.go

    func (check *Checker) constDecl(obj *Const, typ, init syntax.Expr, inherited bool) {
    	assert(obj.typ == nil)
    
    	// use the correct value of iota and errpos
    	defer func(iota constant.Value, errpos syntax.Pos) {
    		check.iota = iota
    		check.errpos = errpos
    	}(check.iota, check.errpos)
    	check.iota = obj.val
    	check.errpos = nopos
    
    	// provide valid constant value under all circumstances
    	obj.val = constant.MakeUnknown()
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 29.6K bytes
    - Viewed (0)
Back to top