Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for findKNN (0.07 sec)

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

    					// Can't overflow because maxint is never a possible value.
    					return true
    				}
    				// If the limit is not a constant, check to see if it is a
    				// negative offset from a known non-negative value.
    				knn, k := findKNN(limit)
    				if knn == nil || k < 0 {
    					return false
    				}
    				// limit == (something nonnegative) - k. That subtraction can't underflow, so
    				// we can trust it.
    				if inclusive {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 07 17:37:47 UTC 2023
    - 11.8K bytes
    - Viewed (0)
Back to top