Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 14 of 14 for pbit32 (0.16 sec)

  1. src/internal/trace/internal/oldtrace/parser.go

    		}
    
    		var pid32 int32
    		if pid == math.MaxUint64 {
    			pid32 = -1
    		} else {
    			pid32 = int32(pid)
    		}
    
    		v, err := p.readVal()
    		if err != nil {
    			return err
    		}
    
    		*ev = rawEvent{
    			typ:         EvBatch,
    			args:        p.args[:0],
    			batchPid:    pid32,
    			batchOffset: off,
    		}
    		ev.args = append(ev.args, pid, v)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 21:15:28 UTC 2024
    - 46.8K bytes
    - Viewed (0)
  2. src/runtime/race/testdata/mop_test.go

    		ch <- true
    	}()
    	a = [5]int{1, 2, 3, 4, 5}
    	<-ch
    }
    
    // Blows up a naive compiler.
    func TestRaceNestedArrayCopy(t *testing.T) {
    	ch := make(chan bool, 1)
    	type (
    		Point32   [2][2][2][2][2]Point
    		Point1024 [2][2][2][2][2]Point32
    		Point32k  [2][2][2][2][2]Point1024
    		Point1M   [2][2][2][2][2]Point32k
    	)
    	var a, b Point1M
    	go func() {
    		a[0][1][0][1][0][1][0][1][0][1][0][1][0][1][0][1][0][1][0][1].y = 1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 23 16:46:25 UTC 2023
    - 28.9K bytes
    - Viewed (0)
  3. doc/go1.17_spec.html

    	bit1, mask1                           // bit1 == 2, mask1 == 1  (iota == 1)
    	_, _                                  //                        (iota == 2, unused)
    	bit3, mask3                           // bit3 == 8, mask3 == 7  (iota == 3)
    )
    </pre>
    
    <p>
    This last example exploits the <a href="#Constant_declarations">implicit repetition</a>
    of the last non-empty expression list.
    </p>
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 211.6K bytes
    - Viewed (0)
  4. doc/go_spec.html

    	bit1, mask1                           // bit1 == 2, mask1 == 1  (iota == 1)
    	_, _                                  //                        (iota == 2, unused)
    	bit3, mask3                           // bit3 == 8, mask3 == 7  (iota == 3)
    )
    </pre>
    
    <p>
    This last example exploits the <a href="#Constant_declarations">implicit repetition</a>
    of the last non-empty expression list.
    </p>
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 21:07:21 UTC 2024
    - 281.5K bytes
    - Viewed (0)
Back to top