Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for shifts (0.13 sec)

  1. src/cmd/compile/internal/ssa/_gen/generic.rules

    // Non-constant rotate detection.
    // We use shiftIsBounded to make sure that neither of the shifts are >64.
    // Note: these rules are subtle when the shift amounts are 0/64, as Go shifts
    // are different from most native shifts. But it works out.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 22:21:05 UTC 2024
    - 135.3K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/_gen/ARM64.rules

    (Not    x) => (XOR (MOVDconst [1]) x)
    
    // shifts
    // hardware instruction uses only the low 6 bits of the shift
    // we compare to 64 to ensure Go semantics for large shifts
    // Rules about rotates with non-const shift are based on the following rules,
    // if the following rules change, please also modify the rules based on them.
    
    // check shiftIsBounded first, if shift value is proved to be valid then we
    // can do the shift directly.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 113.1K bytes
    - Viewed (0)
  3. src/cmd/internal/obj/arm64/asm7.go

    	}
    	if v&((1<<shift)-1) != 0 {
    		return 0, 0, fmt.Errorf("%d is not a multiple of %d", v, 1<<shift)
    	}
    	lo := (v >> shift) & 0xfff
    	hi := v - (lo << shift)
    	if hi > 0xfff000 {
    		hi = 0xfff000
    		lo = (v - hi) >> shift
    	}
    	if hi & ^0xfff000 != 0 {
    		panic(fmt.Sprintf("bad split for %x with shift %v (%x, %x)", v, shift, hi, lo))
    	}
    	return hi, lo, nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 201.1K bytes
    - Viewed (0)
  4. src/cmd/internal/obj/s390x/asmz.go

    	op_SRA     uint32 = 0x8A00 // FORMAT_RS1        SHIFT RIGHT SINGLE (32)
    	op_SRAG    uint32 = 0xEB0A // FORMAT_RSY1       SHIFT RIGHT SINGLE (64)
    	op_SRAK    uint32 = 0xEBDC // FORMAT_RSY1       SHIFT RIGHT SINGLE (32)
    	op_SRDA    uint32 = 0x8E00 // FORMAT_RS1        SHIFT RIGHT DOUBLE
    	op_SRDL    uint32 = 0x8C00 // FORMAT_RS1        SHIFT RIGHT DOUBLE LOGICAL
    	op_SRDT    uint32 = 0xED41 // FORMAT_RXF        SHIFT SIGNIFICAND RIGHT (long DFP)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 17:46:09 UTC 2024
    - 176.7K bytes
    - Viewed (0)
  5. src/cmd/internal/obj/ppc64/asm9.go

    		if c.instoffset >= 0 {
    			sbits := bits.Len64(uint64(c.instoffset))
    			switch {
    			case sbits <= 5:
    				return C_ZCON + sbits
    			case sbits <= 8:
    				return C_U8CON
    			case sbits <= 15:
    				return C_U15CON
    			case sbits <= 16:
    				return C_U16CON
    			case sbits <= 31:
    				return C_U31CON
    			case sbits <= 32:
    				return C_U32CON
    			case sbits <= 33:
    				return C_S34CON
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 13:55:28 UTC 2024
    - 156.1K bytes
    - Viewed (0)
  6. src/debug/elf/elf.go

    	R_ALPHA_GPDISP         R_ALPHA = 6  /* Add displacement to GP */
    	R_ALPHA_BRADDR         R_ALPHA = 7  /* PC+4 relative 23 bit shifted */
    	R_ALPHA_HINT           R_ALPHA = 8  /* PC+4 relative 16 bit shifted */
    	R_ALPHA_SREL16         R_ALPHA = 9  /* PC relative 16 bit */
    	R_ALPHA_SREL32         R_ALPHA = 10 /* PC relative 32 bit */
    	R_ALPHA_SREL64         R_ALPHA = 11 /* PC relative 64 bit */
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 00:01:16 UTC 2024
    - 134.6K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/ir/tfl_ops.td

      );
    }
    
    def TFL_RightShiftOp : TFL_Op<"right_shift", [
        SameOperandsAndResultElementType,
        Pure]> {
      let summary = "Right Shift operator";
    
      let description = [{
        Elementwise computes the bitwise right-shift of `lhs` by `rhs`.
      }];
    
      let arguments = (ins
        TFL_TensorOf<[I8, UI8, I16, UI16, I32, UI32]>:$lhs,
        TFL_TensorOf<[I8, UI8, I16, UI16, I32, UI32]>:$rhs
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 186K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

        types. Examples of quantized types are TF_Qint8 or TF_Quint8.
    
        An example is TF_DequantizeOp, which converts a quantized type to a float.
        This op is rewritten to generic ops that perform the scale and shift
        and can operate on non-quantized types.
    
        Currently, TF_DequantizeOp is the only op with a lowering that falls
        in this category. When more lowerings are added (e.g. QuantizeV2Op),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 99.6K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/cache/LocalCache.java

            K castKey = (K) key;
            result.put(castKey, value);
            hits++;
          }
        }
        globalStatsCounter.recordHits(hits);
        globalStatsCounter.recordMisses(misses);
        return result.buildKeepingLast();
      }
    
      ImmutableMap<K, V> getAll(Iterable<? extends K> keys) throws ExecutionException {
        int hits = 0;
        int misses = 0;
    
        Map<K, V> result = Maps.newLinkedHashMap();
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 143.6K bytes
    - Viewed (0)
  10. tests/integration/pilot/common/routing.go

    			Port:   httpPort,
    			Count:  1,
    			Scheme: scheme.TCP,
    			Message: `GET / HTTP/1.0
    `,
    			Timeout: time.Second * 5,
    			TCP: echo.TCP{
    				// There is no VIP so we fall back to 0.0.0.0 listener which sniffs
    				ExpectedResponse: &wrappers.StringValue{Value: `HTTP/1.0 200 OK`},
    			},
    		},
    	})
    	t.RunTraffic(TrafficTestCase{
    		name: "http10 to external auto",
    		call: t.Apps.A[0].CallOrFail,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 21:52:51 UTC 2024
    - 135.9K bytes
    - Viewed (0)
Back to top