Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 52 for sizeOf (0.17 sec)

  1. api/go1.20.txt

    pkg syscall (freebsd-riscv64), type Stat_t struct, Padding1 int32 #53466
    pkg syscall (freebsd-riscv64), type Stat_t struct, Rdev uint64 #53466
    pkg syscall (freebsd-riscv64), type Stat_t struct, Size int64 #53466
    pkg syscall (freebsd-riscv64), type Stat_t struct, Spare [10]uint64 #53466
    pkg syscall (freebsd-riscv64), type Stat_t struct, Uid uint32 #53466
    pkg syscall (freebsd-riscv64), type Statfs_t struct #53466
    Plain Text
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Fri Feb 17 21:23:32 GMT 2023
    - 602.6K bytes
    - Viewed (0)
  2. api/go1.10.txt

    pkg debug/elf, const R_X86_64_REX_GOTPCRELX = 42
    pkg debug/elf, const R_X86_64_REX_GOTPCRELX R_X86_64
    pkg debug/elf, const R_X86_64_SIZE32 = 32
    pkg debug/elf, const R_X86_64_SIZE32 R_X86_64
    pkg debug/elf, const R_X86_64_SIZE64 = 33
    pkg debug/elf, const R_X86_64_SIZE64 R_X86_64
    pkg debug/elf, const R_X86_64_TLSDESC = 36
    pkg debug/elf, const R_X86_64_TLSDESC R_X86_64
    pkg debug/elf, const R_X86_64_TLSDESC_CALL = 35
    Plain Text
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Tue Feb 06 05:00:01 GMT 2018
    - 30.1K bytes
    - Viewed (0)
  3. src/archive/tar/testdata/pax-pos-size-file.tar

    Joe Tsai <******@****.***> 1503528984 -0700
    TAR Archive
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Thu Aug 24 01:35:39 GMT 2017
    - 2.5K bytes
    - Viewed (0)
  4. misc/cgo/gmp/pi.go

    			d = extractDigit()
    		}
    		eliminateDigit(d)
    		fmt.Printf("%c", d+'0')
    
    		if i++; i%50 == 0 {
    			fmt.Printf("\n")
    			if i >= 1000 {
    				break
    			}
    		}
    	}
    
    	fmt.Printf("\n%d calls; bit sizes: %d %d %d\n", runtime.NumCgoCall(), numer.Len(), accum.Len(), denom.Len())
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Mon Apr 10 22:32:35 GMT 2023
    - 1.3K bytes
    - Viewed (0)
  5. src/cmd/api/main_test.go

    		}
    		files = append(files, f)
    	}
    
    	// Type-check package files.
    	var sizes types.Sizes
    	if w.context != nil {
    		sizes = types.SizesFor(w.context.Compiler, w.context.GOARCH)
    	}
    	conf := types.Config{
    		IgnoreFuncBodies: true,
    		FakeImportC:      true,
    		Importer:         w,
    		Sizes:            sizes,
    	}
    	tpkg, err := conf.Check(name, fset, files, nil)
    	if err != nil {
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Tue Apr 09 20:48:51 GMT 2024
    - 31.4K bytes
    - Viewed (0)
  6. doc/go_mem.html

    there are limitations to what a Go implementation can do in response to a data race.
    An implementation may always react to a data race by reporting the race and terminating the program.
    Otherwise, each read of a single-word-sized or sub-word-sized memory location
    must observe a value actually written to that location (perhaps by a concurrent executing goroutine)
    and not yet overwritten.
    These implementation constraints make Go more like Java or JavaScript,
    HTML
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Mon Mar 04 15:54:42 GMT 2024
    - 26.6K bytes
    - Viewed (0)
  7. misc/cgo/gmp/gmp.go

    	typedef unsigned long int mp_limb_t;
    
    	typedef struct
    	{
    		int _mp_alloc;
    		int _mp_size;
    		mp_limb_t *_mp_d;
    	} __mpz_struct;
    
    	typedef __mpz_struct mpz_t[1];
    
    Cgo generates:
    
    	type _C_int int32
    	type _C_mp_limb_t uint64
    	type _C___mpz_struct struct {
    		_mp_alloc _C_int;
    		_mp_size _C_int;
    		_mp_d *_C_mp_limb_t;
    	}
    	type _C_mpz_t [1]_C___mpz_struct
    
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Mon Apr 11 16:34:30 GMT 2022
    - 9.5K bytes
    - Viewed (0)
  8. src/cmd/asm/internal/asm/asm.go

    	op := operands[next]
    	if len(op) < 2 || op[0].ScanToken != '$' {
    		p.errorf("TEXT %s: frame size must be an immediate constant", name)
    		return
    	}
    	op = op[1:]
    	negative := false
    	if op[0].ScanToken == '-' {
    		negative = true
    		op = op[1:]
    	}
    	if len(op) == 0 || op[0].ScanToken != scanner.Int {
    		p.errorf("TEXT %s: frame size must be an immediate constant", name)
    		return
    	}
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Wed Feb 21 14:34:57 GMT 2024
    - 25.3K bytes
    - Viewed (0)
  9. src/cmd/asm/internal/asm/endtoend_test.go

    		if text == nil {
    			t.Errorf("%s: instruction outside TEXT", p)
    		}
    		size := int64(len(text.P)) - p.Pc
    		if p.Link != nil {
    			size = p.Link.Pc - p.Pc
    		} else if p.Isize != 0 {
    			size = int64(p.Isize)
    		}
    		var code []byte
    		if p.Pc < int64(len(text.P)) {
    			code = text.P[p.Pc:]
    			if size < int64(len(code)) {
    				code = code[:size]
    			}
    		}
    		codeHex := fmt.Sprintf("%x", code)
    		if codeHex == "" {
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Thu Dec 07 18:42:59 GMT 2023
    - 11.6K bytes
    - Viewed (0)
  10. api/go1.19.txt

    pkg debug/pe, const IMAGE_COMDAT_SELECT_NODUPLICATES = 1 #51868
    pkg debug/pe, const IMAGE_COMDAT_SELECT_NODUPLICATES ideal-int #51868
    pkg debug/pe, const IMAGE_COMDAT_SELECT_SAME_SIZE = 3 #51868
    pkg debug/pe, const IMAGE_COMDAT_SELECT_SAME_SIZE ideal-int #51868
    pkg debug/pe, const IMAGE_FILE_MACHINE_LOONGARCH32 = 25138 #46229
    pkg debug/pe, const IMAGE_FILE_MACHINE_LOONGARCH32 ideal-int #46229
    Plain Text
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Fri Dec 02 16:29:41 GMT 2022
    - 17.9K bytes
    - Viewed (1)
Back to top