Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for umagic (0.34 sec)

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

            (ZeroExt16to32 x))
          (Const64 <typ.UInt64> [16+umagic16(c).s-1])))
    (Div16u x (Const16 [c])) && umagicOK16(c) && config.RegSize == 4 && c&1 == 0 =>
      (Trunc32to16
        (Rsh32Ux64 <typ.UInt32>
          (Mul32 <typ.UInt32>
            (Const32 <typ.UInt32> [int32(1<<15+(umagic16(c).m+1)/2)])
            (Rsh32Ux64 <typ.UInt32> (ZeroExt16to32 x) (Const64 <typ.UInt64> [1])))
    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/go/internal/work/exec.go

    		}
    
    		// TODO(rsc): Convince compiler team not to add more magic environment variables,
    		// or perhaps restrict the environment variables passed to subprocesses.
    		// Because these are clumsy, undocumented special-case hacks
    		// for debugging the compiler, they are not settable using 'go env -w',
    		// and so here we use os.Getenv, not cfg.Getenv.
    		magic := []string{
    			"GOCLOBBERDEADHASH",
    			"GOSSAFUNC",
    			"GOSSADIR",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  3. src/database/sql/sql_test.go

    		exec(t, db, "INSERT|people|name=Chris,age=?,photo=CPHOTO,bdate=?", 3, chrisBirthday)
    	}
    	if name == "magicquery" {
    		// Magic table name and column, known by fakedb_test.go.
    		exec(t, db, "CREATE|magicquery|op=string,millis=int32")
    		exec(t, db, "INSERT|magicquery|op=sleep,millis=10")
    	}
    	if name == "tx_status" {
    		// Magic table name and column, known by fakedb_test.go.
    		exec(t, db, "CREATE|tx_status|tx_status=string")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 111.6K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_n_z.cc

        bool constant_slice_sizes =
            matchPattern(op.getSize(), m_Constant(&slice_sizes));
        int dim = 0;
        // TODO(jpienaar): Reformulate the shape verification below to not use magic
        // constants.
        for (const APInt &raw_begin_index : begin_indices.getValues<APInt>()) {
          int64_t begin_index = raw_begin_index.getSExtValue();
          int64_t input_size =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 22:07:10 UTC 2024
    - 170.8K bytes
    - Viewed (0)
  5. cluster/gce/gci/configure-helper.sh

      SystemdCgroup = ${systemdCgroup}
    EOF
    
      if [[ "${CONTAINER_RUNTIME_TEST_HANDLER:-}" == "true" ]]; then
      cat >> "${config_path}" <<EOF
    # Setup a runtime with the magic name ("test-handler") used for Kubernetes
    # runtime class tests ...
    [plugins."io.containerd.grpc.v1.cri".containerd.runtimes.test-handler]
      runtime_type = "io.containerd.runc.v2"
    EOF
      fi
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  6. src/net/http/server.go

    	return c.conn.rwc.SetWriteDeadline(deadline)
    }
    
    func (c *response) EnableFullDuplex() error {
    	c.fullDuplex = true
    	return nil
    }
    
    // TrailerPrefix is a magic prefix for [ResponseWriter.Header] map keys
    // that, if present, signals that the map entry is actually for
    // the response trailers, and not the response headers. The prefix
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/_gen/ARM64.rules

    (Zero [s] ptr mem) && s%16 != 0 && s%16 > 8 && s > 16 =>
    	(Zero [16]
    		(OffPtr <ptr.Type> ptr [s-16])
    		(Zero [s-s%16] ptr mem))
    
    // medium zeroing uses a duff device
    // 4, 16, and 64 are magic constants, see runtime/mkduff.go
    (Zero [s] ptr mem)
    	&& s%16 == 0 && s > 64 && s <= 16*64
    	&& !config.noDuffDevice =>
    	(DUFFZERO [4 * (64 - s/16)] ptr mem)
    
    // large zeroing uses a loop
    (Zero [s] ptr mem)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 113.1K bytes
    - Viewed (0)
  8. src/cmd/internal/obj/x86/asm6.go

    // if that's what an instruction can handle.
    //
    // In parallel with the scan through the ytable for the appropriate line, there
    // is a z pointer that starts out pointing at the strange magic byte list in
    // the Optab struct.  With each step past a non-matching ytable line, z
    // advances by the 4th entry in the line.  When a matching line is found, that
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 146.9K bytes
    - Viewed (0)
Back to top