Home | History | Annotate | Download | only in cffLib

Lines Matching refs:lambda

27 		missing = lambda x: start if x > maxx else total
30 missing = lambda x: start if x < minx else total
115 nomnCostU = missingdict(lambda x: cumFrqU[x] + cumFrqU[x-108] + cumFrqU[x-1132]*3)
116 nomnCostD = missingdict(lambda x: cumFrqD[x] + cumFrqD[x+108] + cumFrqD[x+1132]*3)
117 nomnCost = missingdict(lambda x: nomnCostU[x] + nomnCostD[x] - widths[x])
120 dfltCostU = missingdict(lambda x: max(cumMaxU[x], cumMaxU[x-108]*2, cumMaxU[x-1132]*5))
121 dfltCostD = missingdict(lambda x: max(cumMaxD[x], cumMaxD[x+108]*2, cumMaxD[x+1132]*5))
122 dfltCost = missingdict(lambda x: max(dfltCostU[x], dfltCostD[x]))
125 bestCost = missingdict(lambda x: nomnCost[x] - dfltCost[x])
128 nominal = min(domain, key=lambda x: bestCost[x])
146 default = min(ends, key=lambda default: byteCost(widths, default, nominal))