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

  /external/skia/src/core/
SkFloatBits.cpp 162 int bias = 8 - SkCLZ(value); local
163 SkDebugf("value = %d, bias = %d\n", value, bias);
164 SkASSERT(bias > 0 && bias < 8);
165 value >>= bias; // need to round? local
166 shift += bias;
SkFloat.cpp 78 int bias = 8 - SkCLZ(value); local
79 SkASSERT(bias > 0 && bias < 8);
80 value >>= bias; local
81 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/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/webkit/Source/WebCore/platform/graphics/filters/
FEConvolveMatrix.h 60 float bias() const;
91 float bias; member in struct:WebCore::FEConvolveMatrix::PaintingData
FEConvolveMatrix.cpp 38 float divisor, float bias, const IntPoint& targetOffset, EdgeModeType edgeMode,
43 , m_bias(bias)
53 float divisor, float bias, const IntPoint& targetOffset, EdgeModeType edgeMode,
56 return adoptRef(new FEConvolveMatrix(filter, kernelSize, divisor, bias, targetOffset, edgeMode, kernelUnitLength,
94 float FEConvolveMatrix::bias() const function in class:WebCore::FEConvolveMatrix
99 bool FEConvolveMatrix::setBias(float bias)
101 if (m_bias == bias)
103 m_bias = bias;
225 ALWAYS_INLINE void setDestinationPixels(ByteArray* image, int& pixel, float* totals, float divisor, float bias, ByteArray* src)
227 unsigned char maxAlpha = preserveAlphaValues ? 255 : clampRGBAValue(totals[3] / divisor + bias);
    [all...]
  /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/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/mesa3d/src/glsl/
loop_controls.cpp 122 const int bias[] = { -1, 0, 1 }; local
125 for (unsigned i = 0; i < Elements(bias); i++) {
127 ? new(mem_ctx) ir_constant(iter_value + bias[i])
128 : new(mem_ctx) ir_constant(float(iter_value + bias[i]));
144 iter_value += bias[i];
ir.h 1149 ir_txb, /**< Texture look-up with LOD bias */
1169 * (txb (sampler) (coordinate) (0 0 0) (1) ( ) (bias))
1236 ir_rvalue *bias; /**< Floating point LOD bias */ member in union:ir_texture::__anon8761
    [all...]
  /external/icu4c/common/
punycode.c 157 /* Bias adaptation function. */
185 int32_t n, delta, handledCPCount, basicLength, destLength, bias, j, m, q, k, t, srcCPCount; local
291 bias=INITIAL_BIAS;
328 t=k-bias;
336 t=k-bias;
339 } else if(k>=(bias+TMAX)) {
358 bias=adaptBias(delta, handledCPCount+1, (UBool)(handledCPCount==basicLength));
376 int32_t n, destLength, i, bias, basicLength, j, in, oldi, w, k, digit, t, local
428 bias=INITIAL_BIAS;
465 t=k-bias;
    [all...]
wintz.c 35 int32_t bias; member in struct:__anon6250
243 tziKey.bias = apiTZI.Bias;
265 Using the bias and the rules suffices, so overwrite
  /external/jpeg/
jcsample.c 204 * A note about the "bias" calculations: when rounding fractional values to
206 * If we did that, we'd introduce a noticeable bias towards larger values.
219 register int bias; local
231 bias = 0; /* bias = 0,1,0,1,... for successive samples */
234 + bias) >> 1);
235 bias ^= 1; /* 0=>1, 1=>0 */
256 register int bias; local
270 bias = 1; /* bias = 1,2,1,2,... for successive samples *
    [all...]
  /external/skia/samplecode/
SampleColorFilter.cpp 26 int bias = 0; local
28 bias = -1;
30 bias = 1;
32 return trunc + bias;
  /external/webkit/Source/WebCore/editing/
htmlediting.cpp 111 int bias = 0; local
116 bias = 1;
121 bias = -1;
127 return result ? result : bias;
    [all...]
  /external/webp/src/enc/
quant.c 147 const int bias = kBiasMatrices[type][j]; local
149 m->bias_[j] = BIAS(bias);
151 m->zthresh_[j] = ((256 /*+ kCoeffThresh[j]*/ - bias) * m->q_[j] + 127) >> 8;
401 // If a coefficient was quantized to a value Q (using a neutral bias),
470 const int B = BIAS(0x00); // neutral bias
  /packages/apps/Exchange/tests/src/com/android/exchange/utility/
CalendarUtilitiesTests.java 88 // Test a timezone with GMT bias but bogus DST parameters (there is no equivalent time zone
154 int bias = tz.getOffset(System.currentTimeMillis()); local
155 assertEquals(0, bias);
    [all...]
  /external/valgrind/main/VEX/priv/
ir_opt.c 280 ex->Iex.GetI.bias)));
400 st->Ist.PutI.bias,
2452 Int bias; member in struct:__anon12176::__anon12178::__anon12185
3228 Int bias = st->Ist.WrTmp.data->Iex.GetI.bias; local
    [all...]
  /packages/apps/Exchange/src/com/android/exchange/utility/
CalendarUtilities.java 788 int bias = -1 * getLong(timeZoneBytes, MSFT_TIME_ZONE_BIAS_OFFSET) * MINUTES; local
    [all...]
  /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
1556 Addr bias = BIAS_FOR_LINETAB; local
1718 Addr bias = BIAS_FOR_LINETAB2; local
    [all...]
  /external/valgrind/main/VEX/pub/
libvex_ir.h 1322 Int bias; \/* Constant offset part of index into array *\/ member in struct:_IRExpr::__anon12218::__anon12221
1887 Int bias; \/* Constant offset part of index into array *\/ member in struct:_IRStmt::__anon12238::__anon12243
    [all...]
  /prebuilt/common/http-client/
httpclient-4.1.1.jar 

Completed in 6385 milliseconds