Home | History | Annotate | Download | only in fxbarcode

Lines Matching defs:widths

34   CBC_AutoPtr<CFX_Int32Array> widths(iTemp);

66 (*widths)[bar] = elmWidth;
68 (*widths)[bar] = n;
69 return widths.release();
71 int32_t CBC_UtilRSS::GetRSSvalue(CFX_Int32Array& widths,
74 int32_t elements = widths.GetSize();
77 n += widths[i];
83 for (elmWidth = 1, narrowMask |= (1 << bar); elmWidth < widths[bar];
134 CFX_Int32Array* widths = new CFX_Int32Array;
135 widths->SetSize(eDist.GetSize() + 2);
137 (*widths)[0] = 1;
142 (*widths)[i] = eDist[i - 1] - (*widths)[i - 1];
143 (*widths)[i + 1] = eDist[i] - (*widths)[i];
144 barSum += (*widths)[i] + (*widths)[i + 1];
145 if ((*widths)[i] < minEven) {
146 minEven = (*widths)[i];
149 (*widths)[twoK - 1] = N - barSum;
150 if ((*widths)[twoK - 1] < minEven) {
151 minEven = (*widths)[twoK - 1];
155 (*widths)[i] += minEven - 1;
156 (*widths)[i + 1] -= minEven - 1;
159 return widths;