HomeSort by relevance Sort by last modified time
    Searched defs:bias (Results 26 - 50 of 109) sorted by null

12 3 4 5

  /external/chromium_org/third_party/WebKit/Source/core/platform/graphics/filters/
FEConvolveMatrix.h 57 float bias() const;
85 float bias; member in struct:WebCore::FEConvolveMatrix::PaintingData
  /external/chromium_org/third_party/icu/source/test/intltest/
punyref.c 106 /*** Bias adaptation function ***/
133 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 *
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/draw/
draw_pipe_wide_line.c 84 const float bias = gl_rasterization_rules ? 0.125f : 0.0f; local
94 pos0[1] = pos0[1] - half_width - bias;
95 pos1[1] = pos1[1] + half_width - bias;
96 pos2[1] = pos2[1] - half_width - bias;
97 pos3[1] = pos3[1] + half_width - bias;
117 pos0[0] = pos0[0] - half_width + bias;
118 pos1[0] = pos1[0] + half_width + bias;
119 pos2[0] = pos2[0] - half_width + bias;
120 pos3[0] = pos3[0] + half_width + bias;
  /external/chromium_org/third_party/mesa/src/src/glsl/
loop_controls.cpp 122 const int bias[] = { -1, 0, 1 }; local
125 for (unsigned i = 0; i < Elements(bias); i++) {
127 ? new(mem_ctx) ir_constant(iter_value + bias[i])
128 : new(mem_ctx) ir_constant(float(iter_value + bias[i]));
144 iter_value += bias[i];
  /external/chromium_org/third_party/mesa/src/src/mesa/main/
pixeltransfer.c 28 * Pixel transfer operations (scale, bias, table lookups, etc)
40 * Apply scale and bias factors to an array of RGBA pixels.
133 const GLfloat bias = ctx->Pixel.DepthBias; local
136 GLfloat d = depthValues[i] * scale + bias;
148 const GLdouble bias = ctx->Pixel.DepthBias * max; local
151 GLdouble d = (GLdouble) depthValues[i] * scale + bias;
165 /* scale & bias */
image.c 783 GLfloat t, bias; local
792 bias = (*srcX0 < *srcX1) ? 0.5F : -0.5F;
793 *srcX1 = *srcX0 + (GLint) (t * (*srcX1 - *srcX0) + bias);
802 bias = (*srcX0 < *srcX1) ? -0.5F : 0.5F;
803 *srcX0 = *srcX1 + (GLint) (t * (*srcX0 - *srcX1) + bias);
816 GLfloat t, bias; local
825 bias = (*srcX0 < *srcX1) ? 0.5F : -0.5F; /* flipped??? */
826 *srcX0 = *srcX0 + (GLint) (t * (*srcX1 - *srcX0) + bias);
835 bias = (*srcX0 < *srcX1) ? 0.5F : -0.5F;
836 *srcX1 = *srcX1 + (GLint) (t * (*srcX0 - *srcX1) + bias);
    [all...]
  /external/chromium_org/third_party/ots/src/
cff_type2_charstring.cc 151 int32_t bias = 32768; local
153 bias = 107;
155 bias = 1131;
157 subr_number += bias;
  /external/chromium_org/third_party/smhasher/src/
AvalancheTest.h 5 // is "biased". Too much bias means that patterns applied to the input will
93 printf(" worst bias is %f%%",b * 100.0);
164 double bias = 0; local
171 if(b2 > bias) bias = b2;
174 if(bias > maxBias)
176 maxBias = bias;
183 if (bias < 0.01) printf(".");
184 else if(bias < 0.05) printf("o");
185 else if(bias < 0.33) printf("O")
211 double bias; local
299 double bias = 0; local
387 double bias = 0; local
    [all...]
  /external/elfutils/libdwfl/
derelocate.c 136 newref->start = shdr->sh_addr + mod->main.bias;
241 assert (mod->main.bias == 0);
242 assert (mod->debug.bias == 0);
302 Dwarf_Addr bias; local
303 if (INTUSE(dwfl_module_getdwarf) (mod, &bias) == NULL)
382 Dwarf_Addr *bias)
408 *bias = mod->main.bias;
  /external/icu4c/test/intltest/
punyref.c 106 /*** Bias adaptation function ***/
133 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 *
    [all...]
  /external/mesa3d/src/gallium/auxiliary/draw/
draw_pipe_wide_line.c 84 const float bias = gl_rasterization_rules ? 0.125f : 0.0f; local
94 pos0[1] = pos0[1] - half_width - bias;
95 pos1[1] = pos1[1] + half_width - bias;
96 pos2[1] = pos2[1] - half_width - bias;
97 pos3[1] = pos3[1] + half_width - bias;
117 pos0[0] = pos0[0] - half_width + bias;
118 pos1[0] = pos1[0] + half_width + bias;
119 pos2[0] = pos2[0] - half_width + bias;
120 pos3[0] = pos3[0] + half_width + bias;
  /external/mesa3d/src/glsl/
loop_controls.cpp 122 const int bias[] = { -1, 0, 1 }; local
125 for (unsigned i = 0; i < Elements(bias); i++) {
127 ? new(mem_ctx) ir_constant(iter_value + bias[i])
128 : new(mem_ctx) ir_constant(float(iter_value + bias[i]));
144 iter_value += bias[i];
  /external/mesa3d/src/mesa/main/
pixeltransfer.c 28 * Pixel transfer operations (scale, bias, table lookups, etc)
40 * Apply scale and bias factors to an array of RGBA pixels.
133 const GLfloat bias = ctx->Pixel.DepthBias; local
136 GLfloat d = depthValues[i] * scale + bias;
148 const GLdouble bias = ctx->Pixel.DepthBias * max; local
151 GLdouble d = (GLdouble) depthValues[i] * scale + bias;
165 /* scale & bias */
  /external/chromium_org/third_party/icu/source/common/
punycode.c 157 /* Bias adaptation function. */
185 int32_t n, delta, handledCPCount, basicLength, destLength, bias, j, m, q, k, t, srcCPCount; local
291 bias=INITIAL_BIAS;
328 t=k-bias;
336 t=k-bias;
339 } else if(k>=(bias+TMAX)) {
358 bias=adaptBias(delta, handledCPCount+1, (UBool)(handledCPCount==basicLength));
376 int32_t n, destLength, i, bias, basicLength, j, in, oldi, w, k, digit, t, local
428 bias=INITIAL_BIAS;
465 t=k-bias;
    [all...]
wintz.c 35 int32_t bias; member in struct:__anon13355
243 tziKey.bias = apiTZI.Bias;
265 Using the bias and the rules suffices, so overwrite
  /external/chromium_org/third_party/mesa/src/src/gallium/tests/trivial/
quad-tex.c 237 float scale, bias; local
241 bias = (float)HEIGHT;
244 bias = 0.0f;
253 p->viewport.translate[1] = (half_height + y) * scale + bias;
tri.c 178 float scale, bias; local
182 bias = (float)HEIGHT;
185 bias = 0.0f;
194 p->viewport.translate[1] = (half_height + y) * scale + bias;
  /external/chromium_org/third_party/mesa/src/src/mesa/swrast/
s_texcombine.c 676 /* apply LOD bias, but don't clamp yet */
677 const GLfloat bias = CLAMP(texUnit->LodBias + samp->LodBias, local
682 lambda[i] += bias;
734 /* apply LOD bias, but don't clamp yet */
735 const GLfloat bias = CLAMP(texUnit->LodBias + samp->LodBias, local
740 lambda[i] += bias;
  /external/chromium_org/third_party/skia/src/core/
SkFloat.cpp 71 int bias = 8 - SkCLZ(value); local
72 SkASSERT(bias > 0 && bias < 8);
73 value >>= bias; local
74 shift += bias;
  /external/elfutils/src/
addr2line.c 230 Dwarf_Addr bias = 0; local
231 Dwarf_Die *cudie = dwfl_module_addrdie (mod, addr, &bias);
234 int nscopes = dwarf_getscopes (cudie, addr - bias, &scopes);
  /external/icu4c/common/
punycode.cpp 160 /* Bias adaptation function. */
188 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;
    [all...]
wintz.c 36 int32_t bias; member in struct:__anon20662
275 tziKey.bias = apiTZI.Bias;
307 Using the bias and the rules suffices, so overwrite
  /external/jmonkeyengine/engine/src/core-effects/com/jme3/post/ssao/
SSAOFilter.java 70 private float bias = 0.1f; field in class:SSAOFilter
91 * @param bias the width of the occlusion cone considered by the occludee. default 0.1f
93 public SSAOFilter(float sampleRadius, float intensity, float scale, float bias) {
98 this.bias = bias;
170 ssaoMat.setFloat("Bias", bias);
187 * Return the bias<br>
188 * see {@link #setBias(float bias)}
192 return bias;
    [all...]
  /external/jpeg/
jcsample.c 204 * A note about the "bias" calculations: when rounding fractional values to
206 * If we did that, we'd introduce a noticeable bias towards larger values.
219 register int bias; local
231 bias = 0; /* bias = 0,1,0,1,... for successive samples */
234 + bias) >> 1);
235 bias ^= 1; /* 0=>1, 1=>0 */
256 register int bias; local
270 bias = 1; /* bias = 1,2,1,2,... for successive samples *
    [all...]
  /external/libvorbis/vq/
vqgen.c 255 v->bias=_ogg_calloc(v->entries,sizeof(float));
349 FILE *bias; local
355 sprintf(buff,"bias%d.m",v->it);
356 bias=fopen(buff,"w");
377 /*memset(v->bias,0,sizeof(float)*v->entries);*/
383 float firstmetric=v->metric_func(v,_now(v,0),ppt)+v->bias[0];
384 float secondmetric=v->metric_func(v,_now(v,1),ppt)+v->bias[1];
399 float thismetric=v->metric_func(v,_now(v,j),ppt)+v->bias[j];
421 /* 'thismetric' is to be the bias value necessary in the current
468 v->bias[i]=nearbiasptr[desired-1]
    [all...]

Completed in 1624 milliseconds

12 3 4 5