/hardware/invensense/60xx/mlsdk/mllite/ |
mlSetGyroBias.h | 40 inv_error_t inv_set_gyro_bias_in_hw_unit(const short *bias, int mode); 41 inv_error_t inv_set_gyro_bias_in_dps(const long *bias, int mode); 42 inv_error_t inv_set_gyro_bias_in_dps_float(const float *bias, int mode); 43 void inv_convert_bias(const unsigned char *regs, short *bias);
|
mlSetGyroBias.c | 49 /** Converts from internal DMP gyro bias registers to external hardware gyro bias by 52 void inv_convert_bias(const unsigned char *regs, short *bias) 67 // Rotate bias vector by the transpose of the orientation matrix 82 bias[i] = (short)(biasPrev[i] - biasTmp[i]); 89 inv_error_t inv_set_gyro_bias_in_hw_unit(const short *bias, int mode) 91 if (sgb.currentBias[0] != bias[0]) 93 if (sgb.currentBias[1] != bias[1]) 95 if (sgb.currentBias[2] != bias[2]) 98 memcpy(sgb.currentBias, bias, sizeof(sgb.currentBias)) [all...] |
/external/elfutils/libdwfl/ |
dwfl_addrdie.c | 53 dwfl_addrdie (Dwfl *dwfl, Dwarf_Addr addr, Dwarf_Addr *bias) 56 addr, bias);
|
dwfl_addrdwarf.c | 53 dwfl_addrdwarf (Dwfl *dwfl, Dwarf_Addr address, Dwarf_Addr *bias) 56 bias);
|
dwfl_module_addrdie.c | 53 dwfl_module_addrdie (Dwfl_Module *mod, Dwarf_Addr addr, Dwarf_Addr *bias) 55 if (INTUSE(dwfl_module_getdwarf) (mod, bias) == NULL)
|
dwfl_module_nextcu.c | 53 dwfl_module_nextcu (Dwfl_Module *mod, Dwarf_Die *lastcu, Dwarf_Addr *bias) 55 if (INTUSE(dwfl_module_getdwarf) (mod, bias) == NULL)
|
dwfl_nextcu.c | 53 dwfl_nextcu (Dwfl *dwfl, Dwarf_Die *lastcu, Dwarf_Addr *bias) 78 *bias = mod->debug.bias; 92 || INTUSE(dwfl_module_getdwarf) (mod, bias) != NULL))
|
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_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...] |
dwfl_module_info.c | 69 *dwbias = mod->debug.elf == NULL ? (Dwarf_Addr) -1 : mod->debug.bias; 71 *symbias = mod->symfile == NULL ? (Dwarf_Addr) -1 : mod->symfile->bias;
|
dwfl_module_getsrc.c | 56 Dwarf_Addr bias; local 57 if (INTUSE(dwfl_module_getdwarf) (mod, &bias) == NULL) 67 addr -= bias;
|
/external/chromium_org/third_party/smhasher/src/ |
AvalancheTest.h | 5 // is "biased". Too much bias means that patterns applied to the input will 93 printf(" worst bias is %f%%",b * 100.0); 164 double bias = 0; local 171 if(b2 > bias) bias = b2; 174 if(bias > maxBias) 176 maxBias = bias; 183 if (bias < 0.01) printf("."); 184 else if(bias < 0.05) printf("o"); 185 else if(bias < 0.33) printf("O") 211 double bias; local 299 double bias = 0; local 387 double bias = 0; local [all...] |
/external/chromium_org/third_party/WebKit/Source/wtf/ |
GregorianDateTime.cpp | 44 LONG bias = timeZoneInformation.Bias; local 46 bias += timeZoneInformation.DaylightBias; 48 bias += timeZoneInformation.StandardBias; 60 m_utcOffset = -bias * secondsPerMinute;
|
/hardware/invensense/65xx/libsensors_iio/software/core/mllite/ |
data_builder.h | 41 /** Set if quaternion has bias correction applied */ 49 /** Set if DMP has applied bias */ 172 /** compass Bias in chip frame, hardware units scaled by 2^16. */ 174 /** gyro factory bias in chip frame, hardware units scaled by 2^16, 181 /** accel bias in chip frame, hardware units scaled by 2^16, 184 /** temperature when accel bias was stored. */ 194 /** gyro bias in chip frame, hardware units scaled by 2^16, +/- 2000 dps 239 void inv_get_compass_bias(long *bias); 241 void inv_set_compass_bias(const long *bias, int accuracy); 243 void inv_set_gyro_bias(const long *bias); [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/encodings/ |
punycode.py | 72 def T(j, bias): 74 res = 36 * (j + 1) - bias 80 def generate_generalized_integer(N, bias): 85 t = T(j, bias) 104 bias = divisions + (36 * delta // (delta + 38)) 105 return bias 109 """3.4 Bias adaptation""" 110 # Punycode parameters: initial bias = 72, damp = 700, skew = 38 112 bias = 72 114 s = generate_generalized_integer(delta, bias) [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/encodings/ |
punycode.py | 72 def T(j, bias): 74 res = 36 * (j + 1) - bias 80 def generate_generalized_integer(N, bias): 85 t = T(j, bias) 104 bias = divisions + (36 * delta // (delta + 38)) 105 return bias 109 """3.4 Bias adaptation""" 110 # Punycode parameters: initial bias = 72, damp = 700, skew = 38 112 bias = 72 114 s = generate_generalized_integer(delta, bias) [all...] |
/frameworks/native/services/sensorservice/ |
CorrectedGyroSensor.cpp | 48 const vec3_t bias(mSensorFusion.getGyroBias()); 50 outEvent->data[0] -= bias.x; 51 outEvent->data[1] -= bias.y; 52 outEvent->data[2] -= bias.z;
|
/external/chromium_org/third_party/icu/source/test/intltest/ |
punyref.c | 106 /*** Bias adaptation function ***/ 133 punycode_uint n, delta, h, b, out, max_out, bias, j, m, q, k, t; local 140 bias = initial_bias; 192 t = k <= bias /* + tmin */ ? tmin : /* +tmin not needed */ 193 k >= bias + tmax ? tmax : k - bias; 200 bias = adapt(delta, h + 1, h == b); 222 punycode_uint n, out, i, max_out, bias, local 230 bias = initial_bias; 264 t = k <= bias /* + tmin */ ? tmin : /* +tmin not needed * [all...] |
/external/chromium_org/third_party/mesa/src/src/mapi/glapi/gen/ |
glX_proto_common.py | 80 def emit_packet_size_calculation(self, f, bias): 89 if bias: 90 print ' const GLuint cmdlen = %s - %u;' % (f.command_length(), bias)
|
/external/icu4c/test/intltest/ |
punyref.c | 106 /*** Bias adaptation function ***/ 133 punycode_uint n, delta, h, b, out, max_out, bias, j, m, q, k, t; local 140 bias = initial_bias; 192 t = k <= bias /* + tmin */ ? tmin : /* +tmin not needed */ 193 k >= bias + tmax ? tmax : k - bias; 200 bias = adapt(delta, h + 1, h == b); 222 punycode_uint n, out, i, max_out, bias, local 230 bias = initial_bias; 264 t = k <= bias /* + tmin */ ? tmin : /* +tmin not needed * [all...] |
/external/jmonkeyengine/engine/src/core-effects/com/jme3/post/ssao/ |
SSAOFilter.java | 70 private float bias = 0.1f; field in class:SSAOFilter 91 * @param bias the width of the occlusion cone considered by the occludee. default 0.1f 93 public SSAOFilter(float sampleRadius, float intensity, float scale, float bias) { 98 this.bias = bias; 170 ssaoMat.setFloat("Bias", bias); 187 * Return the bias<br> 188 * see {@link #setBias(float bias)} 192 return bias; [all...] |
/external/mesa3d/src/mapi/glapi/gen/ |
glX_proto_common.py | 80 def emit_packet_size_calculation(self, f, bias): 89 if bias: 90 print ' const GLuint cmdlen = %s - %u;' % (f.command_length(), bias)
|
/hardware/invensense/60xx/libsensors_iio/software/core/mllite/ |
data_builder.h | 40 /* Set if quaternion has bias correction applied */ 185 void inv_get_compass_bias(long *bias); 187 void inv_set_compass_bias(const long *bias, int accuracy); 189 void inv_set_gyro_bias(const long *bias, int accuracy); 190 void inv_set_accel_bias(const long *bias, int accuracy); 192 void inv_set_accel_bias_mask(const long *bias, int accuracy, int mask); 194 void inv_get_gyro_bias(long *bias, long *temp); 195 void inv_get_accel_bias(long *bias, long *temp);
|
/external/chromium_org/third_party/openssl/openssl/crypto/bn/asm/ |
sparcv9a-mont.pl | 63 $bias=2047; 66 $bias=0; 148 add %sp,$bias,%o0 ! real top of stack 153 sub %o0,$bias,%sp ! alloca(5*num*8) 156 add %sp,$bias+$frame+$locals,$tp 170 stx %o7,[%sp+$bias+$frame+48] ! save %asi 192 stx %o0,[%sp+$bias+$frame+0] 214 ldda [%sp+$bias+$frame+6]%asi,$na 216 ldda [%sp+$bias+$frame+4]%asi,$nb 218 ldda [%sp+$bias+$frame+2]%asi,$n [all...] |
/external/openssl/crypto/bn/asm/ |
sparcv9a-mont.pl | 63 $bias=2047; 66 $bias=0; 148 add %sp,$bias,%o0 ! real top of stack 153 sub %o0,$bias,%sp ! alloca(5*num*8) 156 add %sp,$bias+$frame+$locals,$tp 170 stx %o7,[%sp+$bias+$frame+48] ! save %asi 192 stx %o0,[%sp+$bias+$frame+0] 214 ldda [%sp+$bias+$frame+6]%asi,$na 216 ldda [%sp+$bias+$frame+4]%asi,$nb 218 ldda [%sp+$bias+$frame+2]%asi,$n [all...] |