Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 145 for preds (0.06 sec)

  1. src/cmd/compile/internal/ssa/print.go

    func (p stringFuncPrinter) startBlock(b *Block, reachable bool) {
    	if !p.printDead && !reachable {
    		return
    	}
    	fmt.Fprintf(p.w, "  b%d:", b.ID)
    	if len(b.Preds) > 0 {
    		io.WriteString(p.w, " <-")
    		for _, e := range b.Preds {
    			pred := e.b
    			fmt.Fprintf(p.w, " b%d", pred.ID)
    		}
    	}
    	if !reachable {
    		fmt.Fprint(p.w, " DEAD")
    	}
    	io.WriteString(p.w, "\n")
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 31 21:41:20 UTC 2022
    - 3.9K bytes
    - Viewed (0)
  2. test/fixedbugs/issue63955.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package j
    
    func f(try func() int, shouldInc func() bool, N func(int) int) {
    	var n int
    loop: // we want to have 3 preds here, the function entry and both gotos
    	if v := try(); v == 42 || v == 1337 { // the two || are to trick findIndVar
    		if n < 30 { // this aims to be the matched block
    			if shouldInc() {
    				n++
    				goto loop
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 07 17:37:47 UTC 2023
    - 578 bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/fuse_comparisons.go

    //	 \
    //	  b
    //	 / \
    //	s0 s1
    //
    // where b has the combined control value 'unsigned(x-1) < 4'.
    // Later passes will then fuse p and b.
    func fuseIntegerComparisons(b *Block) bool {
    	if len(b.Preds) != 1 {
    		return false
    	}
    	p := b.Preds[0].Block()
    	if b.Kind != BlockIf || p.Kind != BlockIf {
    		return false
    	}
    
    	// Don't merge control values if b is likely to be bypassed anyway.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 4K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/looprotate.go

    	after := map[ID][]*Block{}
    
    	// Check each loop header and decide if we want to move it.
    	for _, loop := range loopnest.loops {
    		b := loop.header
    		var p *Block // b's in-loop predecessor
    		for _, e := range b.Preds {
    			if e.b.Kind != BlockPlain {
    				continue
    			}
    			if loopnest.b2l[e.b.ID] != loop {
    				continue
    			}
    			p = e.b
    		}
    		if p == nil {
    			continue
    		}
    		p.Hotness |= HotInitial
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 3K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/deadcode.go

    	for len(q) > 0 {
    		// pop a reachable value
    		v := q[len(q)-1]
    		q[len(q)-1] = nil
    		q = q[:len(q)-1]
    		for i, x := range v.Args {
    			if v.Op == OpPhi && !reachable[v.Block.Preds[i].b.ID] {
    				continue
    			}
    			if !live[x.ID] {
    				live[x.ID] = true
    				q = append(q, x) // push
    				if x.Pos.IsStmt() != src.PosNotStmt {
    					liveOrderStmts = append(liveOrderStmts, x)
    				}
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 08 00:29:01 UTC 2023
    - 9.2K bytes
    - Viewed (0)
  6. tensorflow/compiler/jit/deadness_analysis.h

          return other.pred_ == pred_;
        }
    
        bool operator!=(const DeadnessPredicate& other) const {
          return other.pred_ != pred_;
        }
    
       private:
        explicit DeadnessPredicate(void* pred) : pred_(pred) {}
    
        // This is really a Predicate*, but we don't want to expose that
        // implementation detail to our clients.  `pred_` has pointer equality so we
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 06:59:07 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  7. src/main/resources/fess_indices/fess/cs/stopwords.txt

    což
    tím
    takže
    svých
    její
    svými
    jste
    aj
    tu
    tedy
    teto
    bylo
    kde
    ke
    pravé
    ji
    nad
    nejsou
    či
    pod
    téma
    mezi
    přes
    ty
    pak
    vám
    ani
    když
    však
    neg
    jsem
    tento
    článku
    články
    aby
    jsme
    před
    pta
    jejich
    byl
    ještě
    až
    bez
    také
    pouze
    první
    vaše
    která
    nás
    nový
    tipy
    pokud
    může
    strana
    jeho
    své
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Jul 19 06:31:02 UTC 2018
    - 992 bytes
    - Viewed (0)
  8. src/cmd/go/testdata/mod/rsc.io_sampler_v1.99.99.txt

    func DefaultUserPrefs() []language.Tag {
    	var prefs []language.Tag
    	for _, k := range []string{"LC_ALL", "LC_MESSAGES", "LANG"} {
    		if env := os.Getenv(k); env != "" {
    			prefs = append(prefs, language.Make(env))
    		}
    	}
    	return prefs
    }
    
    // Hello returns a localized greeting.
    // If no prefs are given, Hello uses DefaultUserPrefs.
    func Hello(prefs ...language.Tag) string {
    	if len(prefs) == 0 {
    		prefs = DefaultUserPrefs()
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 12 20:46:50 UTC 2018
    - 3.2K bytes
    - Viewed (0)
  9. src/cmd/go/testdata/mod/rsc.io_sampler_v1.3.1.txt

    func DefaultUserPrefs() []language.Tag {
    	var prefs []language.Tag
    	for _, k := range []string{"LC_ALL", "LC_MESSAGES", "LANG"} {
    		if env := os.Getenv(k); env != "" {
    			prefs = append(prefs, language.Make(env))
    		}
    	}
    	return prefs
    }
    
    // Hello returns a localized greeting.
    // If no prefs are given, Hello uses DefaultUserPrefs.
    func Hello(prefs ...language.Tag) string {
    	if len(prefs) == 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 12 20:46:50 UTC 2018
    - 4.7K bytes
    - Viewed (0)
  10. src/main/java/jcifs/context/CIFSContextCredentialWrapper.java

        private Credentials creds;
    
    
        /**
         * @param delegate
         * @param creds
         *            Crendentials to use
         */
        public CIFSContextCredentialWrapper ( AbstractCIFSContext delegate, Credentials creds ) {
            super(delegate);
            this.creds = creds;
        }
    
    
        /**
         * 
         * {@inheritDoc}
         *
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Thu Aug 02 08:32:29 UTC 2018
    - 2.7K bytes
    - Viewed (0)
Back to top