HomeSort by relevance Sort by last modified time
    Searched refs:bias (Results 51 - 75 of 130) sorted by null

1 23 4 5 6

  /hardware/invensense/mlsdk/mlutils/
mputest.c 246 * bias level threshold, the maximun acceptable no motion bias
288 * output pointer to store the initial bias calculation provided
468 /* 2nd, check bias from X and Y PLL clock source */
477 MPL_LOGI("bias : %+13.3f %+13.3f %+13.3f (LSB)\n",
488 MPL_LOGI("%s-Gyro bias (%.0f) exceeded threshold "
559 * output pointer to store the initial bias calculation provided
744 /* 2nd, check bias from X and Y PLL clock source */
753 MPL_LOGI("bias : %+13.3f %+13.3f %+13.3f (LSB)\n",
825 * and calculate the necessary bias correction
    [all...]
  /external/elfutils/libdwfl/
dwfl_module_build_id.c 124 phdr->p_vaddr + mod->main.bias);
135 ? shdr->sh_addr + mod->main.bias : NO_VADDR);
dwfl_module_getsrc_file.c 63 Dwarf_Addr bias; local
64 if (INTUSE(dwfl_module_getdwarf) (mod, &bias) == NULL)
segment.c 273 dwfl_report_segment (Dwfl *dwfl, int ndx, const GElf_Phdr *phdr, GElf_Addr bias,
292 GElf_Addr start = segment_start (dwfl, bias + phdr->p_vaddr);
293 GElf_Addr end = segment_end (dwfl, bias + phdr->p_vaddr + phdr->p_memsz);
317 dwfl->lookup_tail_offset = end - bias - phdr->p_vaddr + phdr->p_offset;
dwfl_module_addrsym.c 74 GElf_Addr mod_addr = addr - mod->symfile->bias;
  /frameworks/ml/bordeaux/learning/stochastic_linear_ranker/native/
stochastic_linear_ranker.h 150 // This function sets the kernel bias. NOTE: in most use cases, bias should
152 void SetKernelBias(double bias) {
153 kernel_bias_ = bias;
212 // Kernel gain and bias are typically multiplicative and additive factors to
  /external/valgrind/main/coregrind/
pub_core_debuginfo.h 75 PtrdiffT bias );
  /external/elfutils/tests/
dwflmodtest.c 188 Dwarf *dw, Dwarf_Addr bias,
192 name, base, dw == NULL ? "no" : "DWARF", bias, dwfl_errmsg (-1));
203 struct info info = { dwarf_offdie (dw, off + cuhl, &die_mem), bias };
line2addr.c 80 Dwarf_Addr bias __attribute__ ((unused)), void *arg)
allregs.c 83 Dwarf_Addr bias; local
84 if (dwfl_module_getelf (mod, &bias) == NULL) /* Not really a module. */
  /external/replicaisland/src/com/replica/replicaisland/
CameraSystem.java 127 // Only respect the bias if the target is moving. No camera motion without
231 public void addCameraBias(Vector2 bias) {
232 final float x = bias.x - mFocalPosition.x;
233 final float y = bias.y - mFocalPosition.y;
  /hardware/invensense/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
ml_stored_data.c 239 * @note In order to successfully work, the gyro bias must be stored
521 * - compass biases for X, Y, Z axes and bias tracking algorithm
551 long bias[3]; local
651 bias[i] = (int32_t) t;
652 LOADCAL_LOG("accel_bias[%d] = %ld\n", i, bias[i]);
654 if (inv_set_array(INV_ACCEL_BIAS, bias)) {
655 LOG_RESULT_LOCATION(inv_set_array(INV_ACCEL_BIAS, bias));
656 return inv_set_array(INV_ACCEL_BIAS, bias);
751 * - compass biases for X, Y, Z axes, compass scale, and bias
781 long bias[3] local
1239 long bias[3]; local
    [all...]
  /external/elfutils/src/
unstrip.c 751 const size_t nent, const GElf_Addr bias,
776 s->value = sym->st_value + bias;
881 find_alloc_section (const GElf_Shdr *shdr, GElf_Addr bias, const char *name,
884 const GElf_Addr addr = shdr->sh_addr + bias;
926 Elf_Data *main_shstrtab, GElf_Addr bias,
1031 sec->shdr.sh_addr += bias;
1857 GElf_Addr bias = 0; local
1979 GElf_Addr bias; local
2074 GElf_Addr bias; local
2097 GElf_Addr bias; local
2160 GElf_Addr bias; local
    [all...]
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/openssl/crypto/modes/asm/
ghash-x86.pl 228 my $bias = shift;
230 &mov (&DWP($bias+0, "esp"),0x0000<<16);
231 &mov (&DWP($bias+4, "esp"),0x1C20<<16);
232 &mov (&DWP($bias+8, "esp"),0x3840<<16);
233 &mov (&DWP($bias+12,"esp"),0x2460<<16);
234 &mov (&DWP($bias+16,"esp"),0x7080<<16);
235 &mov (&DWP($bias+20,"esp"),0x6CA0<<16);
236 &mov (&DWP($bias+24,"esp"),0x48C0<<16);
237 &mov (&DWP($bias+28,"esp"),0x54E0<<16);
238 &mov (&DWP($bias+32,"esp"),0xE100<<16)
    [all...]
  /external/jmonkeyengine/engine/src/terrain/com/jme3/terrain/noise/
ShaderUtils.java 184 public static final float bias(final float b, final float x) { method in class:ShaderUtils
189 return x < 0.5 ? ShaderUtils.bias(1 - g, 2 * x) / 2 : 1 - ShaderUtils.bias(1 - g, 2 - 2 * x) / 2;
  /external/webkit/Source/WebCore/svg/
SVGFEConvolveMatrixElement.cpp 42 DEFINE_ANIMATED_NUMBER(SVGFEConvolveMatrixElement, SVGNames::biasAttr, Bias, bias)
139 return convolveMatrix->setBias(bias());
253 bias(), IntPoint(targetXValue, targetYValue), static_cast<EdgeModeType>(edgeMode()),
  /external/valgrind/main/VEX/
test_main.c     [all...]
  /external/icu4c/common/
wintz.c 36 int32_t bias; member in struct:__anon8646
275 tziKey.bias = apiTZI.Bias;
307 Using the bias and the rules suffices, so overwrite
  /external/xmlwriter/src/org/jheer/
XMLWriter.java 129 * @param bias the spacing bias to use for all subsequent indenting
131 public void begin(String header, int bias) throws IOException {
134 m_bias = bias;
  /frameworks/ex/carousel/java/com/android/ex/carousel/
carousel.rs 226 static float bias; // rotation bias, in radians. Used for animation and dragging.
227 static float overscrollBias; // Track overscroll bias separately for tilt effect.
234 static float touchBias = 0.0f; // bias on first touch
302 bias = 0.0f;
401 return bias + slotPosition(p / rowCount);
404 // Return the lowest possible bias value, based on the fill direction
413 // Return the highest possible bias value, based on the fill direction
574 bias = carouselRotationAngleToRadians(carouselRotationAngle);
    [all...]
  /external/linux-tools-perf/util/
probe-finder.c 141 static Dwarf *dwfl_init_offline_dwarf(int fd, Dwfl **dwflp, Dwarf_Addr *bias)
157 dbg = dwfl_module_getdwarf(mod, bias);
200 Dwarf_Addr *bias)
215 dbg = dwfl_addrdwarf(*dwflp, addr, bias);
228 Dwarf_Addr *bias)
243 return dwfl_init_offline_dwarf(fd, dwflp, bias);
1522 Dwarf_Addr bias; \/* Currently ignored *\/ local
1789 Dwarf_Addr _addr, baseaddr, bias = 0; local
2001 Dwarf_Addr bias; \/* Currently ignored *\/ local
    [all...]
  /hardware/libhardware/include/hardware/
sensors.h 443 * - 3 fields for hard iron bias estimates: x_bias, y_bias, z_bias.
734 float bias[3]; member in union:__anon20729::__anon20732
    [all...]
  /external/openssl/crypto/sha/asm/
sha1-sparcv9a.pl 40 if ($bits==64) { $bias=2047; $frame=192; }
41 else { $bias=0; $frame=112; }
415 add %fp,$bias-256,$base
429 sub $base,$bias+$frame,%sp
581 my %bias = ( "g" => 0, "o" => 8, "l" => 16, "i" => 24 );
585 if (/%([goli])([0-7])/) { $_=$bias{$1}+$2; }

Completed in 431 milliseconds

1 23 4 5 6