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

1 23 4 5

  /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...]
ghash-sparcv9.pl 42 if ($bits==64) { $bias=2047; $frame=192; }
43 else { $bias=0; $frame=112; }
  /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/elfutils/libdwfl/
dwfl_module_addrsym.c 74 GElf_Addr mod_addr = addr - mod->symfile->bias;
cu.c 109 addr -= mod->debug.bias;
libdwflP.h 139 GElf_Addr bias; /* Actual load address - p_vaddr. */ member in struct:dwfl_file
  /external/elfutils/tests/
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/valgrind/main/VEX/
test_main.c     [all...]
  /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...]
  /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; }
sha1-sparcv9.pl 23 if ($bits==64) { $bias=2047; $frame=192; }
24 else { $bias=0; $frame=112; }
  /external/valgrind/main/coregrind/m_debuginfo/
readpdb.c 76 'virtual.c' in the Wine sources, looks a lot like a text bias
80 macros which give the bias to use in each of the four cases. Be
1238 Addr bias = BIAS_FOR_SYMBOLS; local
1562 Addr bias = BIAS_FOR_LINETAB; local
1724 Addr bias = BIAS_FOR_LINETAB2; local
    [all...]
  /external/valgrind/main/memcheck/
mc_translate.c     [all...]
  /external/valgrind/main/VEX/priv/
ir_opt.c 280 ex->Iex.GetI.bias)));
400 st->Ist.PutI.bias,
2568 Int bias; member in struct:__anon13573::__anon13575::__anon13582
3344 Int bias = st->Ist.WrTmp.data->Iex.GetI.bias; local
    [all...]
  /external/mesa3d/src/glsl/
ir_clone.cpp 227 new_tex->lod_info.bias = this->lod_info.bias->clone(mem_ctx, ht);
  /external/skia/src/core/
SkMath.cpp 193 int SkFixedMulCommon(SkFixed a, int b, int bias) {
202 uint32_t R = ah * b + ((al * b + bias) >> 16);

Completed in 393 milliseconds

1 23 4 5