Searched defs:bias (Results 1 - 25 of 165) sorted by relevance

1234567

/external/elfutils/0.153/libdwfl/
H A Ddwfl_addrdie.c53 dwfl_addrdie (Dwfl *dwfl, Dwarf_Addr addr, Dwarf_Addr *bias) argument
56 addr, bias);
H A Ddwfl_addrdwarf.c53 dwfl_addrdwarf (Dwfl *dwfl, Dwarf_Addr address, Dwarf_Addr *bias) argument
56 bias);
H A Ddwfl_dwarf_line.c54 dwfl_dwarf_line (Dwfl_Line *line, Dwarf_Addr *bias) argument
62 *bias = dwfl_adjusted_dwarf_addr (cu->mod, 0);
H A Ddwfl_module_addrdie.c53 dwfl_module_addrdie (Dwfl_Module *mod, Dwarf_Addr addr, Dwarf_Addr *bias) argument
55 if (INTUSE(dwfl_module_getdwarf) (mod, bias) == NULL)
H A Ddwfl_module_nextcu.c53 dwfl_module_nextcu (Dwfl_Module *mod, Dwarf_Die *lastcu, Dwarf_Addr *bias) argument
55 if (INTUSE(dwfl_module_getdwarf) (mod, bias) == NULL)
H A Ddwfl_nextcu.c53 dwfl_nextcu (Dwfl *dwfl, Dwarf_Die *lastcu, Dwarf_Addr *bias) argument
78 *bias = dwfl_adjusted_dwarf_addr (mod, 0);
92 || INTUSE(dwfl_module_getdwarf) (mod, bias) != NULL))
H A Ddwfl_module_getsrc.c56 Dwarf_Addr bias; local
57 if (INTUSE(dwfl_module_getdwarf) (mod, &bias) == NULL)
67 addr -= bias;
H A Ddwfl_getdwarf.c65 Dwarf_Addr bias = 0; local
66 Dwarf *dw = INTUSE(dwfl_module_getdwarf) (mod, &bias);
67 return (*info->callback) (mod, userdata, name, start, dw, bias, info->arg);
H A Ddwfl_module_getsrc_file.c64 Dwarf_Addr bias; local
65 if (INTUSE(dwfl_module_getdwarf) (mod, &bias) == NULL)
/external/fio/lib/
H A Dieee754.c47 exp = shift + ((1 << (expbits - 1)) - 1); // shift + bias
57 unsigned bias; local
69 bias = (1 << (expbits - 1)) - 1;
70 shift = ((i >> significandbits) & ((1LL << expbits) - 1)) - bias;
/external/chromium_org/third_party/skia/bench/
H A DMatrixConvolutionBench.cpp24 SkScalar gain = 0.3f, bias = SkIntToScalar(100); local
26 fFilter = SkMatrixConvolutionImageFilter::Create(kernelSize, kernel, gain, bias, kernelOffset, tileMode, convolveAlpha);
/external/chromium_org/third_party/skia/src/core/
H A DSkFloatBits.cpp186 int bias = 8 - SkCLZ(value); local
187 SkDebugf("value = %d, bias = %d\n", value, bias);
188 SkASSERT(bias > 0 && bias < 8);
189 value >>= bias; // need to round? local
190 shift += bias;
/external/skia/bench/
H A DMatrixConvolutionBench.cpp24 SkScalar gain = 0.3f, bias = SkIntToScalar(100); local
26 fFilter = SkMatrixConvolutionImageFilter::Create(kernelSize, kernel, gain, bias, kernelOffset, tileMode, convolveAlpha);
/external/skia/src/core/
H A DSkFloatBits.cpp167 int bias = 8 - SkCLZ(value); local
168 SkDebugf("value = %d, bias = %d\n", value, bias);
169 SkASSERT(bias > 0 && bias < 8);
170 value >>= bias; // need to round? local
171 shift += bias;
/external/chromium_org/third_party/WebKit/Source/core/svg/
H A DSVGFEConvolveMatrixElement.h44 SVGAnimatedNumber* bias() { return m_bias.get(); } function in class:blink::FINAL
/external/chromium_org/third_party/libvpx/source/libvpx/vp9/encoder/
H A Dvp9_picklpf.c82 int bias = (best_err >> (15 - (filt_mid / 8))) * filter_step; local
85 bias = (bias * cpi->twopass.section_intra_rating) / 20;
87 // yx, bias less for large block size
89 bias >>= 1;
96 // If value is close to the best so far then bias towards a lower loop
98 if ((ss_err[filt_low] - bias) < best_err) {
113 if (ss_err[filt_high] < (best_err - bias)) {
/external/chromium_org/third_party/skia/gm/
H A Dmatrixconvolution.cpp62 SkScalar gain = 0.3f, bias = SkIntToScalar(100); local
68 bias,
/external/chromium_org/third_party/skia/src/gpu/effects/
H A DGrMatrixConvolutionEffect.h27 SkScalar bias,
36 bias,
46 SkScalar bias,
67 float bias() const { return fBias; } function in class:GrMatrixConvolutionEffect
81 SkScalar bias,
22 Create(GrTexture* texture, const SkIRect& bounds, const SkISize& kernelSize, const SkScalar* kernel, SkScalar gain, SkScalar bias, const SkIPoint& kernelOffset, GrTextureDomain::Mode tileMode, bool convolveAlpha) argument
/external/libvpx/libvpx/vp9/encoder/
H A Dvp9_picklpf.c78 int bias = (best_err >> (15 - (filt_mid / 8))) * filter_step; local
81 bias = bias * cpi->twopass.section_intra_rating / 20;
83 // yx, bias less for large block size
85 bias >>= 1;
95 // If value is close to the best so far then bias towards a lower loop
97 if ((filt_err - bias) < best_err) {
115 if (filt_err < (best_err - bias)) {
/external/skia/gm/
H A Dmatrixconvolution.cpp61 SkScalar gain = 0.3f, bias = SkIntToScalar(100); local
67 bias,
/external/skia/include/effects/
H A DSkMatrixConvolutionImageFilter.h40 @param bias A bias factor added to each pixel after convolution.
57 SkScalar bias,
63 return SkNEW_ARGS(SkMatrixConvolutionImageFilter, (kernelSize, kernel, gain, bias,
74 SkScalar bias,
54 Create(const SkISize& kernelSize, const SkScalar* kernel, SkScalar gain, SkScalar bias, const SkIPoint& kernelOffset, TileMode tileMode, bool convolveAlpha, SkImageFilter* input = NULL, const CropRect* cropRect = NULL) argument
/external/chromium_org/third_party/WebKit/Source/platform/graphics/filters/
H A DFEConvolveMatrix.h57 float bias() const;
85 float bias; member in struct:blink::FEConvolveMatrix::PaintingData
/external/chromium_org/third_party/icu/source/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.
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/draw/
H A Ddraw_pipe_wide_line.c84 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/gallium/drivers/svga/
H A Dsvga_state_rss.c235 float bias = 0.0; local
237 /* Need to modify depth bias according to bound depthbuffer
245 bias = svga->curr.depthscale * curr->depthbias;
249 EMIT_RS_FLOAT( svga, bias, DEPTHBIAS, fail );

Completed in 405 milliseconds

1234567