Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for InMask (0.09 sec)

  1. src/cmd/internal/obj/s390x/rotate_test.go

    		{start: 62, end: 0, amount: 0, inMask: 1<<63 | 3, outMask: 1<<63 | 3},
    		{start: 63, end: 1, amount: 0, inMask: 3<<62 | 1, outMask: 3<<62 | 1},
    		{start: 62, end: 1, amount: 0, inMask: 3<<62 | 3, outMask: 3<<62 | 3},
    
    		// rotation
    		{start: 32, end: 63, amount: 32, inMask: 0xffffffff00000000, outMask: 0x00000000ffffffff},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 14 17:17:59 UTC 2020
    - 3.6K bytes
    - Viewed (0)
  2. src/cmd/internal/obj/s390x/rotate.go

    	z := uint8(63-r.End+r.Start) & 63 // number of zero bits in mask
    	return bits.RotateLeft64(^uint64(0)<<z, -int(r.Start))
    }
    
    // InMask provides a mask representing the selected bits relative
    // to the source value (i.e. pre-rotation).
    func (r RotateParams) InMask() uint64 {
    	return bits.RotateLeft64(r.OutMask(), -int(r.Amount))
    }
    
    // OutMerge tries to generate a new set of parameters representing
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 21 19:19:04 UTC 2020
    - 3.6K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/api/internal/tasks/TaskStatistics.java

                printTypeCounts("\nTask types that were created with the old API", typeCounts);
                printTypeCounts("\nTask types that were registered with the new API but were created anyways", realizedTypeCounts);
                IoActions.closeQuietly(lazyTaskLog);
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  4. okhttp/src/main/kotlin/okhttp3/internal/ws/WebSocketReader.kt

          readControlFrame()
        }
      }
    
      /**
       * Reads a message body into across one or more frames. Control frames that occur between
       * fragments will be processed. If the message payload is masked this will unmask as it's being
       * processed.
       */
      @Throws(IOException::class)
      private fun readMessage() {
        while (true) {
          if (closed) throw IOException("closed")
    
          if (frameLength > 0L) {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  5. src/runtime/signal_unix.go

    // After this is called the thread can receive signals.
    func minitSignalMask() {
    	nmask := getg().m.sigmask
    	for i := range sigtable {
    		if !blockableSig(uint32(i)) {
    			sigdelset(&nmask, i)
    		}
    	}
    	sigprocmask(_SIG_SETMASK, &nmask, nil)
    }
    
    // unminitSignals is called from dropm, via unminit, to undo the
    // effect of calling minit on a non-Go thread.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 10 16:04:54 UTC 2024
    - 45K bytes
    - Viewed (0)
Back to top