Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for I32And (0.15 sec)

  1. src/internal/bytealg/indexbyte_wasm.s

    			Tee R3
    			Get R0
    			I32Const $3
    			I32And
    			I32Const $0
    			I32Ne
    			I32And
    			If
    				Loop
    					Get R0
    					I32Load8U $0
    					Get R1
    					I32Eq
    					BrIf $2
    					Get R2
    					I32Const $-1
    					I32Add
    					Tee R2
    					I32Const $0
    					I32Ne
    					Tee R3
    					Get R0
    					I32Const $1
    					I32Add
    					Tee R0
    					I32Const $3
    					I32And
    					I32Const $0
    					I32Ne
    					I32And
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 03:59:19 UTC 2019
    - 2.5K bytes
    - Viewed (0)
  2. src/internal/bytealg/compare_wasm.s

    	I32Const $1
    	I32Add
    	Set R1
    	I32Const $0
    	Get R2
    	I32Const $-1
    	I32Add
    	Tee R2
    	I32Eqz
    	BrIf $3
    	Drop
    	Br $1
    	End
    	End
    	Get R3
    	I32Const $255
    	I32And
    	Get R4
    	I32Const $255
    	I32And
    	I32Sub
    	Else
    	I32Const $0
    	End
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 11 04:00:35 UTC 2019
    - 1.4K bytes
    - Viewed (0)
  3. src/cmd/internal/obj/wasm/anames.go

    	"F64Ne",
    	"F64Lt",
    	"F64Gt",
    	"F64Le",
    	"F64Ge",
    	"I32Clz",
    	"I32Ctz",
    	"I32Popcnt",
    	"I32Add",
    	"I32Sub",
    	"I32Mul",
    	"I32DivS",
    	"I32DivU",
    	"I32RemS",
    	"I32RemU",
    	"I32And",
    	"I32Or",
    	"I32Xor",
    	"I32Shl",
    	"I32ShrS",
    	"I32ShrU",
    	"I32Rotl",
    	"I32Rotr",
    	"I64Clz",
    	"I64Ctz",
    	"I64Popcnt",
    	"I64Add",
    	"I64Sub",
    	"I64Mul",
    	"I64DivS",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 02 05:28:55 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  4. src/crypto/md5/md5_test.go

    // Tests a problem that is outlined in GitHub issue #29541
    // The problem is triggered when an amount of data has been hashed for which
    // the data length has a 1 in the 32nd bit. When casted to int, this changes
    // the sign of the value, and causes the modulus operation to return a
    // different result.
    type unmarshalTest struct {
    	state string
    	sum   string
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 23 16:54:46 UTC 2021
    - 17.4K bytes
    - Viewed (0)
  5. src/crypto/sha1/sha1_test.go

    // Tests a problem that is outlined in GitHub issue #29543
    // The problem is triggered when an amount of data has been hashed for which
    // the data length has a 1 in the 32nd bit. When casted to int, this changes
    // the sign of the value, and causes the modulus operation to return a
    // different result.
    type unmarshalTest struct {
    	state string
    	sum   string
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 03 21:27:16 UTC 2023
    - 18.3K bytes
    - Viewed (0)
  6. src/crypto/sha256/sha256_test.go

    // Tests a problem that is outlined in GitHub issue #29517
    // The problem is triggered when an amount of data has been hashed for which
    // the data length has a 1 in the 32nd bit. When casted to int, this changes
    // the sign of the value, and causes the modulus operation to return a
    // different result.
    type unmarshalTest struct {
    	state string
    	sum   string
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 03 21:21:42 UTC 2023
    - 34.8K bytes
    - Viewed (0)
  7. src/crypto/sha512/sha512_test.go

    // Tests a problem that is outlined in GitHub issue #29541
    // The problem is triggered when an amount of data has been hashed for which
    // the data length has a 1 in the 32nd bit. When casted to int, this changes
    // the sign of the value, and causes the modulus operation to return a
    // different result.
    type unmarshalTest struct {
    	state string
    	sum   string
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 03 21:17:08 UTC 2023
    - 105.6K bytes
    - Viewed (0)
Back to top