Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for freq_32 (0.14 sec)

  1. src/index/suffixarray/sais2.go

    		freq[c]++
    	}
    	return freq
    }
    
    func freq_32(text []int32, freq, bucket []int32) []int32 {
    	if freq != nil && freq[0] >= 0 {
    		return freq // already computed
    	}
    	if freq == nil {
    		freq = bucket
    	}
    
    	clear(freq)
    	for _, c := range text {
    		freq[c]++
    	}
    	return freq
    }
    
    func freq_64(text []int64, freq, bucket []int64) []int64 {
    	if freq != nil && freq[0] >= 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 18 23:57:18 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  2. src/index/suffixarray/sais.go

    	induceS_8_32(text, sa, freq, bucket)
    
    	// Mark for caller that we overwrote tmp.
    	tmp[0] = -1
    }
    
    // freq_8_32 returns the character frequencies
    // for text, as a slice indexed by character value.
    // If freq is nil, freq_8_32 uses and returns bucket.
    // If freq is non-nil, freq_8_32 assumes that freq[0] >= 0
    // means the frequencies are already computed.
    // If the frequency data is overwritten or uninitialized,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 18 23:57:18 UTC 2024
    - 32.4K bytes
    - Viewed (0)
  3. src/runtime/softfloat64.go

    }
    
    func fdiv32(x, y uint32) uint32 {
    	// TODO: are there double-rounding problems here? See issue 48807.
    	return f64to32(fdiv64(f32to64(x), f32to64(y)))
    }
    
    func feq32(x, y uint32) bool {
    	cmp, nan := fcmp64(f32to64(x), f32to64(y))
    	return cmp == 0 && !nan
    }
    
    func fgt32(x, y uint32) bool {
    	cmp, nan := fcmp64(f32to64(x), f32to64(y))
    	return cmp >= 1 && !nan
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 08 17:58:41 UTC 2021
    - 11.5K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssagen/ssa.go

    		ssa.OpEq64F:   {typecheck.LookupRuntimeFunc("feq64"), types.TBOOL},
    		ssa.OpEq32F:   {typecheck.LookupRuntimeFunc("feq32"), types.TBOOL},
    		ssa.OpNeq64F:  {typecheck.LookupRuntimeFunc("feq64"), types.TBOOL},
    		ssa.OpNeq32F:  {typecheck.LookupRuntimeFunc("feq32"), types.TBOOL},
    		ssa.OpLess64F: {typecheck.LookupRuntimeFunc("fgt64"), types.TBOOL},
    		ssa.OpLess32F: {typecheck.LookupRuntimeFunc("fgt32"), types.TBOOL},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
Back to top