Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 28 for Boundaries (0.17 sec)

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

    func applyRewrite(f *Func, rb blockRewriter, rv valueRewriter, deadcode deadValueChoice) {
    	// repeat rewrites until we find no more rewrites
    	pendingLines := f.cachedLineStarts // Holds statement boundaries that need to be moved to a new value/block
    	pendingLines.clear()
    	debug := f.pass.debug
    	if debug > 1 {
    		fmt.Printf("%s: rewriting for %s\n", f.pass.name, f.Name)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 64.2K bytes
    - Viewed (0)
  2. src/runtime/mbitmap.go

    // On a related note, small objects are always small enough that their bitmap
    // fits in goarch.PtrSize*8 bits, so writing out bitmap data takes two bitmap
    // writes at most (because object boundaries don't generally lie on
    // s.heapBits()[i] boundaries).
    //
    // For larger objects, if t is the type for the object starting at "start",
    // within some span whose mspan is s, then the bitmap at t.GCData is "tiled"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 60K bytes
    - Viewed (0)
  3. src/internal/trace/gc.go

    	// box-filtered utilization function, which we call the
    	// "windowed mutator utilization function". The resulting
    	// function is continuous and piecewise linear (unless
    	// window==0, which we handle elsewhere), where the boundaries
    	// between segments occur when either edge of the window
    	// encounters a change in the instantaneous mutator
    	// utilization function. Hence, the minimum of this function
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 26K bytes
    - Viewed (0)
  4. src/runtime/traceback.go

    	// of the steps we need with a single traceback printer implementation.
    	//
    	// We could be more lax about exactly how many frames we print, for example
    	// always stopping and resuming on physical frame boundaries, or at least
    	// cgo expansion boundaries. It's not clear that's much simpler.
    	flags |= unwindPrintErrors
    	var u unwinder
    	tracebackWithRuntime := func(showRuntime bool) int {
    		const maxInt int = 0x7fffffff
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  5. src/time/format_test.go

    	"(2006)(002)(01) (15):(04):(05)",
    	"(2006)(002)(04) (15):(04):(05)",
    }
    
    func TestNextStdChunk(t *testing.T) {
    	// Most bugs in Parse or Format boil down to problems with
    	// the exact detection of format chunk boundaries in the
    	// helper function nextStdChunk (here called as NextStdChunk).
    	// This test checks nextStdChunk's behavior directly,
    	// instead of needing to test it only indirectly through Parse/Format.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:58:29 UTC 2024
    - 36.4K bytes
    - Viewed (0)
  6. src/cmd/vendor/github.com/google/pprof/internal/report/source.go

    				last.flat += fn.flat
    				last.cum += fn.cum
    				funcs[len(funcs)-1] = last
    				continue
    			}
    		}
    
    		// Add new function.
    		funcs = append(funcs, fn)
    	}
    
    	// Expand function boundaries to show neighborhood.
    	const expand = 5
    	for i, f := range funcs {
    		if i == 0 {
    			// Extend backwards, stopping at line number 1, but do not disturb 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 31.3K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/schema/schema_generated.h

      BucketizeOptionsBuilder builder_(_fbb);
      builder_.add_boundaries(boundaries);
      return builder_.Finish();
    }
    
    inline ::flatbuffers::Offset<BucketizeOptions> CreateBucketizeOptionsDirect(
        ::flatbuffers::FlatBufferBuilder &_fbb,
        const std::vector<float> *boundaries = nullptr) {
      auto boundaries__ = boundaries ? _fbb.CreateVector<float>(*boundaries) : 0;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 18:21:50 UTC 2024
    - 1M bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/ir/tfl_ops.td

      let summary = "Bucketizes 'input' based on 'boundaries'.";
    
      let description = [{
    Example:
    
    If the inputs are `boundaries = [0, 10, 100]` and
    `input = [[-5, 10000][150, 10][5, 100]]`,
    then the output will be `output = [[0, 3][3, 2][1, 3]]`.
      }];
    
      let arguments = (ins
        TFL_TensorOf<[F32, F64, I32, I64]>:$input,
        F32ArrayAttr:$boundaries
      );
    
      let results = (outs
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 186K bytes
    - Viewed (0)
  9. src/cmd/internal/obj/ppc64/obj9.go

    }
    
    // Encode a doubleword rotate mask into mb (mask begin) and
    // me (mask end, inclusive). Note, POWER ISA labels bits in
    // big endian order.
    func encodePPC64RLDCMask(mask int64) (mb, me int) {
    	// Determine boundaries and then decode them
    	mb = bits.LeadingZeros64(uint64(mask))
    	me = 64 - bits.TrailingZeros64(uint64(mask))
    	mbn := bits.LeadingZeros64(^uint64(mask))
    	men := 64 - bits.TrailingZeros64(^uint64(mask))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:17:17 UTC 2024
    - 40.8K bytes
    - Viewed (0)
  10. src/time/time.go

    //
    // The calendar runs on an exact 400 year cycle: a 400-year calendar
    // printed for 1970-2369 will apply as well to 2370-2769. Even the days
    // of the week match up. It simplifies the computations to choose the
    // cycle boundaries so that the exceptional years are always delayed as
    // long as possible. That means choosing a year equal to 1 mod 400, so
    // that the first leap year is the 4th year, the first missed leap year
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 50.7K bytes
    - Viewed (0)
Back to top