Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 109 for constInt8 (0.18 sec)

  1. guava/src/com/google/common/base/CharMatcher.java

       *                            8
       */
    
      // Constant matcher factory methods
    
      /**
       * Matches any character.
       *
       * @since 19.0 (since 1.0 as constant {@code ANY})
       */
      public static CharMatcher any() {
        return Any.INSTANCE;
      }
    
      /**
       * Matches no characters.
       *
       * @since 19.0 (since 1.0 as constant {@code NONE})
       */
      public static CharMatcher none() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Feb 09 15:49:48 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/_gen/ARM.rules

    (Rsh8Ux64 _ (Const64 [c])) && uint64(c) >= 8 => (Const8 [0])
    
    // large constant signed right shift, we leave the sign bit
    (Rsh32x64 x (Const64 [c])) && uint64(c) >= 32 => (SRAconst x [31])
    (Rsh16x64 x (Const64 [c])) && uint64(c) >= 16 => (SRAconst (SLLconst <typ.UInt32> x [16]) [31])
    (Rsh8x64 x (Const64 [c])) && uint64(c) >= 8 => (SRAconst (SLLconst <typ.UInt32> x [24]) [31])
    
    // constants
    (Const(8|16|32) [val]) => (MOVWconst [int32(val)])
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 20 17:19:36 UTC 2023
    - 90.1K bytes
    - Viewed (0)
  3. src/cmd/internal/obj/riscv/obj.go

    		// Handle constant to register moves.
    		if p.As != AMOV {
    			p.Ctxt.Diag("%v: unsupported constant load", p)
    			return nil
    		}
    
    		// For constants larger than 32 bits in size that have trailing zeros,
    		// use the value with the trailing zeros removed and then use a SLLI
    		// instruction to restore the original constant.
    		// For example:
    		// 	MOV $0x8000000000000000, X10
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 07 03:32:27 UTC 2024
    - 77K bytes
    - Viewed (0)
  4. pilot/pkg/config/kube/gateway/conversion.go

    				vs.Http = append(vs.Http, routes...)
    				// append parents
    				cfg.Annotations[constants.InternalParentNames] = fmt.Sprintf("%s,%s/%s.%s",
    					cfg.Annotations[constants.InternalParentNames], obj.GroupVersionKind.Kind, obj.Name, obj.Namespace)
    			} else {
    				name := fmt.Sprintf("%s-%d-%s", obj.Name, count, constants.KubernetesGatewayName)
    				routeMap[routeKey][h] = &config.Config{
    					Meta: config.Meta{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  5. tensorflow/compiler/jit/mark_for_compilation_pass.cc

      Status RunEdgeContractionLoop();
    
      // "Fixes up" clusters by removing some modes.
      //
      // Autoclustering can sometimes be overeager.  For example, clustering large
      // constants (or large broadcasts of constants) can increase the live range
      // of those constants, and increase overall memory usage.
      //
      // This function removes "obviously bad" cases like these.
      Status DeclusterNodes();
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 12:19:41 UTC 2024
    - 85.3K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/transforms/lower_static_tensor_list.cc

                          TF::TensorListStackOp, TF::TensorListResizeOp,
                          TF::TensorListConcatV2Op>();
      // TODO(hinsu): Use TFLite constant op for constants.
      target.addLegalOp<arith::ConstantOp>();
      target.addLegalOp<func::FuncOp>();
      target.addDynamicallyLegalOp<func::ReturnOp>(is_legal);
      target.addDynamicallyLegalOp<TF::YieldOp>(is_legal);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 70.7K bytes
    - Viewed (0)
  7. pilot/pkg/model/push_context_test.go

    			gateway:   constants.IstioMeshGateway,
    		},
    		{
    			proxyNs:   "test2",
    			wantHosts: []string{"rule2.com", "rule2gw.com", "rule3.com", "rootNS.com"},
    			gateway:   constants.IstioMeshGateway,
    		},
    		{
    			proxyNs:   "ns1",
    			wantHosts: []string{"rule1.com", "rule2.com", "rule2gw.com", "rule3.com", "rootNS.com"},
    			gateway:   constants.IstioMeshGateway,
    		},
    		{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 21 17:42:54 UTC 2024
    - 95.3K bytes
    - Viewed (0)
  8. src/cmd/cgo/gcc.go

    					// This has an integer type so it's
    					// not really a floating point
    					// constant. This can happen when the
    					// C compiler complains about using
    					// the value as an integer constant,
    					// but not as a general constant.
    					// Treat this as a variable of the
    					// appropriate type, not a constant,
    					// to get C-style type handling,
    					// avoiding the problem that C permits
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 97K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/rewrite.go

    		return OpARM64NotLessEqualF
    	default:
    		panic("unreachable")
    	}
    }
    
    // evaluate an ARM64 op against a flags value
    // that is potentially constant; return 1 for true,
    // -1 for false, and 0 for not constant.
    func ccARM64Eval(op Op, flags *Value) int {
    	fop := flags.Op
    	if fop == OpARM64InvertFlags {
    		return -ccARM64Eval(op, flags.Args[0])
    	}
    	if fop != OpARM64FlagConstant {
    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. pilot/pkg/networking/core/listener.go

    				svcListenAddress == constants.UnspecifiedIP {
    				svcListenAddress = constants.UnspecifiedIPv6
    			}
    
    			// For dualstack proxies we need to add the unspecifed ipv6 address to the list of extra listen addresses
    			if listenerOpts.service.Attributes.ServiceRegistry == provider.External && listenerOpts.proxy.IsDualStack() &&
    				svcListenAddress == constants.UnspecifiedIP {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 55.1K bytes
    - Viewed (0)
Back to top