Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. 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 30 11:13:12 GMT 2024
    - Last Modified: Mon Apr 10 15:50:11 GMT 2023
    - 3K bytes
    - Viewed (0)
  2. 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 28 19:28:10 GMT 2024
    - Last Modified: Thu Apr 11 17:45:28 GMT 2024
    - 4.7K bytes
    - Viewed (0)
  3. 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 30 11:13:12 GMT 2024
    - Last Modified: Sat May 14 23:57:43 GMT 2022
    - 6.3K bytes
    - Viewed (0)
  4. 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 May 03 11:42:14 GMT 2024
    - Last Modified: Mon Jan 08 01:13:22 GMT 2024
    - 4.8K bytes
    - Viewed (0)
  5. build-logic-commons/code-quality-rules/src/main/resources/checkstyle/checkstyle.xml

            </module>
            <!--<module name="WhitespaceAround">-->
                <!-- everything except { and } -->
    XML
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Fri Dec 16 22:05:16 GMT 2022
    - 6.3K bytes
    - Viewed (0)
  6. 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 30 11:13:12 GMT 2024
    - Last Modified: Fri Nov 18 17:59:44 GMT 2022
    - 6.1K bytes
    - Viewed (0)
  7. okhttp-tls/src/main/kotlin/okhttp3/tls/internal/der/DerWriter.kt

        sink().write(value.toByteArray())
      }
    
      fun writeLong(v: Long) {
        val sink = sink()
    
        val lengthBitCount: Int =
          if (v < 0L) {
            65 - java.lang.Long.numberOfLeadingZeros(v xor -1L)
          } else {
            65 - java.lang.Long.numberOfLeadingZeros(v)
          }
    
        val lengthByteCount = (lengthBitCount + 7) / 8
        for (shift in (lengthByteCount - 1) * 8 downTo 0 step 8) {
    Plain Text
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Mon Jan 08 01:13:22 GMT 2024
    - 5.7K bytes
    - Viewed (0)
Back to top