Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for floor (0.17 sec)

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

    	JCS	2(PC)
    	JMP	*(R12) // JMP (R12)
    	JCS	2(PC)
    //	JMP	*(R12*4) // TODO: This line is silently dropped on the floor!
    	JCS	2(PC)
    	JMP	*(R12)(R13*4) // JMP (R12)(R13*4)
    	JCS	2(PC)
    	JMP	*(AX) // JMP (AX)
    	JCS	2(PC)
    	JMP	*(SP) // JMP (SP)
    	JCS	2(PC)
    //	JMP	*(AX*4) // TODO: This line is silently dropped on the floor!
    	JCS	2(PC)
    	JMP	*(AX)(AX*4) // JMP (AX)(AX*4)
    	JCS	2(PC)
    	JMP	4(SP)
    	JCS	2(PC)
    	JMP	(R12)
    	JCS	2(PC)
    Others
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Tue Apr 09 18:57:21 GMT 2019
    - 3.3K bytes
    - Viewed (0)
  2. src/cmd/asm/internal/asm/testdata/386.s

    //	CALL	(AX*4) // TODO: This line is silently dropped on the floor!
    	CALL	foo+4(SB)(AX*4)
    	CALL	*4(SP) // CALL 4(SP)
    	CALL	*(AX) // CALL (AX)
    	CALL	*(SP) // CALL (SP)
    //	CALL	*(AX*4) // TODO: This line is silently dropped on the floor!
    	CALL	*(AX)(AX*4) // CALL (AX)(AX*4)
    	CALL	4(SP)
    	CALL	(AX)
    	CALL	(SP)
    //	CALL	(AX*4) // TODO: This line is silently dropped on the floor!
    	JCS	2(PC)
    	JMP	(AX)(AX*4)
    
    Others
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Tue Apr 09 18:57:21 GMT 2019
    - 2K bytes
    - Viewed (0)
  3. misc/wasm/wasm_exec.js

    			this._scheduledTimeouts = new Map();
    			this._nextCallbackTimeoutID = 1;
    
    			const setInt64 = (addr, v) => {
    				this.mem.setUint32(addr + 0, v, true);
    				this.mem.setUint32(addr + 4, Math.floor(v / 4294967296), true);
    			}
    
    			const setInt32 = (addr, v) => {
    				this.mem.setUint32(addr + 0, v, true);
    			}
    
    			const getInt64 = (addr) => {
    				const low = this.mem.getUint32(addr + 0, true);
    JavaScript
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Mon May 22 17:47:47 GMT 2023
    - 16.3K bytes
    - Viewed (1)
  4. src/cmd/asm/internal/asm/testdata/s390x.s

    	NEG	R1                    // b9030011
    	NEG	R1, R2                // b9030021
    	NEGW	R1                    // b9130011
    	NEGW	R1, R2                // b9130021
    	FLOGR	R2, R2                // b9830022
    	POPCNT	R3, R4                // b9e10043
    
    	AND	R1, R2                // b9800021
    	AND	R1, R2, R3            // b9e42031
    	AND	$-2, R1               // a517fffe
    Others
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Wed Nov 22 03:55:32 GMT 2023
    - 21.6K bytes
    - Viewed (0)
  5. api/go1.txt

    pkg math, func Float32bits(float32) uint32
    pkg math, func Float32frombits(uint32) float32
    pkg math, func Float64bits(float64) uint64
    pkg math, func Float64frombits(uint64) float64
    pkg math, func Floor(float64) float64
    pkg math, func Frexp(float64) (float64, int)
    pkg math, func Gamma(float64) float64
    pkg math, func Hypot(float64, float64) float64
    pkg math, func Ilogb(float64) int
    pkg math, func Inf(int) float64
    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)
Back to top