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

123456

/external/elfutils/src/libdwfl/
H A Ddwfl_addrdie.c32 dwfl_addrdie (Dwfl *dwfl, Dwarf_Addr addr, Dwarf_Addr *bias) argument
35 addr, bias);
H A Ddwfl_addrdwarf.c32 dwfl_addrdwarf (Dwfl *dwfl, Dwarf_Addr address, Dwarf_Addr *bias) argument
35 bias);
H A Ddwfl_dwarf_line.c33 dwfl_dwarf_line (Dwfl_Line *line, Dwarf_Addr *bias) argument
41 *bias = dwfl_adjusted_dwarf_addr (cu->mod, 0);
H A Ddwfl_module_addrdie.c32 dwfl_module_addrdie (Dwfl_Module *mod, Dwarf_Addr addr, Dwarf_Addr *bias) argument
34 if (INTUSE(dwfl_module_getdwarf) (mod, bias) == NULL)
H A Ddwfl_module_nextcu.c32 dwfl_module_nextcu (Dwfl_Module *mod, Dwarf_Die *lastcu, Dwarf_Addr *bias) argument
34 if (INTUSE(dwfl_module_getdwarf) (mod, bias) == NULL)
H A Ddwfl_nextcu.c32 dwfl_nextcu (Dwfl *dwfl, Dwarf_Die *lastcu, Dwarf_Addr *bias) argument
57 *bias = dwfl_adjusted_dwarf_addr (mod, 0);
71 || INTUSE(dwfl_module_getdwarf) (mod, bias) != NULL))
H A Ddwfl_getdwarf.c44 Dwarf_Addr bias = 0; local
45 Dwarf *dw = INTUSE(dwfl_module_getdwarf) (mod, &bias);
46 return (*info->callback) (mod, userdata, name, start, dw, bias, info->arg);
H A Ddwfl_module_getsrc.c35 Dwarf_Addr bias; local
36 if (INTUSE(dwfl_module_getdwarf) (mod, &bias) == NULL)
53 addr -= bias;
H A Ddwfl_module_getsrc_file.c43 Dwarf_Addr bias; local
44 if (INTUSE(dwfl_module_getdwarf) (mod, &bias) == NULL)
H A Ddwfl_module_getsym.c150 case SHN_ABS: /* XXX sometimes should use bias?? */
171 /* Apply the bias to the symbol value. */
200 Elf **elfp, Dwarf_Addr *bias)
203 return __libdwfl_getsym (mod, ndx, sym, addr, shndxp, elfp, bias,
197 dwfl_module_getsym_info(Dwfl_Module *mod, int ndx, GElf_Sym *sym, GElf_Addr *addr, GElf_Word *shndxp, Elf **elfp, Dwarf_Addr *bias) argument
/external/elfutils/src/tests/
H A Ddwfl-addr-sect.c37 Dwarf_Addr bias; local
38 Elf_Scn *scn = dwfl_module_address_section (mod, &adjusted, &bias);
H A Ddwfl-bug-fd-leak.c58 Dwarf_Addr bias; local
59 Dwarf *dbg = dwfl_addrdwarf (dwfl, address, &bias);
68 Elf *elf = dwfl_module_getelf (dwfl_addrmodule (dwfl, address), &bias);
H A Dallregs.c57 Dwarf_Addr bias; local
58 if (dwfl_module_getelf (mod, &bias) == NULL) /* Not really a module. */
H A Ddwfllines.c42 Dwarf_Addr bias; local
45 cu = dwfl_nextcu (dwfl, cu, &bias);
75 assert (bias == dw_bias);
H A Ddwflsyms.c125 Dwarf_Addr bias; local
137 &elf, &bias);
145 || sym.st_value == isym.st_value + bias
154 assert (addr_in_section (elf, shndxp, sym.st_value - bias));
186 if (value != isym.st_value + bias && ehdr.e_type != ET_REL)
/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/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.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/libvpx/libvpx/vp9/encoder/
H A Dvp9_picklpf.c83 int bias = (best_err >> (15 - (filt_mid / 8))) * filter_step; local
86 bias = (bias * cpi->twopass.section_intra_rating) / 20;
88 // yx, bias less for large block size
90 bias >>= 1;
100 // If value is close to the best so far then bias towards a lower loop
102 if ((filt_err - bias) < best_err) {
120 if (filt_err < (best_err - bias)) {
/external/skia/gm/
H A Dmatrixconvolution.cpp59 SkScalar gain = 0.3f, bias = SkIntToScalar(100); local
65 bias,
/external/skia/src/gpu/effects/
H A DGrMatrixConvolutionEffect.h26 SkScalar bias,
35 bias,
45 SkScalar bias,
59 float bias() const { return fBias; } function in class:GrMatrixConvolutionEffect
75 SkScalar bias,
21 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/deqp/modules/gles31/functional/
H A Des31fFboTestUtil.hpp62 void setTexScaleBias (int samplerNdx, const tcu::Vec4& scale, const tcu::Vec4& bias);
63 void setOutScaleBias (const tcu::Vec4& scale, const tcu::Vec4& bias);
75 tcu::Vec4 bias; member in struct:deqp::gles31::Functional::FboTestUtil::Texture2DShader::Input
93 void setTexScaleBias (const tcu::Vec4& scale, const tcu::Vec4& bias);
130 void readPixels (sglr::Context& ctx, tcu::Surface& dst, int x, int y, int width, int height, const tcu::TextureFormat& format, const tcu::Vec4& scale, const tcu::Vec4& bias);
/external/icu/icu4c/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/libvorbis/vq/
H A Dvqgen.h40 float *bias; member in struct:vqgen
/external/linux-tools-perf/src/tools/perf/util/
H A Dprobe-finder.h28 Dwarf_Addr bias; member in struct:debuginfo

Completed in 5347 milliseconds

123456