Search Options

Results per page
Sort
Preferred Languages
Advance

Results 181 - 190 of 310 for roundup (0.23 sec)

  1. src/math/erf.go

    //         near 0.6174), and by some experiment, 0.84375 is chosen to
    //         guarantee the error is less than one ulp for erf.
    //
    //      2. For |x| in [0.84375,1.25], let s = |x| - 1, and
    //         c = 0.84506291151 rounded to single (24 bits)
    //              erf(x)  = sign(x) * (c  + P1(s)/Q1(s))
    //              erfc(x) = (1-c)  - P1(s)/Q1(s) if x > 0
    //                        1+(c+P1(s)/Q1(s))    if x < 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 11.5K bytes
    - Viewed (0)
  2. src/main/webapp/css/bootstrap.min.css

    a40!important}.border-white{border-color:#fff!important}.rounded-sm{border-radius:.2rem!important}.rounded{border-radius:.25rem!important}.rounded-top{border-top-left-radius:.25rem!important;border-top-right-radius:.25rem!important}.rounded-right{border-top-right-radius:.25rem!important;border-bottom-right-radius:.25rem!important}.rounded-bottom{border-bottom-right-radius:.25rem!important;border-bottom-left-radius:.25rem!important}.rounded-left{border-top-left-radius:.25rem!important;border-bott...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Wed Dec 25 08:05:52 UTC 2019
    - 155.8K bytes
    - Viewed (0)
  3. src/main/webapp/css/admin/bootstrap.min.css

    a40!important}.border-white{border-color:#fff!important}.rounded-sm{border-radius:.2rem!important}.rounded{border-radius:.25rem!important}.rounded-top{border-top-left-radius:.25rem!important;border-top-right-radius:.25rem!important}.rounded-right{border-top-right-radius:.25rem!important;border-bottom-right-radius:.25rem!important}.rounded-bottom{border-bottom-right-radius:.25rem!important;border-bottom-left-radius:.25rem!important}.rounded-left{border-top-left-radius:.25rem!important;border-bott...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Feb 07 10:28:50 UTC 2020
    - 155.8K bytes
    - Viewed (0)
  4. src/internal/coverage/defs.go

    	CtrRaw CounterFlavor = iota + 1
    
    	// "ULeb" representation: all values (pkg ID, func ID, num counters,
    	// and counters themselves) are stored with ULEB128 encoding.
    	CtrULeb128
    )
    
    func Round4(x int) int {
    	return (x + 3) &^ 3
    }
    
    //.....................................................................
    //
    // Runtime counter data definitions.
    //
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 14 12:51:16 UTC 2023
    - 11.9K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/quantization/tensorflow/passes/quantize.cc

            /*operands=*/fcast_op.getResult(),
            /*attributes=*/avg_pool_op->getAttrs());
    
        // Cast back to the storage type after AvgPool op.
        auto round_val = rewriter.create<TF::RoundOp>(
            sc_op.getLoc(), float_avg_pool_op.getOutput());
        auto icast_op = rewriter.create<TF::CastOp>(
            sc_op.getLoc(), q_result_type.clone(qtype.getStorageType()), round_val);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 22 05:52:39 UTC 2024
    - 23.6K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/amd64/versions_test.go

    		"blsrq", "blsrl", "blsr",
    		"tzcntq", "tzcntl", "tzcnt",
    	},
    	"bmi2": {
    		"sarxq", "sarxl", "sarx",
    		"shlxq", "shlxl", "shlx",
    		"shrxq", "shrxl", "shrx",
    	},
    	"sse41": {
    		"roundsd",
    		"pinsrq", "pinsrl", "pinsrd", "pinsrb", "pinsr",
    		"pextrq", "pextrl", "pextrd", "pextrb", "pextr",
    		"pminsb", "pminsd", "pminuw", "pminud", // Note: ub and sw are ok.
    		"pmaxsb", "pmaxsd", "pmaxuw", "pmaxud",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 15 20:19:15 UTC 2022
    - 10.9K bytes
    - Viewed (0)
  7. src/runtime/print.go

    		}
    	} else {
    		if v < 0 {
    			v = -v
    			buf[0] = '-'
    		}
    
    		// normalize
    		for v >= 10 {
    			e++
    			v /= 10
    		}
    		for v < 1 {
    			e--
    			v *= 10
    		}
    
    		// round
    		h := 5.0
    		for i := 0; i < n; i++ {
    			h /= 10
    		}
    		v += h
    		if v >= 10 {
    			e++
    			v /= 10
    		}
    	}
    
    	// format +d.dddd+edd
    	for i := 0; i < n; i++ {
    		s := int(v)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jan 20 03:27:26 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  8. src/vendor/golang.org/x/net/http2/hpack/huffman.go

    	}
    	//	case 4:
    	y := uint32(x)
    	return append(dst, byte(y>>24), byte(y>>16), byte(y>>8), byte(y))
    }
    
    // HuffmanEncodeLength returns the number of bytes required to encode
    // s in Huffman codes. The result is round up to byte boundary.
    func HuffmanEncodeLength(s string) uint64 {
    	n := uint64(0)
    	for i := 0; i < len(s); i++ {
    		n += uint64(huffmanCodeLen[s[i]])
    	}
    	return (n + 7) / 8
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 05 19:54:32 UTC 2022
    - 5.8K bytes
    - Viewed (0)
  9. src/main/webapp/css/admin/bootstrap.min.css.map

    !important;\n}\n\n.rounded-bottom {\n  border-bottom-right-radius: $border-radius !important;\n  border-bottom-left-radius: $border-radius !important;\n}\n\n.rounded-left {\n  border-top-left-radius: $border-radius !important;\n  border-bottom-left-radius: $border-radius !important;\n}\n\n.rounded-lg {\n  border-radius: $border-radius-lg !important;\n}\n\n.rounded-circle {\n  border-radius: 50% !important;\n}\n\n.rounded-pill {\n  border-radius: $rounded-pill !important;\n}\n\n.rounded-0 {\n  border-radius:...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Feb 07 10:28:50 UTC 2020
    - 626.8K bytes
    - Viewed (0)
  10. src/go/constant/value_test.go

    		x := val(test)
    		// We don't check the actual numerator and denominator because they
    		// are unlikely to be 100% correct due to floatVal rounding errors.
    		// Instead, we compute the fraction again and compare the rounded
    		// result.
    		q := BinaryOp(Num(x), token.QUO, Denom(x))
    		got := q.String()
    		want := x.String()
    		if got != want {
    			t.Errorf("%s: got quotient %s, want %s", x, got, want)
    		}
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 13 18:45:54 UTC 2021
    - 15.6K bytes
    - Viewed (0)
Back to top