Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 18 for plating (0.21 sec)

  1. doc/go1.17_spec.html

    0_xBadFace  // invalid: _ must separate successive digits
    </pre>
    
    
    <h3 id="Floating-point_literals">Floating-point literals</h3>
    
    <p>
    A floating-point literal is a decimal or hexadecimal representation of a
    <a href="#Constants">floating-point constant</a>.
    </p>
    
    <p>
    A decimal floating-point literal consists of an integer part (decimal digits),
    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)
  2. src/cmd/asm/internal/asm/testdata/mips64.s

    //
    //	LBRA rreg ',' rel
    //	{
    //		outcode(int($1), &$2, 0, &$4);
    //	}
    label3:
    	BLTZ	R1, 1(PC)	// BLTZ R1, 1(PC)	// 04200001
    	BLTZ	R1, label3	// BLTZ R1, 22		// 0420fffd
    
    //
    // floating point conditional branch
    //
    //	LBRA rel
    label4:
    	BFPT	1(PC)	// BFPT 1(PC)			// 4501000100000000
    	BFPT	label4	// BFPT 24			// 4501fffd00000000
    
    //inst:
    //
    // load ints and bytes
    //
    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)
  3. api/go1.13.txt

    pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_PCS = 16962
    pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_PCS ideal-int
    pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_PLANNING = 32836
    pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_PLANNING ideal-int
    pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_PPP = 34827
    pkg syscall (netbsd-arm64-cgo), const ETHERTYPE_PPP ideal-int
    Plain Text
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Thu Aug 08 18:44:16 GMT 2019
    - 452.6K bytes
    - Viewed (0)
  4. src/README.vendor

    selection in other modules. They are only considered when running
    module commands like 'go get' and 'go mod vendor' from a directory
    in GOROOT/src.
    
    Maintaining vendor directories
    ==============================
    
    Before updating vendor directories, ensure that module mode is enabled.
    Make sure that GO111MODULE is not set in the environment, or that it is
    set to 'on' or 'auto', and if you use a go.work file, set GOWORK=off.
    
    Plain Text
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Tue Apr 02 02:20:05 GMT 2024
    - 2.2K bytes
    - Viewed (0)
  5. src/cmd/asm/internal/arch/arm.go

    func IsARMBFX(op obj.As) bool {
    	switch op {
    	case arm.ABFX, arm.ABFXU, arm.ABFC, arm.ABFI:
    		return true
    	}
    	return false
    }
    
    // IsARMFloatCmp reports whether the op is a floating comparison instruction.
    func IsARMFloatCmp(op obj.As) bool {
    	switch op {
    	case arm.ACMPF, arm.ACMPD:
    		return true
    	}
    	return false
    }
    
    Go
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Fri Nov 18 17:59:44 GMT 2022
    - 6.1K bytes
    - Viewed (0)
  6. src/cmd/asm/internal/asm/testdata/arm.s

    //	}
    	STREX	R1, (R2), R3 // STREX (R2), R1, R3
    
    //
    // word
    //
    //	LTYPEH comma ximm
    //	{
    //		outcode($1, Always, &nullgen, 0, &$3);
    //	}
    	WORD	$1234
    
    //
    // floating-point coprocessor
    //
    //	LTYPEI cond freg ',' freg
    //	{
    //		outcode($1, $2, &$3, 0, &$5);
    //	}
    	ABSF	F1, F2
    
    //	LTYPEK cond frcon ',' freg
    //	{
    //		outcode($1, $2, &$3, 0, &$5);
    //	}
    Others
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Fri Dec 15 20:51:01 GMT 2023
    - 69K bytes
    - Viewed (0)
  7. src/cmd/cgo/gcc.go

    				}
    			case "fconst":
    				if i >= len(floats) {
    					break
    				}
    				switch base(types[i]).(type) {
    				case *dwarf.IntType, *dwarf.UintType:
    					// This has an integer type so it's
    					// not really a floating point
    					// constant. This can happen when the
    					// C compiler complains about using
    					// the value as an integer constant,
    					// but not as a general constant.
    					// Treat this as a variable of the
    Go
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Thu Nov 02 16:43:23 GMT 2023
    - 97K bytes
    - Viewed (0)
  8. src/builtin/builtin.go

    // int64 is the set of all signed 64-bit integers.
    // Range: -9223372036854775808 through 9223372036854775807.
    type int64 int64
    
    // float32 is the set of all IEEE 754 32-bit floating-point numbers.
    type float32 float32
    
    // float64 is the set of all IEEE 754 64-bit floating-point numbers.
    type float64 float64
    
    // complex64 is the set of all complex numbers with float32 real and
    // imaginary parts.
    type complex64 complex64
    
    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)
  9. doc/go_spec.html

    0_xBadFace  // invalid: _ must separate successive digits
    </pre>
    
    
    <h3 id="Floating-point_literals">Floating-point literals</h3>
    
    <p>
    A floating-point literal is a decimal or hexadecimal representation of a
    <a href="#Constants">floating-point constant</a>.
    </p>
    
    <p>
    A decimal floating-point literal consists of an integer part (decimal digits),
    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)
  10. src/cmd/asm/internal/asm/testdata/mips.s

    //	LBRA rreg ',' rel
    //	{
    //		outcode(int($1), &$2, 0, &$4);
    //	}
    label3:
    	BLTZ	R1, 1(PC)
    	BLTZ	R1, label3	// BLTZ R1, 85
    
    //
    // floating point conditional branch
    //
    //	LBRA rel
    label4:
    	BFPT	1(PC)
    	BFPT	label4	// BFPT 87
    
    
    	//
    	// floating point operate
    	//
    	//	LFCONV freg ',' freg
    	//	{
    	//		outcode(int($1), &$2, 0, &$4);
    	//	}
    	ABSD	F1, F2
    
    	//	LFADD freg ',' freg
    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