Home
last modified time | relevance | path

Searched refs:top_bit_mask (Results 1 – 9 of 9) sorted by relevance

/dports/math/hs-Agda/Agda-2.6.2/_cabal_deps/edit-distance-0.2.2.1/Text/EditDistance/
H A DBits.hs57 …tractAnswer $ foldl'3k (levenshteinDistanceWorker (matchVectors str1) top_bit_mask vector_mask) (m…
59 top_bit_mask = 1 `shiftL` (m - 1) :: bv function
67 levenshteinDistanceWorker !str1_mvs !top_bit_mask !vector_mask (!vp, !vn, !distance) !char2 k
88 distance' = if hp' .&. top_bit_mask /= 0 then distance + 1 else distance
89 distance'' = if hn' .&. top_bit_mask /= 0 then distance' - 1 else distance'
209 …dl'5k (restrictedDamerauLevenshteinDistanceWorker (matchVectors str1) top_bit_mask vector_mask) (0…
211 top_bit_mask = 1 `shiftL` (m - 1) :: bv function
217 restrictedDamerauLevenshteinDistanceWorker !str1_mvs !top_bit_mask !vector_mask (!pm, !d0, !vp, !vn…
232 distance' = if hp' .&. top_bit_mask /= 0 then distance + 1 else distance
233 distance'' = if hn' .&. top_bit_mask /= 0 then distance' - 1 else distance'
/dports/lang/elm/compiler-0.19.1/_cabal_deps/edit-distance-0.2.2.1/Text/EditDistance/
H A DBits.hs57 …tractAnswer $ foldl'3k (levenshteinDistanceWorker (matchVectors str1) top_bit_mask vector_mask) (m…
59 top_bit_mask = 1 `shiftL` (m - 1) :: bv function
67 levenshteinDistanceWorker !str1_mvs !top_bit_mask !vector_mask (!vp, !vn, !distance) !char2 k
88 distance' = if hp' .&. top_bit_mask /= 0 then distance + 1 else distance
89 distance'' = if hn' .&. top_bit_mask /= 0 then distance' - 1 else distance'
209 …dl'5k (restrictedDamerauLevenshteinDistanceWorker (matchVectors str1) top_bit_mask vector_mask) (0…
211 top_bit_mask = 1 `shiftL` (m - 1) :: bv function
217 restrictedDamerauLevenshteinDistanceWorker !str1_mvs !top_bit_mask !vector_mask (!pm, !d0, !vp, !vn…
232 distance' = if hp' .&. top_bit_mask /= 0 then distance + 1 else distance
233 distance'' = if hn' .&. top_bit_mask /= 0 then distance' - 1 else distance'
/dports/devel/hs-git-annex/git-annex-8.20210903/_cabal_deps/edit-distance-0.2.2.1/Text/EditDistance/
H A DBits.hs57 …tractAnswer $ foldl'3k (levenshteinDistanceWorker (matchVectors str1) top_bit_mask vector_mask) (m…
59 top_bit_mask = 1 `shiftL` (m - 1) :: bv function
67 levenshteinDistanceWorker !str1_mvs !top_bit_mask !vector_mask (!vp, !vn, !distance) !char2 k
88 distance' = if hp' .&. top_bit_mask /= 0 then distance + 1 else distance
89 distance'' = if hn' .&. top_bit_mask /= 0 then distance' - 1 else distance'
209 …dl'5k (restrictedDamerauLevenshteinDistanceWorker (matchVectors str1) top_bit_mask vector_mask) (0…
211 top_bit_mask = 1 `shiftL` (m - 1) :: bv function
217 restrictedDamerauLevenshteinDistanceWorker !str1_mvs !top_bit_mask !vector_mask (!pm, !d0, !vp, !vn…
232 distance' = if hp' .&. top_bit_mask /= 0 then distance + 1 else distance
233 distance'' = if hn' .&. top_bit_mask /= 0 then distance' - 1 else distance'
/dports/lang/purescript/purescript-0.14.5/_cabal_deps/edit-distance-0.2.2.1/Text/EditDistance/
H A DBits.hs57 …tractAnswer $ foldl'3k (levenshteinDistanceWorker (matchVectors str1) top_bit_mask vector_mask) (m…
59 top_bit_mask = 1 `shiftL` (m - 1) :: bv function
67 levenshteinDistanceWorker !str1_mvs !top_bit_mask !vector_mask (!vp, !vn, !distance) !char2 k
88 distance' = if hp' .&. top_bit_mask /= 0 then distance + 1 else distance
89 distance'' = if hn' .&. top_bit_mask /= 0 then distance' - 1 else distance'
209 …dl'5k (restrictedDamerauLevenshteinDistanceWorker (matchVectors str1) top_bit_mask vector_mask) (0…
211 top_bit_mask = 1 `shiftL` (m - 1) :: bv function
217 restrictedDamerauLevenshteinDistanceWorker !str1_mvs !top_bit_mask !vector_mask (!pm, !d0, !vp, !vn…
232 distance' = if hp' .&. top_bit_mask /= 0 then distance + 1 else distance
233 distance'' = if hn' .&. top_bit_mask /= 0 then distance' - 1 else distance'
/dports/devel/hs-hlint/hlint-3.3.4/_cabal_deps/ghc-lib-parser-9.0.1.20210324/compiler/GHC/Utils/
H A DMisc.hs951 (matchVectors str1) top_bit_mask vector_mask)
955 top_bit_mask = (1 `shiftL` (m - 1)) `asTypeOf` _bv_dummy function
961 restrictedDamerauLevenshteinDistanceWorker str1_mvs top_bit_mask vector_mask
963 = seq str1_mvs $ seq top_bit_mask $ seq vector_mask $
982 distance' = if hp' .&. top_bit_mask /= 0 then distance + 1 else distance
983 distance'' = if hn' .&. top_bit_mask /= 0 then distance' - 1 else distance'
/dports/lang/ghc/ghc-8.10.7/compiler/utils/
H A DUtil.hs903 (matchVectors str1) top_bit_mask vector_mask)
907 top_bit_mask = (1 `shiftL` (m - 1)) `asTypeOf` _bv_dummy function
913 restrictedDamerauLevenshteinDistanceWorker str1_mvs top_bit_mask vector_mask
915 = seq str1_mvs $ seq top_bit_mask $ seq vector_mask $
934 distance' = if hp' .&. top_bit_mask /= 0 then distance + 1 else distance
935 distance'' = if hn' .&. top_bit_mask /= 0 then distance' - 1 else distance'
/dports/devel/hs-haskell-language-server/haskell-language-server-1.4.0/_cabal_deps/ghc-lib-parser-8.10.7.20210828/compiler/utils/
H A DUtil.hs903 (matchVectors str1) top_bit_mask vector_mask)
907 top_bit_mask = (1 `shiftL` (m - 1)) `asTypeOf` _bv_dummy function
913 restrictedDamerauLevenshteinDistanceWorker str1_mvs top_bit_mask vector_mask
915 = seq str1_mvs $ seq top_bit_mask $ seq vector_mask $
934 distance' = if hp' .&. top_bit_mask /= 0 then distance + 1 else distance
935 distance'' = if hn' .&. top_bit_mask /= 0 then distance' - 1 else distance'
/dports/devel/hs-ormolu/ormolu-0.4.0.0/_cabal_deps/ghc-lib-parser-9.2.1.20211101/compiler/GHC/Utils/
H A DMisc.hs953 (matchVectors str1) top_bit_mask vector_mask)
957 top_bit_mask = (1 `shiftL` (m - 1)) `asTypeOf` _bv_dummy function
963 restrictedDamerauLevenshteinDistanceWorker str1_mvs top_bit_mask vector_mask
965 = seq str1_mvs $ seq top_bit_mask $ seq vector_mask $
984 distance' = if hp' .&. top_bit_mask /= 0 then distance + 1 else distance
985 distance'' = if hn' .&. top_bit_mask /= 0 then distance' - 1 else distance'
/dports/www/chromium-legacy/chromium-88.0.4324.182/native_client/src/trusted/validator_arm/
H A Ddgen_core.py2413 top_bit_mask = 1
2415 top_bit_mask = top_bit_mask << 1
2423 (value_x, top_bit_mask, value_x, replicate_mask, value_x))