Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 146 for REWRITES (0.1 sec)

  1. src/cmd/vendor/golang.org/x/arch/arm/armasm/decode.go

    		}
    		return Mem{Base: Reg((x >> 16) & (1<<4 - 1)), Mode: mode}
    
    	case arg_R_rotate:
    		Rm := Reg(x & (1<<4 - 1))
    		typ, count := decodeShift(x)
    		// ROR #0 here means ROR #0, but decodeShift rewrites to RRX #1.
    		if typ == RotateRightExt {
    			return Rm
    		}
    		return RegShift{Rm, typ, count}
    
    	case arg_R_shift_R:
    		Rm := Reg(x & (1<<4 - 1))
    		Rs := Reg((x >> 8) & (1<<4 - 1))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 22 17:16:14 UTC 2022
    - 12.6K bytes
    - Viewed (0)
  2. misc/cgo/gmp/gmp.go

    	var _C_zero *C.mpz_t
    
    and then replacing all instances of C.zero with (*_C_zero).
    
    Cgo's most interesting translation is for functions.  If xxx is a C
    function, then cgo rewrites C.xxx into a new function _C_xxx that
    calls the C xxx in a standard pthread.  The new function translates
    its arguments, calls xxx, and translates the return value.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 9.5K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/transforms/sparsecore/embedding_program_key.cc

        return success();
    
      // Move the compile op launch right before our op.
      compile_launch_op->moveBefore(preprocess_op);
    
      return success();
    }
    
    // Rewrites the program_key input of `preprocess_op` to use the output of
    // _TPUCompileMlir.
    void RewritePreprocessInputs(OpBuilder* builder, func::FuncOp func_op,
                                 Operation* preprocess_op) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  4. src/regexp/onepass.go

    	p := &onePassProg{
    		Start:  prog.Start,
    		NumCap: prog.NumCap,
    		Inst:   make([]onePassInst, len(prog.Inst)),
    	}
    	for i, inst := range prog.Inst {
    		p.Inst[i] = onePassInst{Inst: inst}
    	}
    
    	// rewrites one or more common Prog constructs that enable some otherwise
    	// non-onepass Progs to be onepass. A:BD (for example) means an InstAlt at
    	// ip A, that points to ips B & C.
    	// A:BC + B:DA => A:BC + B:CD
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:36:03 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  5. tensorflow/compiler/jit/extract_outside_compilation_pass.cc

          main_graph->AddControlEdge(copy, xla_computation_node);
        }
      };
      ReverseDFS(*host_graph, /*enter=*/nullptr, copy_node_fn, NodeComparatorID());
      return s;
    }
    
    // Rewrites shape inference graph for outside compilation:
    // 1) If XlaSendFromHost also exists in `host_graph`, copy nodes from
    //    `host_graph`. Because we might still have outside compilation to outside
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 104.7K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/tools/go/ast/astutil/imports.go

    				i--
    				break
    			}
    		}
    	}
    
    	if len(delspecs) > 0 {
    		panic(fmt.Sprintf("deleted specs from Decls but not Imports: %v", delspecs))
    	}
    
    	return
    }
    
    // RewriteImport rewrites any import of path oldPath to path newPath.
    func RewriteImport(fset *token.FileSet, f *ast.File, oldPath, newPath string) (rewrote bool) {
    	for _, imp := range f.Imports {
    		if importPath(imp) == oldPath {
    			rewrote = true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 10 21:56:21 UTC 2022
    - 13.4K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/x86/ssa.go

    				n.To.Reg = x86.REG_DX
    			}
    
    			j.To.SetTarget(n)
    			j2.To.SetTarget(s.Pc())
    		}
    
    	case ssa.Op386HMULL, ssa.Op386HMULLU:
    		// the frontend rewrites constant division by 8/16/32 bit integers into
    		// HMUL by a constant
    		// SSA rewrites generate the 64 bit versions
    
    		// Arg[0] is already in AX as it's the only register we allow
    		// and DX is the only output we care about (the high bits)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 24 01:26:58 UTC 2023
    - 26.7K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/walk/order.go

    	temp []*ir.Name            // stack of temporary variables
    	free map[string][]*ir.Name // free list of unused temporaries, by type.LinkString().
    	edit func(ir.Node) ir.Node // cached closure of o.exprNoLHS
    }
    
    // order rewrites fn.Nbody to apply the ordering constraints
    // described in the comment at the top of the file.
    func order(fn *ir.Func) {
    	if base.Flag.W > 1 {
    		s := fmt.Sprintf("\nbefore order %v", fn.Sym())
    		ir.DumpList(s, fn.Body)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 02:00:33 UTC 2024
    - 42.7K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssagen/abi.go

    	}
    }
    
    // canonicalize returns the canonical name used for a linker symbol in
    // s's maps. Symbols in this package may be written either as "".X or
    // with the package's import path already in the symbol. This rewrites
    // both to use the full path, which matches compiler-generated linker
    // symbol names.
    func (s *SymABIs) canonicalize(linksym string) string {
    	if strings.HasPrefix(linksym, `"".`) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  10. cni/pkg/nodeagent/net.go

    	s.currentPodSnapshot.Ensure(string(pod.UID))
    	openNetns, err := s.getOrOpenNetns(pod, netNs)
    	if err != nil {
    		return err
    	}
    
    	// Handle node healthcheck probe rewrites
    	_, err = addPodToHostNSIpset(pod, podIPs, &s.hostsideProbeIPSet)
    	if err != nil {
    		log.Errorf("failed to add pod to ipset: %s/%s %v", pod.Namespace, pod.Name, err)
    		return err
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 05:10:23 UTC 2024
    - 13.4K bytes
    - Viewed (0)
Back to top