Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 20 for Absorb (0.27 sec)

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

    // Absorb 'rotate then insert selected bits [into zero]' into left shift.
    (SLDconst (RISBGZ x {r}) [c])
      && s390x.NewRotateParams(0, 63-c, c).InMerge(r.OutMask()) != nil
      => (RISBGZ x {(*s390x.NewRotateParams(0, 63-c, c).InMerge(r.OutMask())).RotateLeft(r.Amount)})
    
    // Absorb 'rotate then insert selected bits [into zero]' into right shift.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 18:09:26 UTC 2023
    - 74.3K bytes
    - Viewed (0)
  2. src/vendor/golang.org/x/crypto/sha3/sha3.go

    	copyOut(d, d.storage[:d.rate])
    }
    
    // Write absorbs more data into the hash's state. It panics if any
    // output has already been read.
    func (d *state) Write(p []byte) (written int, err error) {
    	if d.state != spongeAbsorbing {
    		panic("sha3: Write after Read")
    	}
    	written = len(p)
    
    	for len(p) > 0 {
    		if d.n == 0 && len(p) >= d.rate {
    			// The fast path; absorb a full "rate" bytes of input and apply the permutation.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/utils/cluster_util.cc

          nearest_cluster.ops.insert(&op);
          op_to_cluster_map[&op] = &nearest_cluster;
          continue;
        }
    
        // If nearest cluster of same target can not absorb `op`, then that
        // cluster needs to be finalized by inserting into the final cluster map
        // that contains all operations in clusters.
        all_clusters[target_name].push_back(nearest_cluster);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jul 28 00:32:55 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/_gen/ARM64.rules

    (IsSliceInBounds idx len) => (LessEqualU (CMP idx len))
    
    // pseudo-ops
    (GetClosurePtr ...) => (LoweredGetClosurePtr ...)
    (GetCallerSP   ...) => (LoweredGetCallerSP   ...)
    (GetCallerPC   ...) => (LoweredGetCallerPC   ...)
    
    // Absorb pseudo-ops into blocks.
    (If (Equal         cc) yes no) => (EQ cc yes no)
    (If (NotEqual      cc) yes no) => (NE cc yes no)
    (If (LessThan      cc) yes no) => (LT cc yes no)
    (If (LessThanU     cc) yes no) => (ULT cc yes no)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 113.1K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/_gen/PPC64.rules

    (If cond yes no) => (NE (CMPconst [0] (ANDconst [1] cond)) yes no)
    
    // Absorb boolean tests into block
    (NE (CMPconst [0] (ANDconst [1] ((Equal|NotEqual|LessThan|LessEqual|GreaterThan|GreaterEqual) cc))) yes no) => ((EQ|NE|LT|LE|GT|GE) cc yes no)
    (NE (CMPconst [0] (ANDconst [1] ((FLessThan|FLessEqual|FGreaterThan|FGreaterEqual) cc))) yes no) => ((FLT|FLE|FGT|FGE) cc yes no)
    
    // absorb flag constants into branches
    (EQ (FlagEQ) yes no) => (First yes no)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 53.2K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/_gen/ARM.rules

    (IsSliceInBounds idx len) => (LessEqualU (CMP idx len))
    
    // pseudo-ops
    (GetClosurePtr ...) => (LoweredGetClosurePtr ...)
    (GetCallerSP ...) => (LoweredGetCallerSP ...)
    (GetCallerPC ...) => (LoweredGetCallerPC ...)
    
    // Absorb pseudo-ops into blocks.
    (If (Equal cc) yes no) => (EQ cc yes no)
    (If (NotEqual cc) yes no) => (NE cc yes no)
    (If (LessThan cc) yes no) => (LT cc yes no)
    (If (LessThanU cc) yes no) => (ULT cc yes no)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 20 17:19:36 UTC 2023
    - 90.1K bytes
    - Viewed (0)
  7. src/cmd/go/internal/generate/generate.go

    			for i := 1; i < len(line); i++ {
    				c := line[i] // Only looking for ASCII so this is OK.
    				switch c {
    				case '\\':
    					if i+1 == len(line) {
    						g.errorf("bad backslash")
    					}
    					i++ // Absorb next byte (If it's a multibyte we'll get an error in Unquote).
    				case '"':
    					word, err := strconv.Unquote(line[0 : i+1])
    					if err != nil {
    						g.errorf("bad quoted string")
    					}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 29 19:39:24 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  8. src/text/template/parse/lex.go

    		}
    	}
    	return l.emit(itemSpace)
    }
    
    // lexIdentifier scans an alphanumeric.
    func lexIdentifier(l *lexer) stateFn {
    	for {
    		switch r := l.next(); {
    		case isAlphaNumeric(r):
    			// absorb.
    		default:
    			l.backup()
    			word := l.input[l.start:l.pos]
    			if !l.atTerminator() {
    				return l.errorf("bad character %#U", r)
    			}
    			switch {
    			case key[word] > itemKeyword:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 04 22:36:12 UTC 2022
    - 18.1K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/_gen/AMD64.rules

        => (CMOVLNE y x (CMPQconst [0] check))
    (CondSelect <t> x y check) && !check.Type.IsFlags() && check.Type.Size() == 8 && is16BitInt(t)
        => (CMOVWNE y x (CMPQconst [0] check))
    
    // Absorb InvertFlags
    (CMOVQ(EQ|NE|LT|GT|LE|GE|HI|CS|CC|LS) x y (InvertFlags cond))
        => (CMOVQ(EQ|NE|GT|LT|GE|LE|CS|HI|LS|CC) x y cond)
    (CMOVL(EQ|NE|LT|GT|LE|GE|HI|CS|CC|LS) x y (InvertFlags cond))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 12 19:38:41 UTC 2024
    - 93.9K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/_gen/LOONG64.rules

    (PanicBounds [kind] x y mem) && boundsABI(kind) == 2 => (LoweredPanicBoundsC [kind] x y mem)
    
    (CondSelect <t> x y cond) => (OR (MASKEQZ <t> x cond) (MASKNEZ <t> y cond))
    
    // Optimizations
    
    // Absorb boolean tests into block
    (NE (FPFlagTrue cmp) yes no) => (FPT cmp yes no)
    (NE (FPFlagFalse cmp) yes no) => (FPF cmp yes no)
    (EQ (FPFlagTrue cmp) yes no) => (FPF cmp yes no)
    (EQ (FPFlagFalse cmp) yes no) => (FPT cmp yes no)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 19:26:25 UTC 2023
    - 31.8K bytes
    - Viewed (0)
Back to top