Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 491 for small8 (0.37 sec)

  1. test/inline_sync.go

    	once.Do(small5) // ERROR "inlining call to sync\.\(\*Once\)\.Do" "inlining call to atomic\.\(\*Uint32\)\.Load"
    }
    
    var rwmutex *sync.RWMutex
    
    func small8() { // ERROR "can inline small8"
    	// the RUnlock fast path should be inlined
    	rwmutex.RUnlock() // ERROR "inlining call to sync\.\(\*RWMutex\)\.RUnlock" "inlining call to atomic\.\(\*Int32\)\.Add"
    }
    
    func small9() { // ERROR "can inline small9"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 06 21:01:50 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/img/build-cache/compare-small.svg

    compare-small.svg...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/img/build-cache/compare-small-b.svg

    compare-small-b.svg...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 3K bytes
    - Viewed (0)
  4. src/cmd/internal/cov/testdata/small.go

    Than McIntosh <******@****.***> 1675886768 -0500
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 10 18:12:25 UTC 2023
    - 66 bytes
    - Viewed (0)
  5. src/archive/tar/testdata/small.txt

    Russ Cox <******@****.***> 1410149331 -0400
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 5 bytes
    - Viewed (0)
  6. src/strconv/itoa.go

    	if fastSmalls && i < nSmalls && base == 10 {
    		return append(dst, small(int(i))...)
    	}
    	dst, _ = formatBits(dst, i, base, false, true)
    	return dst
    }
    
    // small returns the string for an i with 0 <= i < nSmalls.
    func small(i int) string {
    	if i < 10 {
    		return digits[i : i+1]
    	}
    	return smallsString[i*2 : i*2+2]
    }
    
    const nSmalls = 100
    
    const smallsString = "00010203040506070809" +
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:21:28 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  7. src/go/printer/testdata/linebreaks.golden

    			&writerTestEntry{
    				header: &Header{
    					Name:		"small.txt",
    					Mode:		0640,
    					Uid:		73025,
    					Gid:		5000,
    					Size:		5,
    					Mtime:		1246508266,
    					Typeflag:	'0',
    					Uname:		"dsymonds",
    					Gname:		"eng",
    				},
    				contents:	"Kilts",
    			},
    			&writerTestEntry{
    				header: &Header{
    					Name:		"small2.txt",
    					Mode:		0640,
    					Uid:		73025,
    					Gid:		5000,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 11 22:03:18 UTC 2018
    - 5.1K bytes
    - Viewed (0)
  8. src/go/printer/testdata/linebreaks.input

    			&writerTestEntry{
    				header: &Header{
    					Name: "small.txt",
    					Mode: 0640,
    					Uid: 73025,
    					Gid: 5000,
    					Size: 5,
    					Mtime: 1246508266,
    					Typeflag: '0',
    					Uname: "dsymonds",
    					Gname: "eng",
    				},
    				contents: "Kilts",
    			},
    			&writerTestEntry{
    				header: &Header{
    					Name: "small2.txt",
    					Mode: 0640,
    					Uid: 73025,
    					Gid: 5000,
    					Size: 11,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 11 22:03:18 UTC 2018
    - 5.1K bytes
    - Viewed (0)
  9. test/method5.go

    package main
    
    // Concrete types implementing M method.
    // Smaller than a word, word-sized, larger than a word.
    // Value and pointer receivers.
    
    type Tinter interface {
    	M(int, byte) (byte, int)
    }
    
    type Tsmallv byte
    
    func (v Tsmallv) M(x int, b byte) (byte, int) { return b, x+int(v) }
    
    type Tsmallp byte
    
    func (p *Tsmallp) M(x int, b byte) (byte, int) { return b, x+int(*p) }
    
    type Twordv uintptr
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 6.7K bytes
    - Viewed (0)
  10. src/runtime/mem_windows.go

    	// on all our VirtualAlloc calls, try freeing successively smaller pieces until
    	// we manage to free something, and then repeat. This ends up being O(n log n)
    	// in the worst case, but that's fast enough.
    	for n > 0 {
    		small := n
    		for small >= 4096 && stdcall3(_VirtualFree, uintptr(v), small, _MEM_DECOMMIT) == 0 {
    			small /= 2
    			small &^= 4096 - 1
    		}
    		if small < 4096 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 19:05:10 UTC 2023
    - 3.9K bytes
    - Viewed (0)
Back to top