Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 22 for Oxor (0.18 sec)

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

    	OR $16711680, R3, R4            // 646400ff
    
    	XOR $1, R3                      // 68630001
    	XOR $1, R3, R4                  // 68640001
    	XOR $-1, R4                     // 3be0ffff7fe42278
    	XOR $-1, R4, R5                 // 3be0ffff7fe52278
    	XOR $65535, R5                  // 68a5ffff
    	XOR $65535, R5, R6              // 68a6ffff
    	XOR $65536, R6                  // 6cc60001
    	XOR $65536, R6, R7              // 6cc70001
    Others
    - Registered: Tue Apr 16 11:13:10 GMT 2024
    - Last Modified: Mon Apr 01 18:50:29 GMT 2024
    - 48.8K bytes
    - Viewed (0)
  2. src/cmd/asm/internal/asm/testdata/loong64enc2.s

    	OR	$4096, R4		// 3e00001484781500
    	OR	$-1, R4, R5		// 1efcbf0285781500
    	OR	$-1, R4			// 1efcbf0284781500
    	XOR	$65536, R4, R5		// 1e02001485f81500
    	XOR	$4096, R4, R5		// 3e00001485f81500
    	XOR	$65536, R4		// 1e02001484f81500
    	XOR	$4096, R4		// 3e00001484f81500
    	XOR	$-1, R4, R5		// 1efcbf0285f81500
    	XOR	$-1, R4			// 1efcbf0284f81500
    	MOVH	R4, R5			// 85c04000a5c04800
    
    	// relocation instructions
    Others
    - Registered: Tue Apr 16 11:13:10 GMT 2024
    - Last Modified: Mon Apr 10 15:50:11 GMT 2023
    - 3K bytes
    - Viewed (0)
  3. src/cmd/asm/internal/asm/testdata/mips64.s

    	ROTRV	$63, R22	// 0036b7fe
    
    
    //	LAND/LXOR/LNOR/LOR rreg ',' rreg
    //	{
    //		outcode(int($1), &$2, 0, &$4);
    //	}
    	AND	R14, R8		// 010e4024
    	XOR	R15, R9		// 012f4826
    	NOR	R16, R10	// 01505027
    	OR	R17, R11	// 01715825
    
    //	LAND/LXOR/LOR imm ',' rreg
    //	{
    //		outcode(int($1), &$2, 0, &$4);
    //	}
    	AND	$11, R17, R7	// 3227000b
    	XOR	$341, R1, R23	// 38370155
    	OR	$254, R25, R13	// 372d00fe
    //
    Others
    - Registered: Tue Apr 16 11:13:10 GMT 2024
    - Last Modified: Tue Aug 08 12:17:12 GMT 2023
    - 12.4K bytes
    - Viewed (0)
  4. cmd/xl-storage-format-utils.go

    func hashDeterministicString(m map[string]string) uint64 {
    	// Seed (random)
    	crc := uint64(0xc2b40bbac11a7295)
    	// Xor each value to make order independent
    	for k, v := range m {
    		// Separate key and value with an individual xor with a random number.
    		// Add values of each, so they cannot be trivially collided.
    Go
    - Registered: Sun Apr 14 19:28:10 GMT 2024
    - Last Modified: Thu Apr 11 17:45:28 GMT 2024
    - 4.7K bytes
    - Viewed (0)
  5. src/cmd/asm/internal/asm/testdata/loong64enc3.s

    	OR	$74565, R4, R5			// 5e020014de178d0385781500
    	OR	$4097, R4			// 3e000014de07800384781500
    	OR	$4097, R4, R5			// 3e000014de07800385781500
    	XOR	$74565, R4			// 5e020014de178d0384f81500
    	XOR	$74565, R4, R5			// 5e020014de178d0385f81500
    	XOR	$4097, R4			// 3e000014de07800384f81500
    Others
    - Registered: Tue Apr 16 11:13:10 GMT 2024
    - Last Modified: Sat May 14 23:57:43 GMT 2022
    - 6.3K bytes
    - Viewed (0)
  6. build-logic-commons/code-quality-rules/src/main/resources/checkstyle/checkstyle.xml

            </module>
            <!--<module name="WhitespaceAround">-->
                <!-- everything except { and } -->
    XML
    - Registered: Wed Apr 17 11:36:08 GMT 2024
    - Last Modified: Fri Dec 16 22:05:16 GMT 2022
    - 6.3K bytes
    - Viewed (0)
  7. okhttp/src/main/kotlin/okhttp3/internal/ws/WebSocketProtocol.kt

              keyIndex %= keyLength // Reassign to prevent overflow breaking counter.
    
              // Byte xor is experimental in Kotlin so we coerce bytes to int, xor them
              // and convert back to byte.
              val bufferInt: Int = buffer[i].toInt()
              val keyInt: Int = key[keyIndex].toInt()
              buffer[i] = (bufferInt xor keyInt).toByte()
    
              i++
              keyIndex++
            }
          }
    Plain Text
    - Registered: Fri Apr 19 11:42:09 GMT 2024
    - Last Modified: Mon Jan 08 01:13:22 GMT 2024
    - 4.8K bytes
    - Viewed (0)
  8. src/cmd/asm/internal/asm/testdata/riscv64.s

    	AND	$1, X5					// 93f21200
    	OR	X6, X5, X7				// b3e36200
    	OR	X5, X6					// 33635300
    	OR	$1, X5, X6				// 13e31200
    	OR	$1, X5					// 93e21200
    	XOR	X6, X5, X7				// b3c36200
    	XOR	X5, X6					// 33435300
    	XOR	$1, X5, X6				// 13c31200
    	XOR	$1, X5					// 93c21200
    
    	AUIPC	$0, X10					// 17050000
    	AUIPC	$0, X11					// 97050000
    	AUIPC	$1, X10					// 17150000
    	AUIPC	$-524288, X15				// 97070080
    Others
    - Registered: Tue Apr 16 11:13:10 GMT 2024
    - Last Modified: Fri Mar 22 04:42:21 GMT 2024
    - 16.7K bytes
    - Viewed (0)
  9. src/cmd/asm/internal/asm/testdata/s390x.s

    	ORW	$65536, R1            // a51a0001
    	ORW	$-2, R1               // c01dfffffffe
    	XOR	R1, R2                // b9820021
    	XOR	R1, R2, R3            // b9e72031
    	XOR	$1, R1                // c01700000001
    	XOR	$131071, R1           // c0170001ffff
    	XOR	$65536, R1            // c01700010000
    	XOR	$-2, R1               // c0a1fffffffeb982001a
    	XORW	R1, R2                // 1721
    	XORW	R1, R2, R3            // b9f72031
    Others
    - Registered: Tue Apr 16 11:13:10 GMT 2024
    - Last Modified: Wed Nov 22 03:55:32 GMT 2023
    - 21.6K bytes
    - Viewed (0)
  10. src/cmd/asm/internal/arch/arm.go

    	if op == arm.AMRC {
    		op1 = 1
    	}
    	bits, ok := ParseARMCondition(cond)
    	if !ok {
    		return
    	}
    	offset = (0xe << 24) | // opcode
    		(op1 << 20) | // MCR/MRC
    		((int64(bits) ^ arm.C_SCOND_XOR) << 28) | // scond
    		((x0 & 15) << 8) | //coprocessor number
    		((x1 & 7) << 21) | // coprocessor operation
    		((x2 & 15) << 12) | // ARM register
    		((x3 & 15) << 16) | // Crn
    		((x4 & 15) << 0) | // Crm
    Go
    - Registered: Tue Apr 16 11:13:10 GMT 2024
    - Last Modified: Fri Nov 18 17:59:44 GMT 2022
    - 6.1K bytes
    - Viewed (0)
Back to top