Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for bit (0.12 sec)

  1. android/guava/src/com/google/common/util/concurrent/AbstractFuture.java

          if (v instanceof Cancellation) {
            // If the other future was interrupted, clear the interrupted bit while preserving the cause
            // this will make it consistent with how non-trustedfutures work which cannot propagate the
            // wasInterrupted bit
            Cancellation c = (Cancellation) v;
            if (c.wasInterrupted) {
              v =
                  c.cause != null
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Mon Apr 22 21:17:24 GMT 2024
    - 63K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/base/CharMatcher.java

       * negation is cheaper to precompute than the matcher itself; it tries to build small hash tables
       * for matchers that only match a few characters, and so on. In the worst-case scenario, it
       * constructs an eight-kilobyte bit array and queries that. In many situations this produces a
       * matcher which is faster to query than the original.
       */
      @GwtIncompatible // SmallCharMatcher
      CharMatcher precomputedInternal() {
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Fri Feb 09 15:49:48 GMT 2024
    - 53.7K bytes
    - Viewed (0)
  3. guava/src/com/google/common/base/CharMatcher.java

       * negation is cheaper to precompute than the matcher itself; it tries to build small hash tables
       * for matchers that only match a few characters, and so on. In the worst-case scenario, it
       * constructs an eight-kilobyte bit array and queries that. In many situations this produces a
       * matcher which is faster to query than the original.
       */
      @GwtIncompatible // SmallCharMatcher
      CharMatcher precomputedInternal() {
    Java
    - Registered: Fri Apr 05 12:43:09 GMT 2024
    - Last Modified: Fri Feb 09 15:49:48 GMT 2024
    - 53.8K bytes
    - Viewed (0)
  4. cmd/xl-storage-format-v2.go

    		if len(tag) != 0 {
    			allEmpty = false
    			break
    		}
    	}
    	if allEmpty {
    		c.PartETags = nil
    	}
    	if len(c.PartActualSizes) == 0 {
    		c.PartActualSizes = nil
    	}
    
    	// Get a 64 bit CRC
    	crc := hashDeterministicString(c.MetaUser)
    	crc ^= hashDeterministicBytes(c.MetaSys)
    
    	// Nil fields.
    	c.MetaSys = nil
    	c.MetaUser = nil
    
    	if bts, err := c.MarshalMsg(metaDataPoolGet()); err == nil {
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Tue Apr 23 05:07:37 GMT 2024
    - 63.6K bytes
    - Viewed (1)
  5. src/cmd/asm/internal/asm/testdata/arm64.s

    	STPW	(R3, R4), -4(RSP)   // e3933f29
    	STPW	(R3, R4), 11(RSP)   // fb2f009163130029
    	STPW	(R3, R4), 1024(RSP) // fb03109163130029
    	STPW	(R3, R4), x(SB)
    	STPW	(R3, R4), x+8(SB)
    
    // bit field operation
    	BFI	$0, R1, $1, R2      // 220040b3
    	BFIW	$0, R1, $1, R2      // 22000033
    	SBFIZ	$0, R1, $1, R2      // 22004093
    	SBFIZW	$0, R1, $1, R2      // 22000013
    	UBFIZ	$0, R1, $1, R2      // 220040d3
    Others
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Dec 08 03:28:17 GMT 2023
    - 94.9K bytes
    - Viewed (0)
Back to top