Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for Vints (0.16 sec)

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

    //
    // floating point conditional branch
    //
    //	LBRA rel
    label4:
    	BFPT	1(PC)	// BFPT 1(PC)			// 4501000100000000
    	BFPT	label4	// BFPT 24			// 4501fffd00000000
    
    //inst:
    //
    // load ints and bytes
    //
    //	LMOVV rreg ',' rreg
    //	{
    //		outcode(int($1), &$2, 0, &$4);
    //	}
    	MOVV	R25, R17	// 00198825
    	MOVV	R1, R2		// 00011025
    	MOVV	LO, R1		// 00000812
    	MOVV	HI, R1		// 00000810
    Others
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Tue Aug 08 12:17:12 GMT 2023
    - 12.4K bytes
    - Viewed (0)
  2. src/cmd/cgo/doc.go

    	__typeof__(u6) *__cgo__6;
    	enum { __cgo_enum__6 = u6 };
    	__typeof__(f7) *__cgo__7;
    	__typeof__(f8) *__cgo__8;
    	__typeof__(s9) *__cgo__9;
    	__typeof__(s10) *__cgo__10;
    
    	long long __cgodebug_ints[] = {
    		0, // t1
    		0, // v2
    		0, // v3
    		i4,
    		i5,
    		u6,
    		0, // f7
    		0, // f8
    		0, // s9
    		0, // s10
    		1
    	};
    
    	double __cgodebug_floats[] = {
    		0, // t1
    		0, // v2
    Go
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Sun Mar 31 09:02:45 GMT 2024
    - 42.1K bytes
    - Viewed (0)
  3. doc/go1.17_spec.html

    </p>
    
    <pre>
    chan T          // can be used to send and receive values of type T
    chan&lt;- float64  // can only be used to send float64s
    &lt;-chan int      // can only be used to receive ints
    </pre>
    
    <p>
    The <code>&lt;-</code> operator associates with the leftmost <code>chan</code>
    possible:
    </p>
    
    <pre>
    chan&lt;- chan int    // same as chan&lt;- (chan int)
    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)
  4. src/cmd/cgo/gcc.go

    		} else {
    			n.Type = conv.Type(types[i], pos)
    			switch n.Kind {
    			case "iconst":
    				if i < len(ints) {
    					if _, ok := types[i].(*dwarf.UintType); ok {
    						n.Const = fmt.Sprintf("%#x", uint64(ints[i]))
    					} else {
    						n.Const = fmt.Sprintf("%#x", ints[i])
    					}
    				}
    			case "fconst":
    				if i >= len(floats) {
    					break
    				}
    				switch base(types[i]).(type) {
    Go
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Thu Nov 02 16:43:23 GMT 2023
    - 97K bytes
    - Viewed (0)
  5. api/go1.txt

    pkg runtime/pprof, method (*Profile) WriteTo(io.Writer, int) error
    pkg runtime/pprof, type Profile struct
    pkg sort, func Float64s([]float64)
    pkg sort, func Float64sAreSorted([]float64) bool
    pkg sort, func Ints([]int)
    pkg sort, func IntsAreSorted([]int) bool
    pkg sort, func IsSorted(Interface) bool
    pkg sort, func Search(int, func(int) bool) int
    pkg sort, func SearchFloat64s([]float64, float64) int
    Plain Text
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Wed Aug 14 18:58:28 GMT 2013
    - 1.7M bytes
    - Viewed (1)
  6. doc/go_spec.html

    </p>
    
    <pre>
    chan T          // can be used to send and receive values of type T
    chan&lt;- float64  // can only be used to send float64s
    &lt;-chan int      // can only be used to receive ints
    </pre>
    
    <p>
    The <code>&lt;-</code> operator associates with the leftmost <code>chan</code>
    possible:
    </p>
    
    <pre>
    chan&lt;- chan int    // same as chan&lt;- (chan int)
    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)
  7. src/cmd/asm/internal/asm/testdata/mips.s

    // This input was created by taking the mips64 testcase and modified
    // by hand.
    
    #include "../../../../../runtime/textflag.h"
    
    TEXT foo(SB),DUPOK|NOSPLIT,$0
    
    	//inst:
    	//
    	// load ints and bytes
    	//
    	//	LMOVW rreg ',' rreg
    	//	{
    	//		outcode(int($1), &$2, 0, &$4);
    	//	}
    	MOVW	R1, R2
    	MOVW	LO, R1
    	MOVW	HI, R1
    	MOVW	R1, LO
    	MOVW	R1, HI
    	MOVW	R1, R2
    	MOVW	LO, R1
    	MOVW	HI, R1
    Others
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Tue Aug 08 12:17:12 GMT 2023
    - 6.7K bytes
    - Viewed (0)
Back to top