/external/stlport/src/ |
num_put_float.cpp | 216 static inline char* _Stl_ecvtR(double x, int n, int* pt, int* sign, char* buf) 217 { return ecvtbuf(x, n, pt, sign, buf); } 218 static inline char* _Stl_fcvtR(double x, int n, int* pt, int* sign, char* buf) 219 { return fcvtbuf(x, n, pt, sign, buf); } 224 static inline char* _Stl_ecvtR(long double x, int n, int* pt, int* sign, char* buf) 225 { return ecvtbuf(x, n, pt, sign, buf); } 226 static inline char* _Stl_fcvtR(long double x, int n, int* pt, int* sign, char* buf) 227 { return fcvtbuf(x, n, pt, sign, buf); } 231 static inline char* _Stl_ecvtR(double x, int n, int* pt, int* sign, char* buf, size_t bsize) 232 { return ecvt_r(x, n, pt, sign, buf, bsize) == 0 ? buf : 0; 862 int decpt, sign; local [all...] |
/external/strace/ |
vsprintf.c | 237 * %+d, % d - no forced sign or force "space positive" sign 243 #define SIGN 2 /* unsigned/signed long */ 283 char sign; local 297 sign = 0; 298 if (spec.flags & SIGN) { 300 sign = '-'; 304 // sign = '+'; 307 // sign = ' '; 354 /* sign */ [all...] |
/external/valgrind/main/VEX/priv/ |
guest_generic_x87.c | 61 S is the sign bit. For runs X----X, at least one of the Xs must be 63 there is an explicitly represented leading 1, and a sign bit, 77 sign bit, giving 64 in total. 109 UChar sign; local 111 sign = toUChar( (f64[7] >> 7) & 1 ); 132 f80[9] = toUChar( sign << 7 ); 163 f80[9] = toUChar( (sign << 7) | ((bexp >> 8) & 0xFF) ); 180 f80[9] = toUChar( (sign << 7) | 0x7F ); 198 f80[9] = toUChar( (sign << 7) | 0x7F ); 207 f80[9] = toUChar( (sign << 7) | 0x7F ) 250 UChar sign; local 439 UInt sign, expExp; local [all...] |
/external/valgrind/main/memcheck/tests/ |
vcpu_fbench.c | 404 int sign; local 407 x = (((sign= (x < 0.0)) != 0) ? -x: x); 414 sign = !sign; 435 return sign ? -r : r; 496 int sign, l, y; local 499 x = (((sign = (x < 0.0)) != 0) ? -x : x); 527 return sign ? -a : a;
|
/external/valgrind/main/perf/ |
fbench.c | 400 int sign; local 403 x = (((sign= (x < 0.0)) != 0) ? -x: x); 410 sign = !sign; 431 return sign ? -r : r; 492 int sign, l, y; local 495 x = (((sign = (x < 0.0)) != 0) ? -x : x); 523 return sign ? -a : a;
|
/external/webrtc/src/modules/audio_coding/codecs/isac/fix/source/ |
bandwidth_estimator.c | 169 WebRtc_Word32 sign; local 439 sign = 1; 442 sign = -1; 469 bweStr->recJitterShortTerm = WEBRTC_SPL_MUL(205, WEBRTC_SPL_LSHIFT_W32(arrTimeNoise, 3)) * sign + 739 /* adjust bw proportionally to negative average jitter sign */ 758 /* adjust Rate if jitter sign is mostly constant */ [all...] |
/frameworks/av/media/libstagefright/codecs/amrwbenc/src/ |
c4t64fx.c | 76 Word16 sign[], /* (i) sign vector */ 86 Word16 sign[], /* (i) sign vector */ 96 Word16 sign[], /* (i) sign vector */ 141 Word16 dn2[L_SUBFR], sign[L_SUBFR], vec[L_SUBFR]; local 238 * Find sign for each pulse position. * 280 /* set sign according to dn2[] = k_cn*cn[] + k_dn*dn[] */ 287 sign[i] = 32767; /* sign = +1 (Q12) * [all...] |
/frameworks/base/core/java/android/security/ |
IKeystoreService.java | 298 public byte[] sign(String name, byte[] data) throws RemoteException { method in class:IKeystoreService.Stub.Proxy 636 public byte[] sign(String name, byte[] data) throws RemoteException; method in interface:IKeystoreService
|
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/encoder/ |
vp9_tokenize.c | 116 int sign = 1; local 120 sign = 0; 123 const int a = sign ? -i : i; 124 int eb = sign; 151 cost += vp9_cost_bit(vp9_prob_half, extra & 1); /* sign */
|
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/math/ |
BigIntegerConvertTest.java | 572 int sign = 1; local 574 int aNumber = new BigInteger(sign, aBytes).intValue(); 584 int sign = -1; local 586 int aNumber = new BigInteger(sign, aBytes).intValue(); 607 int sign = -1; local 609 int aNumber = new BigInteger(sign, aBytes).intValue(); 669 assertEquals("incorrect sign", 1, aNumber.signum()); 684 assertEquals("incorrect sign", -1, aNumber.signum()); 699 assertEquals("incorrect sign", 1, aNumber.signum()); 714 assertEquals("incorrect sign", -1, aNumber.signum()) [all...] |
/libcore/luni/src/main/java/java/lang/ |
HexStringParser.java | 67 private long sign; field in class:HexStringParser 118 sign <<= (MANTISSA_WIDTH + EXPONENT_WIDTH); 120 return sign | exponent | mantissa; 124 * Parses the sign field. 127 this.sign = signStr.equals("-") ? 1 : 0;
|
/libcore/luni/src/test/java/libcore/java/util/ |
TimeZoneTest.java | 306 char sign = '+'; local 308 sign = '-'; 311 return String.format("GMT%c%02d:%02d", sign, offset / 60, offset % 60);
|
/ndk/sources/cxx-stl/stlport/src/ |
num_put_float.cpp | 216 static inline char* _Stl_ecvtR(double x, int n, int* pt, int* sign, char* buf) 217 { return ecvtbuf(x, n, pt, sign, buf); } 218 static inline char* _Stl_fcvtR(double x, int n, int* pt, int* sign, char* buf) 219 { return fcvtbuf(x, n, pt, sign, buf); } 224 static inline char* _Stl_ecvtR(long double x, int n, int* pt, int* sign, char* buf) 225 { return ecvtbuf(x, n, pt, sign, buf); } 226 static inline char* _Stl_fcvtR(long double x, int n, int* pt, int* sign, char* buf) 227 { return fcvtbuf(x, n, pt, sign, buf); } 231 static inline char* _Stl_ecvtR(double x, int n, int* pt, int* sign, char* buf, size_t bsize) 232 { return ecvt_r(x, n, pt, sign, buf, bsize) == 0 ? buf : 0; 862 int decpt, sign; local [all...] |
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/imageshow/ |
GradControl.java | 153 int sign = 1; local
|
/packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/latin/makedict/ |
Ver2DictDecoder.java | 86 final int sign = 0 == (bigramFlags & FormatSpec.FLAG_BIGRAM_ATTR_OFFSET_NEGATIVE) local 91 bigramAddress += sign * dictBuffer.readUnsignedByte(); 95 bigramAddress += sign * dictBuffer.readUnsignedShort(); 99 bigramAddress += sign * dictBuffer.readUnsignedInt24();
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/include/cloog/ |
clast.h | 116 int sign; member in struct:clast_equation
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/include/cloog/ |
clast.h | 116 int sign; member in struct:clast_equation
|
/system/security/keystore/ |
IKeystoreService.cpp | 345 virtual int32_t sign(const String16& name, const uint8_t* in, size_t inLength, uint8_t** out, function in class:android::BpKeystoreService 354 status_t status = remote()->transact(BnKeystoreService::SIGN, data, &reply); 369 ALOGE("out of memory allocating output array in sign"); 806 case SIGN: { 819 int32_t ret = sign(name, (const uint8_t*) in, (size_t) inSize, (uint8_t**) &out, &outSize); [all...] |
/bionic/libc/bionic/ |
libc_logging.cpp | 136 * NOTE: Does *not* handle a sign prefix. 240 char sign = '\0'; local 288 sign = c; 371 /* sign extension, if needed */ 391 if (sign != '\0' || prec != -1) { 392 __assert(__FILE__, __LINE__, "sign/precision unsupported");
|
/external/chromium_org/base/third_party/nspr/ |
prtime.cc | 736 int sign; local 750 sign = ((*rest == '+') ? 1 : -1); 751 rest++; /* move over sign */ 772 zone_offset *= sign; [all...] |
/external/chromium_org/base/third_party/symbolize/ |
demangle.cc | 629 int sign = 1; local 631 sign = -1; 645 *number_out = number * sign; [all...] |
/external/chromium_org/content/child/webcrypto/ |
webcrypto_impl.cc | 507 state->status = webcrypto::Sign(state->algorithm, 679 void WebCryptoImpl::sign(const blink::WebCryptoAlgorithm& algorithm, function in class:content::WebCryptoImpl
|
/external/chromium_org/third_party/icu/source/i18n/ |
decNumberLocal.h | 294 uInt sign; /* 0=positive, DECFLOAT_Sign=negative */ member in struct:__anon15807 306 /* (array) notation (the 0 word or byte contains the sign bit), */ 321 /* Tests for sign or specials, directly on DECFLOATs */ 354 /* DFISUINT01 -- test for sign=0, finite, exponent q=0, and */ [all...] |
/external/chromium_org/third_party/libvpx/source/libvpx/vp9/decoder/ |
vp9_decodemv.c | 206 const int sign = vp9_read(r, mvcomp->sign); local 233 return sign ? -mag : mag;
|
/external/chromium_org/third_party/libwebp/dsp/ |
enc_mips32.c | 170 "sra %[sign], %[temp0], 15 \n\t" \ 171 "xor %[coeff], %[temp0], %[sign] \n\t" \ 172 "subu %[coeff], %[coeff], %[sign] \n\t" \ 186 "xor %[level], %[level], %[sign] \n\t" \ 187 "subu %[level], %[level], %[sign] \n\t" \ 196 int sign, coeff, level, i; local 228 [sign]"=&r"(sign), [coeff]"=&r"(coeff), [all...] |