Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 64 for chars (0.13 sec)

  1. src/cmd/link/internal/ld/symtab.go

    			if t == sym.STLSBSS {
    				continue
    			}
    			if !shouldBeInSymbolTable(s) {
    				continue
    			}
    			char := DataSym
    			if t == sym.SBSS || t == sym.SNOPTRBSS {
    				char = BSSSym
    			}
    			putplan9sym(ctxt, ldr, s, char)
    		}
    	}
    }
    
    type byPkg []*sym.Library
    
    func (libs byPkg) Len() int {
    	return len(libs)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 13 16:29:40 UTC 2023
    - 29.2K bytes
    - Viewed (0)
  2. src/go/scanner/scanner.go

    	ErrorCount int // number of errors encountered
    }
    
    const (
    	bom = 0xFEFF // byte order mark, only permitted as very first character
    	eof = -1     // end of file
    )
    
    // Read the next Unicode char into s.ch.
    // s.ch < 0 means end-of-file.
    //
    // For optimization, there is some overlap between this method and
    // s.scanIdentifier.
    func (s *Scanner) next() {
    	if s.rdOffset < len(s.src) {
    		s.offset = s.rdOffset
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 24.3K bytes
    - Viewed (0)
  3. src/runtime/select.go

    			}
    			if c.qcount < c.dataqsiz {
    				goto bufsend
    			}
    		}
    	}
    
    	if !block {
    		selunlock(scases, lockorder)
    		casi = -1
    		goto retc
    	}
    
    	// pass 2 - enqueue on all chans
    	gp = getg()
    	if gp.waiting != nil {
    		throw("gp.waiting != nil")
    	}
    	nextp = &gp.waiting
    	for _, casei := range lockorder {
    		casi = int(casei)
    		cas = &scases[casi]
    		c = cas.c
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 13 21:36:04 UTC 2024
    - 15K bytes
    - Viewed (0)
  4. src/syscall/ztypes_linux_arm64.go

    // Created by cgo -godefs - DO NOT EDIT
    // cgo -godefs -- -fsigned-char types_linux.go
    
    //go:build arm64 && linux
    
    package syscall
    
    const (
    	sizeofPtr      = 0x8
    	sizeofShort    = 0x2
    	sizeofInt      = 0x4
    	sizeofLong     = 0x8
    	sizeofLongLong = 0x8
    	PathMax        = 0x1000
    )
    
    type (
    	_C_short     int16
    	_C_int       int32
    	_C_long      int64
    	_C_long_long int64
    )
    
    type Timespec struct {
    	Sec  int64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 17:55:49 UTC 2023
    - 10.2K bytes
    - Viewed (0)
  5. src/cmd/cgo/internal/test/testx.go

    // issue 8331 part 2
    
    var issue8331Var C.issue8331
    
    // issue 8945
    
    //export Test8945
    func Test8945() {
    	_ = C.func8945
    }
    
    // issue 20910
    
    //export multi
    func multi() (*C.char, C.int) {
    	return C.CString("multi"), 0
    }
    
    func test20910(t *testing.T) {
    	C.callMulti()
    }
    
    // issue 28772 part 2
    
    const issue28772Constant2 = C.issue28772Constant2
    
    // issue 31891
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 17 21:53:11 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/shortcircuit.go

    	// This is probably a stronger condition than required, but this happens extremely rarely,
    	// and it makes it easier to avoid getting deceived by pretty ASCII charts. See #44465.
    	if p0, p1 := b.Preds[0].b, b.Preds[1].b; p0 == t || p1 == t || p0 == u || p1 == u {
    		return nil
    	}
    
    	// Look for some common CFG structures
    	// in which the outbound paths from b merge,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 03 17:47:02 UTC 2022
    - 12.6K bytes
    - Viewed (0)
  7. src/cmd/cgo/internal/testsanitizers/cc_test.go

    		}
    		t.Fatal(check.err)
    	}
    }
    
    var cMain = []byte(`
    int main() {
    	return 0;
    }
    `)
    
    var cLibFuzzerInput = []byte(`
    #include <stddef.h>
    int LLVMFuzzerTestOneInput(char *data, size_t size) {
    	return 0;
    }
    `)
    
    func (c *config) checkCSanitizer() (skip bool, err error) {
    	dir, err := os.MkdirTemp("", c.sanitizer)
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 09 20:00:56 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  8. src/runtime/sys_linux_amd64.s

    TEXT runtime·sched_getaffinity(SB),NOSPLIT,$0
    	MOVQ	pid+0(FP), DI
    	MOVQ	len+8(FP), SI
    	MOVQ	buf+16(FP), DX
    	MOVL	$SYS_sched_getaffinity, AX
    	SYSCALL
    	MOVL	AX, ret+24(FP)
    	RET
    
    // int access(const char *name, int mode)
    TEXT runtime·access(SB),NOSPLIT,$0
    	// This uses faccessat instead of access, because Android O blocks access.
    	MOVL	$AT_FDCWD, DI // AT_FDCWD, so this acts like access
    	MOVQ	name+0(FP), SI
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 24 18:53:44 UTC 2023
    - 15.7K bytes
    - Viewed (0)
  9. src/cmd/vendor/rsc.io/markdown/link.go

    	if p.link(label) == nil {
    		p.defineLink(label, &Link{URL: dest, Title: title, TitleChar: titleChar, corner: corner})
    	}
    	return i, true
    }
    
    func parseLinkTitle(s string, i int) (title string, char byte, next int, found bool) {
    	if i < len(s) && (s[i] == '"' || s[i] == '\'' || s[i] == '(') {
    		want := s[i]
    		if want == '(' {
    			want = ')'
    		}
    		j := i + 1
    		for ; j < len(s); j++ {
    			if s[j] == want {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 20.7K bytes
    - Viewed (0)
  10. src/encoding/xml/xml.go

    			d.err = d.syntaxError(fmt.Sprintf("illegal character code %U", r))
    			return nil
    		}
    	}
    
    	return data
    }
    
    // Decide whether the given rune is in the XML Character Range, per
    // the Char production of https://www.xml.com/axml/testaxml.htm,
    // Section 2.2 Characters.
    func isInCharacterRange(r rune) (inrange bool) {
    	return r == 0x09 ||
    		r == 0x0A ||
    		r == 0x0D ||
    		r >= 0x20 && r <= 0xD7FF ||
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 18:46:41 UTC 2024
    - 47.3K bytes
    - Viewed (0)
Back to top