Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for Chaves (0.32 sec)

  1. src/cmd/asm/internal/asm/testdata/amd64enc_extra.s

    	SHA256MSG2 X11, X11      // 450f38cddb
    	// Test VPERMQ with both uint8 and int8 immediate args
    	VPERMQ $-40, Y8, Y8 // c443fd00c0d8
    	VPERMQ $216, Y8, Y8 // c443fd00c0d8
    	// Test that VPERMPD that shares ytab list with VPERMQ continues to work too.
    	VPERMPD $-40, Y7, Y7 // c4e3fd01ffd8
    	VPERMPD $216, Y7, Y7 // c4e3fd01ffd8
    	// Check that LEAL is permitted to use overflowing offset.
    Others
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Tue Apr 11 18:32:50 GMT 2023
    - 57.6K bytes
    - Viewed (0)
  2. doc/go1.17_spec.html

    structurally equivalent; that is, they have the same literal structure and corresponding
    components have identical types. In detail:
    </p>
    
    <ul>
    	<li>Two array types are identical if they have identical element types and
    	    the same array length.</li>
    
    	<li>Two slice types are identical if they have identical element types.</li>
    
    HTML
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Thu Apr 11 20:22:45 GMT 2024
    - 211.6K bytes
    - Viewed (0)
  3. src/cmd/asm/internal/asm/testdata/amd64enc.s

    	XSAVEOPT (R11)                          // 410fae33
    	XSAVEOPT64 (BX)                         // 480fae33
    	XSAVEOPT64 (R11)                        // 490fae33
    	XSAVES (BX)                             // 0fc72b
    	XSAVES (R11)                            // 410fc72b
    	XSAVES64 (BX)                           // 480fc72b
    	XSAVES64 (R11)                          // 490fc72b
    Others
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Fri Oct 08 21:38:44 GMT 2021
    - 581.9K bytes
    - Viewed (0)
  4. src/builtin/builtin.go

    // the usual way, and then F returns to its caller. To the caller G, the
    // invocation of F then behaves like a call to panic, terminating G's
    // execution and running any deferred functions. This continues until all
    // functions in the executing goroutine have stopped, in reverse order. At
    // that point, the program is terminated with a non-zero exit code. This
    Go
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Thu Apr 11 20:22:45 GMT 2024
    - 12.7K bytes
    - Viewed (0)
  5. doc/go_spec.html

    structurally equivalent; that is, they have the same literal structure and corresponding
    components have identical types. In detail:
    </p>
    
    <ul>
    	<li>Two array types are identical if they have identical element types and
    	    the same array length.</li>
    
    	<li>Two slice types are identical if they have identical element types.</li>
    
    HTML
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Thu Apr 11 20:22:45 GMT 2024
    - 279.3K bytes
    - Viewed (0)
  6. src/cmd/asm/internal/asm/endtoend_test.go

    		for len(output) > 0 && (output[0] < want || output[0] != want && len(output[0]) >= 5 && output[0][:5] == want[:5]) {
    			if len(output[0]) >= 5 && output[0][:5] == want[:5] {
    				t.Errorf("mismatched output:\nhave %s\nwant %s", output[0], want)
    				output = output[1:]
    				continue Diff
    			}
    			t.Errorf("unexpected output: %q", output[0])
    			output = output[1:]
    		}
    		if len(output) > 0 && output[0] == want {
    Go
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Thu Dec 07 18:42:59 GMT 2023
    - 11.6K bytes
    - Viewed (0)
  7. api/go1.2.txt

    pkg syscall (netbsd-386), const ETHERTYPE_FLOWCONTROL ideal-int
    pkg syscall (netbsd-386), const ETHERTYPE_FRARP ideal-int
    pkg syscall (netbsd-386), const ETHERTYPE_GENDYN ideal-int
    pkg syscall (netbsd-386), const ETHERTYPE_HAYES ideal-int
    pkg syscall (netbsd-386), const ETHERTYPE_HIPPI_FP ideal-int
    pkg syscall (netbsd-386), const ETHERTYPE_HITACHI ideal-int
    pkg syscall (netbsd-386), const ETHERTYPE_HP ideal-int
    Plain Text
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Fri Oct 18 04:36:59 GMT 2013
    - 1.9M bytes
    - Viewed (2)
  8. src/cmd/api/main_test.go

    // listSem is a semaphore restricting concurrent invocations of 'go list'. 'go
    // list' has its own internal concurrency, so we use a hard-coded constant (to
    // allow the I/O-intensive phases of 'go list' to overlap) instead of scaling
    // all the way up to GOMAXPROCS.
    var listSem = make(chan semToken, 2)
    
    type semToken struct{}
    
    Go
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Tue Apr 09 20:48:51 GMT 2024
    - 31.4K bytes
    - Viewed (0)
  9. doc/go1.22.html

          this functionality is controlled by a <a href="/doc/godebug"><code>GODEBUG</code></a> field named <code>gotypesalias</code>.
          With <code>gotypesalias=0</code>, everything behaves as before, and <code>Alias</code> types are never created.
          With <code>gotypesalias=1</code>, <code>Alias</code> types are created and clients must expect them.
          The default is <code>gotypesalias=0</code>.
    HTML
    - Registered: Tue Feb 06 11:13:10 GMT 2024
    - Last Modified: Wed Jan 31 20:51:56 GMT 2024
    - 45.6K bytes
    - Viewed (0)
Back to top