Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for COMPLEMENT (0.34 sec)

  1. src/go/types/expr.go

    			return op2str2[e.Op]
    		}
    	case *ast.UnaryExpr:
    		if int(e.Op) < len(op2str1) {
    			return op2str1[e.Op]
    		}
    	}
    	return ""
    }
    
    var op2str1 = [...]string{
    	token.XOR: "bitwise complement",
    }
    
    // This is only used for operations that may cause overflow.
    var op2str2 = [...]string{
    	token.ADD: "addition",
    	token.SUB: "subtraction",
    	token.XOR: "bitwise XOR",
    	token.MUL: "multiplication",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 49.7K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/types2/expr.go

    				return op2str1[op]
    			}
    		} else {
    			if op < len(op2str2) {
    				return op2str2[op]
    			}
    		}
    	}
    	return ""
    }
    
    var op2str1 = [...]string{
    	syntax.Xor: "bitwise complement",
    }
    
    // This is only used for operations that may cause overflow.
    var op2str2 = [...]string{
    	syntax.Add: "addition",
    	syntax.Sub: "subtraction",
    	syntax.Xor: "bitwise XOR",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 51.7K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/collect/Sets.java

       * element, in order to determine the element type. If the collection could be empty, use {@link
       * #complementOf(Collection, Class)} instead of this method.
       *
       * @param collection the collection whose complement should be stored in the enum set
       * @return a new, modifiable {@code EnumSet} containing all values of the enum that aren't present
       *     in the given collection
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 77.3K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

    #else
    # define GTEST_SNPRINTF_ snprintf
    #endif
    
    // The maximum number a BiggestInt can represent.  This definition
    // works no matter BiggestInt is represented in one's complement or
    // two's complement.
    //
    // We cannot rely on numeric_limits in STL, as __int64 and long long
    // are not part of standard C++ and numeric_limits doesn't need to be
    // defined for them.
    const BiggestInt kMaxBiggestInt =
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 67.2K bytes
    - Viewed (0)
  5. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

    #else
    # define GTEST_SNPRINTF_ snprintf
    #endif
    
    // The maximum number a BiggestInt can represent.  This definition
    // works no matter BiggestInt is represented in one's complement or
    // two's complement.
    //
    // We cannot rely on numeric_limits in STL, as __int64 and long long
    // are not part of standard C++ and numeric_limits doesn't need to be
    // defined for them.
    const BiggestInt kMaxBiggestInt =
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 67.2K bytes
    - Viewed (0)
  6. guava/src/com/google/common/collect/Sets.java

       * element, in order to determine the element type. If the collection could be empty, use {@link
       * #complementOf(Collection, Class)} instead of this method.
       *
       * @param collection the collection whose complement should be stored in the enum set
       * @return a new, modifiable {@code EnumSet} containing all values of the enum that aren't present
       *     in the given collection
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 78.8K bytes
    - Viewed (0)
  7. src/debug/elf/file_test.go

    	//
    	// $readelf -h y.o
    	// ELF Header:
    	//   Magic:   7f 45 4c 46 01 01 01 00 00 00 00 00 00 00 00 00
    	//   Class:                             ELF32
    	//   Data:                              2's complement, little endian
    	//   Version:                           1 (current)
    	//   OS/ABI:                            UNIX - System V
    	//   ABI Version:                       0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 22 16:22:42 UTC 2023
    - 60.1K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/prove.go

    				continue
    			}
    
    			tr, has := domainRelationTable[control.Op]
    			if !has {
    				continue
    			}
    			r := tr.r
    			if br == negative {
    				// Negative branch taken to reach b.
    				// Complement the relations.
    				r = (lt | eq | gt) ^ r
    			}
    
    			// Check for i2 < max or max > i2.
    			var max *Value
    			if r == lt && control.Args[0] == i2 {
    				max = control.Args[1]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:30:21 UTC 2024
    - 48.9K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/rewrite.go

    // for a pseudo-op like (LessThan x), extract x.
    func flagArg(v *Value) *Value {
    	if len(v.Args) != 1 || !v.Args[0].Type.IsFlags() {
    		return nil
    	}
    	return v.Args[0]
    }
    
    // arm64Negate finds the complement to an ARM64 condition code,
    // for example !Equal -> NotEqual or !LessThan -> GreaterEqual
    //
    // For floating point, it's more subtle because NaN is unordered. We do
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 64.2K bytes
    - Viewed (0)
  10. src/runtime/mheap.go

    	// mallocgc, and issue 54596).
    	freeIndexForScan uint16
    
    	// Cache of the allocBits at freeindex. allocCache is shifted
    	// such that the lowest bit corresponds to the bit freeindex.
    	// allocCache holds the complement of allocBits, thus allowing
    	// ctz (count trailing zero) to use it directly.
    	// allocCache may contain bits beyond s.nelems; the caller must ignore
    	// these.
    	allocCache uint64
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 78K bytes
    - Viewed (0)
Back to top