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

1 2 3 4 5

  /external/chromium_org/third_party/WebKit/Source/wtf/
GregorianDateTime.cpp 46 LONG bias = timeZoneInformation.Bias; local
48 bias += timeZoneInformation.DaylightBias;
50 bias += timeZoneInformation.StandardBias;
62 m_utcOffset = -bias * secondsPerMinute;
  /external/elfutils/libdwfl/
dwfl_module_getsrc.c 56 Dwarf_Addr bias; local
57 if (INTUSE(dwfl_module_getdwarf) (mod, &bias) == NULL)
67 addr -= bias;
dwfl_getdwarf.c 65 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);
dwfl_module_getsrc_file.c 63 Dwarf_Addr bias; local
64 if (INTUSE(dwfl_module_getdwarf) (mod, &bias) == NULL)
dwfl_report_elf.c 75 GElf_Addr start = 0, end = 0, bias = 0; local
102 || (bias == 0 && end > start && end != next))
155 if (first || bias > shdr->sh_addr)
157 bias = shdr->sh_addr;
159 if ((shdr->sh_addr - bias + base) & (align - 1))
164 + (bias & (align - 1)));
171 if (bias != 0)
175 Now just compute the bias from the requested base. */
177 end = end - bias + start;
178 bias = start - bias
    [all...]
  /external/elfutils/tests/
dwfl-addr-sect.c 45 Dwarf_Addr bias; local
46 Elf_Scn *scn = dwfl_module_address_section (mod, &adjusted, &bias);
dwfl-bug-fd-leak.c 66 Dwarf_Addr bias; local
67 Dwarf *dbg = dwfl_addrdwarf (dwfl, address, &bias);
76 Elf *elf = dwfl_module_getelf (dwfl_addrmodule (dwfl, address), &bias);
allregs.c 83 Dwarf_Addr bias; local
84 if (dwfl_module_getelf (mod, &bias) == NULL) /* Not really a module. */
  /external/chromium_org/third_party/skia/src/core/
SkFloatBits.cpp 167 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/skia/bench/
MatrixConvolutionBench.cpp 24 SkScalar gain = SkFloatToScalar(0.3f), bias = SkIntToScalar(100); local
26 fFilter = new SkMatrixConvolutionImageFilter(kernelSize, kernel, gain, bias, target, tileMode, convolveAlpha);
  /external/skia/src/core/
SkFloatBits.cpp 167 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;
  /build/tools/zipalign/
ZipAlign.cpp 51 int bias = 0; local
76 long newOffset = pEntry->getFileOffset() + bias;
81 // bias, (long) pEntry->getUncompressedLen(), padding);
87 bias += padding;
  /external/chromium_org/third_party/icu/source/i18n/
wintzimpl.cpp 36 static UBool getSystemTimeInformation(TimeZone *tz, SYSTEMTIME &daylightDate, SYSTEMTIME &standardDate, int32_t &bias, int32_t &daylightBias, int32_t &standardBias) {
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/drivers/svga/
svga_state_rss.c 235 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 );
svga_swtnl_backend.c 233 unsigned bias = (svga_render->vbuf_offset - svga_render->vdecl_offset) / svga_render->vertex_size; local
245 ret = svga_hwtnl_draw_arrays(svga->hwtnl, svga_render->prim, start + bias, nr);
248 ret = svga_hwtnl_draw_arrays(svga->hwtnl, svga_render->prim, start + bias, nr);
263 int bias = (svga_render->vbuf_offset - svga_render->vdecl_offset) / svga_render->vertex_size; local
296 bias,
306 bias,
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/r200/
r200_tex.c 326 GLfloat bias, min; local
330 /* The R200's LOD bias is a signed 2's complement value with a
331 * range of -16.0 <= bias < 16.0.
333 * NOTE: Add a small bias to the bias for conform mipsel.c test.
335 bias = *param;
338 bias = CLAMP( bias, min, 16.0 );
339 b = ((int)(bias * fixed_one)
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/radeon/
radeon_tex.c 284 GLfloat bias, min; local
287 /* The Radeon's LOD bias is a signed 2's complement value with a
288 * range of -1.0 <= bias < 4.0. We break this into two linear
294 bias = CLAMP( *param, min, 4.0 );
295 if ( bias == 0 ) {
297 } else if ( bias > 0 ) {
298 b = ((GLuint)SCALED_FLOAT_TO_BYTE( bias, 4.0 )) << RADEON_LOD_BIAS_SHIFT;
300 b = ((GLuint)SCALED_FLOAT_TO_BYTE( bias, 1.0 )) << RADEON_LOD_BIAS_SHIFT;
  /external/icu4c/i18n/
wintzimpl.cpp 36 static UBool getSystemTimeInformation(TimeZone *tz, SYSTEMTIME &daylightDate, SYSTEMTIME &standardDate, int32_t &bias, int32_t &daylightBias, int32_t &standardBias) {
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/
vqgen.h 40 float *bias; member in struct:vqgen
  /external/mesa3d/src/gallium/drivers/svga/
svga_state_rss.c 235 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 );
svga_swtnl_backend.c 233 unsigned bias = (svga_render->vbuf_offset - svga_render->vdecl_offset) / svga_render->vertex_size; local
245 ret = svga_hwtnl_draw_arrays(svga->hwtnl, svga_render->prim, start + bias, nr);
248 ret = svga_hwtnl_draw_arrays(svga->hwtnl, svga_render->prim, start + bias, nr);
263 int bias = (svga_render->vbuf_offset - svga_render->vdecl_offset) / svga_render->vertex_size; local
296 bias,
306 bias,
  /external/mesa3d/src/mesa/drivers/dri/r200/
r200_tex.c 326 GLfloat bias, min; local
330 /* The R200's LOD bias is a signed 2's complement value with a
331 * range of -16.0 <= bias < 16.0.
333 * NOTE: Add a small bias to the bias for conform mipsel.c test.
335 bias = *param;
338 bias = CLAMP( bias, min, 16.0 );
339 b = ((int)(bias * fixed_one)
  /external/mesa3d/src/mesa/drivers/dri/radeon/
radeon_tex.c 284 GLfloat bias, min; local
287 /* The Radeon's LOD bias is a signed 2's complement value with a
288 * range of -1.0 <= bias < 4.0. We break this into two linear
294 bias = CLAMP( *param, min, 4.0 );
295 if ( bias == 0 ) {
297 } else if ( bias > 0 ) {
298 b = ((GLuint)SCALED_FLOAT_TO_BYTE( bias, 4.0 )) << RADEON_LOD_BIAS_SHIFT;
300 b = ((GLuint)SCALED_FLOAT_TO_BYTE( bias, 1.0 )) << RADEON_LOD_BIAS_SHIFT;
  /external/skia/gm/
matrixconvolution.cpp 57 SkScalar gain = SkFloatToScalar(0.3f), bias = SkIntToScalar(100); local
59 SkAutoTUnref<SkImageFilter> filter(SkNEW_ARGS(SkMatrixConvolutionImageFilter, (kernelSize, kernel, gain, bias, target, tileMode, convolveAlpha)));
  /hardware/invensense/60xx/mlsdk/mllite/
mlBiasNoMotion.c 76 /** Turns on the feature to compute gyro bias from No Motion */
86 /** Turns off the feature to compute gyro bias from No Motion
103 short bias[GYRO_NUM_AXES]; local
121 inv_convert_bias(regs, bias);
130 result = inv_set_gyro_bias_in_hw_unit(bias, INV_SGB_NO_MOTION);
218 * 'no motion' state and update the internal motion status and bias
336 // Rotate bias vector by the transpose of the orientation matrix

Completed in 378 milliseconds

1 2 3 4 5