Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 138 for chars (0.05 sec)

  1. src/cmd/vendor/golang.org/x/sys/unix/ztypes_freebsd_riscv64.go

    // cgo -godefs -- -fsigned-char types_freebsd.go | go run mkpost.go
    // Code generated by the command above; see README.md. DO NOT EDIT.
    
    //go:build riscv64 && freebsd
    
    package unix
    
    const (
    	SizeofPtr      = 0x8
    	SizeofShort    = 0x2
    	SizeofInt      = 0x4
    	SizeofLong     = 0x8
    	SizeofLongLong = 0x8
    )
    
    type (
    	_C_short     int16
    	_C_int       int32
    	_C_long      int64
    	_C_long_long int64
    )
    
    type Timespec struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 9.5K bytes
    - Viewed (0)
  2. 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)
  3. src/path/filepath/match.go

    	return star, pattern[0:i], pattern[i:]
    }
    
    // matchChunk checks whether chunk matches the beginning of s.
    // If so, it returns the remainder of s (after the match).
    // Chunk is all single-character operators: literals, char classes, and ?.
    func matchChunk(chunk, s string) (rest string, ok bool, err error) {
    	// failed records whether the match has failed.
    	// After the match fails, the loop continues on processing chunk,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/syntax/testdata/map.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Package orderedmap provides an ordered map, implemented as a binary tree.
    package orderedmap
    
    import "chans"
    
    // Map is an ordered map.
    type Map[K, V any] struct {
    	root    *node[K, V]
    	compare func(K, K) int
    }
    
    // node is the type of a node in the binary tree.
    type node[K, V any] struct {
    	key         K
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 30 18:02:18 UTC 2022
    - 2.8K 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/runtime/traceback.go

    //		Data    uintptr // unused by runtime, available for function
    //	}
    //
    // In C syntax, this struct will be
    //
    //	struct {
    //		uintptr_t PC;
    //		char*     File;
    //		uintptr_t Lineno;
    //		char*     Func;
    //		uintptr_t Entry;
    //		uintptr_t More;
    //		uintptr_t Data;
    //	};
    //
    // The PC field will be a value returned by a call to the traceback
    // function.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 55.1K bytes
    - Viewed (0)
Back to top