Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 50 for COMPLEMENT (0.15 sec)

  1. src/cmd/compile/internal/ssa/_gen/AMD64Ops.go

    		{name: "BTCL", argLength: 2, reg: gp21, asm: "BTCL", resultInArg0: true, clobberFlags: true},                   // complement bit arg1%32 in arg0
    		{name: "BTCQ", argLength: 2, reg: gp21, asm: "BTCQ", resultInArg0: true, clobberFlags: true},                   // complement bit arg1%64 in arg0
    		{name: "BTRL", argLength: 2, reg: gp21, asm: "BTRL", resultInArg0: true, clobberFlags: true},                   // reset bit arg1%32 in arg0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 04 16:40:24 UTC 2023
    - 98K bytes
    - Viewed (1)
  2. src/compress/flate/inflate.go

    }
    
    // Copy a single uncompressed data block from input to output.
    func (f *decompressor) dataBlock() {
    	// Uncompressed.
    	// Discard current half-byte.
    	f.nb = 0
    	f.b = 0
    
    	// Length then ones-complement of length.
    	nr, err := io.ReadFull(f.r, f.buf[0:4])
    	f.roffset += int64(nr)
    	if err != nil {
    		f.err = noEOF(err)
    		return
    	}
    	n := int(f.buf[0]) | int(f.buf[1])<<8
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 13 23:20:03 UTC 2023
    - 20.4K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/arch/ppc64/ppc64asm/tables.go

    		[6]*argField{ap_Reg_11_15, ap_Reg_6_10, ap_Reg_16_20}},
    	{ANDC, 0xfc0007ff00000000, 0x7c00007800000000, 0x0, // AND with Complement X-form (andc RA,RS,RB)
    		[6]*argField{ap_Reg_11_15, ap_Reg_6_10, ap_Reg_16_20}},
    	{ANDCCC, 0xfc0007ff00000000, 0x7c00007900000000, 0x0, // AND with Complement X-form (andc. RA,RS,RB)
    		[6]*argField{ap_Reg_11_15, ap_Reg_6_10, ap_Reg_16_20}},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 22 17:16:14 UTC 2022
    - 334.7K bytes
    - Viewed (0)
  4. src/vendor/golang.org/x/crypto/cryptobyte/asn1.go

    func (b *Builder) AddASN1BigInt(n *big.Int) {
    	if b.err != nil {
    		return
    	}
    
    	b.AddASN1(asn1.INTEGER, func(c *Builder) {
    		if n.Sign() < 0 {
    			// A negative number has to be converted to two's-complement form. So we
    			// invert and subtract 1. If the most-significant-bit isn't set then
    			// we'll need to pad the beginning with 0xff in order to keep the number
    			// negative.
    			nMinus1 := new(big.Int).Neg(n)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 29 21:28:33 UTC 2023
    - 21.5K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. guava/src/com/google/common/io/MoreFiles.java

    import java.util.Arrays;
    import java.util.Collection;
    import java.util.stream.Stream;
    import javax.annotation.CheckForNull;
    
    /**
     * Static utilities for use with {@link Path} instances, intended to complement {@link Files}.
     *
     * <p>Many methods provided by Guava's {@code Files} class for {@link java.io.File} instances are
     * now available via the JDK's {@link java.nio.file.Files} class for {@code Path} - check the JDK's
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 17 14:35:11 UTC 2023
    - 34.3K bytes
    - Viewed (0)
  10. src/cmd/vendor/rsc.io/markdown/entity.go

    	"&comma;":                           "\u002c",
    	"&commat;":                          "\u0040",
    	"&comp;":                            "\u2201",
    	"&compfn;":                          "\u2218",
    	"&complement;":                      "\u2201",
    	"&complexes;":                       "\u2102",
    	"&cong;":                            "\u2245",
    	"&congdot;":                         "\u2a6d",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 101K bytes
    - Viewed (0)
Back to top