/dalvik/docs/opcodes/ |
opcode-2d-cmp-kind.html | 19 argument is larger. The "bias" listed for the floating point operations 20 indicates how NaN comparisons are treated: "Gt bias" instructions return 1 for 21 NaN comparisons, and "lt bias" instructions return -1. 44 2d: cmpl-float <i>(lt bias)</i><br/> 45 2e: cmpg-float <i>(gt bias)</i><br/> 46 2f: cmpl-double <i>(lt bias)</i><br/> 47 30: cmpg-double <i>(gt bias)</i><br/> 95 For the -float and -double variants, an addition "bias" specifies what 99 A "lt bias" results in vA'=-1. 102 A "gt bias" results in vA'=1 [all...] |
/external/icu4c/i18n/ |
wintzimpl.cpp | 33 static UBool getSystemTimeInformation(TimeZone *tz, SYSTEMTIME &daylightDate, SYSTEMTIME &standardDate, int32_t &bias, int32_t &daylightBias, int32_t &standardBias) { 43 bias = -1 * (initial->getRawOffset()/60000); 54 bias = -1 * (std->getRawOffset()/60000); 117 int32_t bias; local 122 if (getSystemTimeInformation(tz, daylightDate, standardDate, bias, daylightBias, standardBias)) { 123 zoneInfo->Bias = bias; 138 * information to put into zoneInfo. This includes bias and standard time date and daylight saving date.
|
/external/webkit/WebCore/svg/graphics/filters/ |
SVGFEConvolveMatrix.cpp | 32 const float& divisor, const float& bias, const FloatSize& targetOffset, EdgeModeType edgeMode, 39 , m_bias(bias) 49 const float& divisor, const float& bias, const FloatSize& targetOffset, EdgeModeType edgeMode, 52 return adoptRef(new FEConvolveMatrix(in, in2, kernelSize, divisor, bias, targetOffset, edgeMode, kernelUnitLength, 87 float FEConvolveMatrix::bias() const function in class:WebCore::FEConvolveMatrix 92 void FEConvolveMatrix::setBias(float bias) 94 m_bias = bias; 168 << " [bias=" << m_bias << "]"
|
SVGFEConvolveMatrix.h | 56 float bias() const;
|
/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/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;
|
/external/kernel-headers/original/asm-arm/ |
locks.h | 77 * lots of processes. BIAS must be chosen such that sub'ing 78 * BIAS once per CPU will result in the long remaining 205 * lots of processes. BIAS must be chosen such that sub'ing 206 * BIAS once per CPU will result in the long remaining
|
/external/openssl/crypto/ |
sparccpuid.S | 11 # define BIAS 2047 14 # define BIAS 0 125 add %fp,BIAS,%i0 ! return pointer to caller?s top of stack 224 add %sp,BIAS+16,%o1 228 add %sp,BIAS-16,%o1
|
/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)) { 356 bias=adaptBias(delta, handledCPCount+1, (UBool)(handledCPCount==basicLength)); 374 int32_t n, destLength, i, bias, basicLength, j, in, oldi, w, k, digit, t, local 426 bias=INITIAL_BIAS; 463 t=k-bias; [all...] |
wintz.c | 35 int32_t bias; member in struct:__anon2202 243 tziKey.bias = apiTZI.Bias; 266 Using the bias and the rules suffices, so overwrite
|
/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/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/qemu/slirp/ |
tcp_var.h | 150 * will each average +1/2 tick of bias. When we compute 153 * firing of the timer. The bias will give us exactly the 154 * 1.5 tick we need. But, because the bias is
|
/system/wlan/ti/sta_dk_4_0_4_32/common/src/BusAccess/Shm_Common/ |
whalHwEeprom.h | 194 * DESCRIPTION: Reads bias value from EEPROM * 208 * DESCRIPTION: Writes new bias value to EEPROM * 210 * INPUT: bVal - new bias value *
|
/dalvik/vm/compiler/template/armv5te/ |
TEMPLATE_STRING_INDEXOF.S | 44 /* Build pointer to start of data to compare and pre-bias */
|
/dalvik/vm/mterp/x86-atom/ |
OP_CMPL_FLOAT.S | 24 * to specify positive or negative bias for NaN.
|
/external/webkit/WebCore/svg/ |
svgattrs.in | 23 bias
|
/bionic/libm/src/ |
s_cbrt.c | 58 * error of about 1 in 16. Adding a bias of -0.03306235651 to the 63 * exponent bias (1023 for doubles) and later add it back. We do the
|
/external/stlport/src/ |
num_get_float.cpp | 458 * Exponent bias +1023 469 _Stl_set_exponent(value, bexp + 1022); /* add bias */ 482 template <class D, class IEEE, int M, int BIAS> 565 * Exponent bias +1023 582 v.ieee.exponent = bexp + BIAS - 1; 588 bexp += BIAS - 1; 748 template <class D, class IEEE, int M, int BIAS> 837 x = _Stl_atodT<D,IEEE,M,BIAS>(digits, n, exp);
|
/external/v8/src/ |
log-utils.cc | 263 void LogMessageBuilder::AppendAddress(Address addr, Address bias) { 266 } else if (bias == NULL) { 271 if (addr >= bias) { 272 delta = addr - bias; 275 delta = bias - addr;
|
/packages/inputmethods/PinyinIME/src/com/android/inputmethod/pinyin/ |
SkbContainer.java | 42 * simple bias correction. If the input method runs on emulator, no bias 142 * simple bias correction in Y. 188 // If it runs on an emulator, no bias correction 437 // Bias correction
|
/external/qemu/slirp-android/ |
tcp_var.h | 155 * will each average +1/2 tick of bias. When we compute 158 * firing of the timer. The bias will give us exactly the 159 * 1.5 tick we need. But, because the bias is
|
/external/openssl/crypto/des/asm/ |
des_enc.m4 | 59 # define BIAS 2047 69 # define BIAS 0 1289 STPTR in0, [%sp+BIAS+ARG0+0*ARGSZ] 1306 LDPTR [%sp+BIAS+ARG0+0*ARGSZ], in0 1339 LDPTR [%sp+BIAS+ARG0+0*ARGSZ], in0 1452 define({INPUT}, { [%sp+BIAS+ARG0+0*ARGSZ] }) 1453 define({OUTPUT}, { [%sp+BIAS+ARG0+1*ARGSZ] }) 1454 define({IVEC}, { [%sp+BIAS+ARG0+4*ARGSZ] }) [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;
|