Searched refs:bias (Results 1 - 25 of 55) sorted by relevance

123

/macosx-10.10/apr-32/apr/apr/strings/
H A Dapr_strnatcmp.c39 int bias = 0; local
53 if (!bias)
54 bias = -1;
56 if (!bias)
57 bias = +1;
62 return bias;
/macosx-10.10/WTF-7600.1.24/wtf/
H A DGregorianDateTime.cpp46 LONG bias = timeZoneInformation.Bias; local
48 bias += timeZoneInformation.DaylightBias;
50 bias += timeZoneInformation.StandardBias;
62 m_utcOffset = -bias * secondsPerMinute;
/macosx-10.10/ICU-531.30/icuSources/test/intltest/
H A Dpunyref.c133 punycode_uint n, delta, h, b, out, max_out, bias, j, m, q, k, t; local
140 bias = initial_bias;
192 t = k <= bias /* + tmin */ ? tmin : /* +tmin not needed */
193 k >= bias + tmax ? tmax : k - bias;
200 bias = adapt(delta, h + 1, h == b);
222 punycode_uint n, out, i, max_out, bias, local
230 bias = initial_bias;
264 t = k <= bias /* + tmin */ ? tmin : /* +tmin not needed */
265 k >= bias
[all...]
/macosx-10.10/Heimdal-398.1.2/lib/wind/
H A Dpunycode.c94 unsigned bias = initial_bias; local
140 if (k <= bias)
142 else if (k >= bias + t_max)
145 t = k - bias;
157 bias = adapt(delta, h + 1, h == b);
/macosx-10.10/bind9-45.101/bind9/contrib/idn/idnkit-1.0-src/lib/
H A Dpunycode.c100 int bias, unsigned long *vp);
102 unsigned long delta, int bias);
114 int first, bias; local
153 bias = PUNYCODE_INITIAL_BIAS;
161 len = punycode_getwc(from + fidx, fromlen - fidx, bias, &delta);
168 bias = punycode_update_bias(delta, ucslen + 1, first);
214 int uidx, bias, first; local
288 bias = PUNYCODE_INITIAL_BIAS;
321 int sz = punycode_putwc(to, tolen, delta, bias);
329 bias
360 punycode_getwc(const char *s, size_t len, int bias, unsigned long *vp) argument
397 punycode_putwc(char *s, size_t len, unsigned long delta, int bias) argument
[all...]
/macosx-10.10/ICU-531.30/icuSources/i18n/
H A Dwintzimpl.cpp36 static UBool getSystemTimeInformation(TimeZone *tz, SYSTEMTIME &daylightDate, SYSTEMTIME &standardDate, int32_t &bias, int32_t &daylightBias, int32_t &standardBias) { argument
46 bias = -1 * (initial->getRawOffset()/60000);
58 bias = -1 * (std->getRawOffset()/60000);
122 int32_t bias; local
128 if (getSystemTimeInformation(tz, daylightDate, standardDate, bias, daylightBias, standardBias)) {
130 zoneInfo->Bias = bias;
145 * information to put into zoneInfo. This includes bias and standard time date and daylight saving date.
/macosx-10.10/WebCore-7600.1.25/svg/
H A DSVGFEConvolveMatrixElement.idl41 readonly attribute SVGAnimatedNumber bias;
H A DSVGFEConvolveMatrixElement.h94 DECLARE_ANIMATED_NUMBER(Bias, bias)
H A DSVGFEConvolveMatrixElement.cpp44 DEFINE_ANIMATED_NUMBER(SVGFEConvolveMatrixElement, SVGNames::biasAttr, Bias, bias)
58 REGISTER_LOCAL_ANIMATED_PROPERTY(bias)
227 return convolveMatrix->setBias(bias());
342 bias(), IntPoint(targetXValue, targetYValue), edgeMode(),
/macosx-10.10/ksh-23/ksh/src/cmd/INIT/
H A Dldd.cygwin.i3862 : cygwin.i386 ldd -- how many ways does this confirm the windows bias?
/macosx-10.10/WebCore-7600.1.25/platform/graphics/filters/
H A DFEConvolveMatrix.cpp38 float divisor, float bias, const IntPoint& targetOffset, EdgeModeType edgeMode,
43 , m_bias(bias)
55 float divisor, float bias, const IntPoint& targetOffset, EdgeModeType edgeMode,
58 return adoptRef(new FEConvolveMatrix(filter, kernelSize, divisor, bias, targetOffset, edgeMode, kernelUnitLength,
99 float FEConvolveMatrix::bias() const function in class:WebCore::FEConvolveMatrix
104 bool FEConvolveMatrix::setBias(float bias) argument
106 if (m_bias == bias)
108 m_bias = bias;
232 ALWAYS_INLINE void setDestinationPixels(Uint8ClampedArray* image, int& pixel, float* totals, float divisor, float bias, Uint8ClampedArray* src) argument
234 unsigned char maxAlpha = preserveAlphaValues ? 255 : clampRGBAValue(totals[3] / divisor + bias);
37 FEConvolveMatrix(Filter* filter, const IntSize& kernelSize, float divisor, float bias, const IntPoint& targetOffset, EdgeModeType edgeMode, const FloatPoint& kernelUnitLength, bool preserveAlpha, const Vector<float>& kernelMatrix) argument
54 create(Filter* filter, const IntSize& kernelSize, float divisor, float bias, const IntPoint& targetOffset, EdgeModeType edgeMode, const FloatPoint& kernelUnitLength, bool preserveAlpha, const Vector<float>& kernelMatrix) argument
[all...]
H A DFEConvolveMatrix.h57 float bias() const;
86 float bias; member in struct:WebCore::FEConvolveMatrix::PaintingData
/macosx-10.10/ICU-531.30/icuSources/common/
H A Dpunycode.cpp188 int32_t n, delta, handledCPCount, basicLength, destLength, bias, j, m, q, k, t, srcCPCount; local
294 bias=INITIAL_BIAS;
331 t=k-bias;
339 t=k-bias;
342 } else if(k>=(bias+TMAX)) {
361 bias=adaptBias(delta, handledCPCount+1, (UBool)(handledCPCount==basicLength));
379 int32_t n, destLength, i, bias, basicLength, j, in, oldi, w, k, digit, t, local
432 bias=INITIAL_BIAS;
469 t=k-bias;
476 t=k-bias;
[all...]
H A Dwintz.c35 int32_t bias; member in struct:__anon905
275 tziKey.bias = apiTZI.Bias;
306 Using the bias and the rules suffices, so overwrite
/macosx-10.10/cxxfilt-11/cxxfilt/libiberty/
H A Dsort.c86 digit_t *bias; local
105 bias = ((digit_t *) pointers) + j;
111 for (digit = bias;
/macosx-10.10/emacs-93/emacs/src/
H A Dunexaix.c88 static long bias; /* Bias to add for growth */ variable
334 bias = -1;
357 if (bias == -1) /* if first section after bss */
358 bias = ptr - s->s_scnptr;
360 s->s_scnptr += bias;
375 s->s_relptr += bias;
380 s->s_lnnoptr += bias;
386 f_hdr.f_symptr += bias;
565 symentry.n_value += bias;
577 auxentry.x_sym.x_fcnary.x_fcn.x_lnnoptr += bias;
[all...]
H A Dunexconvex.c193 long bias; /* Bias to add for growth */ variable
424 bias = eo_data - block_copy_start;
427 f_ohdr.o_symptr += bias;
431 f_hdr.h_strptr += bias;
/macosx-10.10/tcl-105/tcl_ext/tkimg/tkimg/compat/libjpeg/
H A Djcsample.c216 * A note about the "bias" calculations: when rounding fractional values to
218 * If we did that, we'd introduce a noticeable bias towards larger values.
231 register int bias; local
243 bias = 0; /* bias = 0,1,0,1,... for successive samples */
246 + bias) >> 1);
247 bias ^= 1; /* 0=>1, 1=>0 */
268 register int bias; local
282 bias = 1; /* bias
[all...]
/macosx-10.10/tcl-105/tcl_ext/tkimg/tkimg/compat/libtiff/tools/
H A Dtiffcp.c93 static TIFF* bias = NULL; variable
181 case 'b': /* this file is bias image subtracted from others */
182 if (bias) {
183 fputs ("Only 1 bias image may be specified\n", stderr);
189 bias = openSrcImage (biasFn);
190 if (!bias) exit (-5);
191 if (TIFFIsTiled (bias)) {
195 TIFFGetField(bias, TIFFTAG_SAMPLESPERPIXEL, &samples);
389 " -b file[,#] bias (dark) monochrome image to be subtracted from all others",
811 typedef void biasFn (void *image, void *bias, uint3
[all...]
/macosx-10.10/ksh-23/ksh/src/lib/libast/uwin/
H A Dsupport.c85 static const short prep1=57, gap=7, bias=129 ; variable
89 static const short prep1=54, gap=4, bias=1023 ; variable
193 return (int)(((*px&mexp)>>gap)-bias);
197 return ( (k>>gap) - bias );
/macosx-10.10/emacs-93/emacs/lisp/progmodes/
H A Debnf-abn.el230 (bias (1- start))
242 (/ (* (- (point) bias) 100.0) total))
H A Debnf-bnf.el149 (bias (1- start))
159 (/ (* (- (point) bias) 100.0) total))
H A Debnf-ebx.el215 (bias (1- start))
227 (/ (* (- (point) bias) 100.0) total))
H A Debnf-iso.el145 (bias (1- start))
155 (/ (* (- (point) bias) 100.0) total))
H A Debnf-yac.el122 (bias (1- start))
135 (/ (* (- (point) bias) 100.0) total))

Completed in 330 milliseconds

123