Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 20 for Absorb (0.13 sec)

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

    (PanicExtend [kind] hi lo y mem) && boundsABI(kind) == 1 => (LoweredPanicExtendB [kind] hi lo y mem)
    (PanicExtend [kind] hi lo y mem) && boundsABI(kind) == 2 => (LoweredPanicExtendC [kind] hi lo y mem)
    
    // 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: Wed May 24 14:43:03 UTC 2023
    - 35.3K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/_gen/MIPS64.rules

    (PanicBounds [kind] x y mem) && boundsABI(kind) == 1 => (LoweredPanicBoundsB [kind] x y mem)
    (PanicBounds [kind] x y mem) && boundsABI(kind) == 2 => (LoweredPanicBoundsC [kind] x y mem)
    
    // 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: Mon Jul 31 03:59:48 UTC 2023
    - 41.9K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/printf/printf.go

    // parseNum scans a width or precision (or *). It returns false if there's a bad index expression.
    func (s *formatState) parseNum() bool {
    	if s.nbytes < len(s.format) && s.format[s.nbytes] == '*' {
    		if s.indexPending { // Absorb it.
    			s.indexPending = false
    		}
    		s.nbytes++
    		s.argNums = append(s.argNums, s.argNum)
    		s.argNum++
    	} else {
    		s.scanNum()
    	}
    	return true
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 32.5K bytes
    - Viewed (0)
  4. src/fmt/print.go

    		}
    
    		verb, size := rune(format[i]), 1
    		if verb >= utf8.RuneSelf {
    			verb, size = utf8.DecodeRuneInString(format[i:])
    		}
    		i += size
    
    		switch {
    		case verb == '%': // Percent does not absorb operands and ignores f.wid and f.prec.
    			p.buf.writeByte('%')
    		case !p.goodArgNum:
    			p.badArgNum(verb)
    		case argNum >= len(a): // No argument left over to print for the current verb.
    			p.missingArg(verb)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 21:22:43 UTC 2024
    - 31.8K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/_gen/RISCV64.rules

    (AtomicOr32  ...) => (LoweredAtomicOr32  ...)
    
    // Conditional branches
    (If cond yes no) => (BNEZ (MOVBUreg <typ.UInt64> cond) yes no)
    
    // Optimizations
    
    // Absorb SEQZ/SNEZ into branch.
    (BEQZ (SEQZ x) yes no) => (BNEZ x yes no)
    (BEQZ (SNEZ x) yes no) => (BEQZ x yes no)
    (BNEZ (SEQZ x) yes no) => (BEQZ x yes no)
    (BNEZ (SNEZ x) yes no) => (BNEZ x yes no)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 14:57:07 UTC 2024
    - 40.3K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/test/inst_test.go

    		t.Fatalf("Failed: %v:\nOut: %s\n", err, output)
    	}
    	// Look for shape-based instantiation of Sort, but ignore any extra wrapper
    	// ending in "-tramp" (which are created on riscv).
    	re := regexp.MustCompile(`\bSort\[.*shape.*\][^-]`)
    	r := re.FindAllIndex(output, -1)
    	if len(r) != 1 {
    		t.Fatalf("Wanted 1 instantiations of Sort function, got %d\n", len(r))
    	}
    
    	// Actually run the test and make sure output is correct.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 06 18:07:35 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  7. src/vendor/golang.org/x/crypto/internal/poly1305/sum_generic.go

    		panic("poly1305: unexpected overflow")
    	}
    	return uint128{lo, hi}
    }
    
    func shiftRightBy2(a uint128) uint128 {
    	a.lo = a.lo>>2 | (a.hi&3)<<62
    	a.hi = a.hi >> 2
    	return a
    }
    
    // updateGeneric absorbs msg into the state.h accumulator. For each chunk m of
    // 128 bits of message, it computes
    //
    //	h₊ = (h + m) * r  mod  2¹³⁰ - 5
    //
    // If the msg length is not a multiple of TagSize, it assumes the last
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 19:00:13 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  8. src/crypto/internal/bigmod/nat.go

    	_ = x[len(z)-1] // bounds check elimination hint
    	for i := range z {
    		hi, lo := bits.Mul(x[i], y)
    		lo, c := bits.Add(lo, z[i], 0)
    		// We use bits.Add with zero to get an add-with-carry instruction that
    		// absorbs the carry from the previous bits.Add.
    		hi, _ = bits.Add(hi, 0, c)
    		lo, c = bits.Add(lo, carry, 0)
    		hi, _ = bits.Add(hi, 0, c)
    		carry = hi
    		z[i] = lo
    	}
    	return carry
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 24K bytes
    - Viewed (0)
  9. src/cmd/vendor/rsc.io/markdown/entity.go

    	"&bsemi;":                           "\u204f",
    	"&bsim;":                            "\u223d",
    	"&bsime;":                           "\u22cd",
    	"&bsol;":                            "\u005c",
    	"&bsolb;":                           "\u29c5",
    	"&bsolhsub;":                        "\u27c8",
    	"&bull;":                            "\u2022",
    	"&bullet;":                          "\u2022",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 101K bytes
    - Viewed (0)
  10. src/html/entity.go

    		"bsemi;":                           '\U0000204F',
    		"bsim;":                            '\U0000223D',
    		"bsime;":                           '\U000022CD',
    		"bsol;":                            '\U0000005C',
    		"bsolb;":                           '\U000029C5',
    		"bsolhsub;":                        '\U000027C8',
    		"bull;":                            '\U00002022',
    		"bullet;":                          '\U00002022',
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jul 31 22:10:54 UTC 2018
    - 114.3K bytes
    - Viewed (0)
Back to top