/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/imageshow/ |
EclipseControl.java | 137 int sign = 1; local 149 sign = -1; 153 oval.setRadiusY(Math.abs(x - oval.getCenterY() + sign * raddx)); 156 oval.setRadiusY(Math.abs(y - oval.getCenterY() + sign * raddy)); 160 sign = -1; 164 oval.setRadiusX(Math.abs(y - oval.getCenterX() + sign * raddy)); 167 oval.setRadiusX(Math.abs(x - oval.getCenterX() - sign * raddx));
|
/system/extras/verity/ |
Utils.java | 274 static byte[] sign(PrivateKey privateKey, byte[] input) throws Exception { method in class:Utils 278 return signer.sign();
|
/art/disassembler/ |
disassembler_arm.cc | 352 int32_t imm32 = (imm26 << 6) >> 6; // Sign extend. 556 const char *sign = U ? "+" : "-"; local 558 args << "], #" << sign << (imm8 << 2); 560 args << ", #" << sign << (imm8 << 2) << "]"; 651 const char *sign = U ? "+" : "-"; local 653 args << "], #" << sign << imm8; 655 args << ", #" << sign << imm8 << "]"; 1380 const char* sign = is_signed ? "s" : ""; local [all...] |
/bionic/libc/upstream-openbsd/lib/libc/gdtoa/ |
gdtoaimp.h | 476 int k, maxwds, sign, wds; member in struct:Bigint 487 #define Bcopy(x,y) memcpy_D2A(&x->sign,&y->sign,y->wds*sizeof(ULong) + 2*sizeof(int)) 489 #define Bcopy(x,y) memcpy(&x->sign,&y->sign,y->wds*sizeof(ULong) + 2*sizeof(int)) 590 int *decpt, int *sign, char **rve));
|
/bionic/libc/upstream-openbsd/lib/libc/stdio/ |
vfwprintf.c | 289 wchar_t sign; /* sign prefix (' ', '+', '-', or \0) */ local 298 * A: 'sign' holds this value if present; '\0' otherwise 487 sign = '\0'; 498 if (!sign) 499 sign = ' '; 525 sign = '+'; 617 sign = '\0'; 627 sign = '-'; 732 sign = '-' [all...] |
/cts/tests/tests/content/src/android/content/cts/util/ |
XmlUtils.java | 101 int sign = 1; local 107 sign = -1; 132 return Integer.parseInt(nm.substring(index), base) * sign; [all...] |
/cts/tests/tests/keystore/src/android/keystore/cts/ |
CipherTest.java | [all...] |
/cts/tests/tests/view/src/android/view/cts/util/ |
XmlUtils.java | 98 int sign = 1; local 104 sign = -1; 129 return Integer.parseInt(nm.substring(index), base) * sign; [all...] |
/cts/tests/tests/widget/src/android/widget/cts/util/ |
XmlUtils.java | 99 int sign = 1; local 105 sign = -1; 130 return Integer.parseInt(nm.substring(index), base) * sign; [all...] |
/external/aac/libAACdec/src/ |
aacdec_hcr.cpp | 1439 INT sign; local [all...] |
/external/aac/libSBRenc/src/ |
env_est.cpp | 308 INT sign; local 310 sign = nrgVal > 0 ? 1 : -1; 312 nrgVal *= sign; 327 return panTable[ampRes][maxIndex[ampRes]-1] + sign * panTable[ampRes][panIndex]; [all...] |
/external/apache-commons-math/src/main/java/org/apache/commons/math/dfp/ |
Dfp.java | 53 * n = sign × mant × (radix)<sup>exp</sup>;</p> 55 * where sign is ±1, mantissa represents a fractional number between 166 /** Sign bit: & for positive, -1 for negative. */ 167 protected byte sign; field in class:Dfp 183 sign = 1; 224 // set the sign 226 sign = -1; 229 sign = 1; 260 sign = 1; 288 sign = (byte) 1 [all...] |
/external/boringssl/src/include/openssl/ |
rsa.h | 382 /* RSA_FLAG_SIGN_VER causes the |sign| and |verify| functions of |rsa_meth_st| 410 int (*sign)(int type, const uint8_t *m, unsigned int m_length, member in struct:rsa_meth_st 437 * RSA decrypt and sign operations will call this, thus an ENGINE might wish
|
/external/deqp/modules/gles3/functional/ |
es3fShaderCommonFunctionTests.cpp | 116 return getUlpDiff(tcu::Float32::construct(tcu::Float32(b).sign(), 0, 0).asFloat(), b); 118 return getUlpDiff(a, tcu::Float32::construct(tcu::Float32(a).sign(), 0, 0).asFloat()); 505 : CommonFunctionCase(context, getCommonFuncCaseName(baseType, precision, shaderType).c_str(), "sign", shaderType) 509 m_spec.source = "out0 = sign(in0);"; 815 const deUint32 sign = rnd.getUint32() & 0x1u; local 816 const deUint32 value = (sign << 31) | (exp << 23) | mantissa; 896 const deUint32 sign = rnd.getUint32() & 0x1u; local 897 const deUint32 value = (sign << 31) | (exp << 23) | mantissa; [all...] |
/external/deqp/modules/gles31/functional/ |
es31fShaderCommonFunctionTests.cpp | 120 return getUlpDiff(tcu::Float32::construct(tcu::Float32(b).sign(), 0, 0).asFloat(), b); 122 return getUlpDiff(a, tcu::Float32::construct(tcu::Float32(a).sign(), 0, 0).asFloat()); 221 return (float32Representation.sign() == +1) ? (largestRepresentableValue) : (-largestRepresentableValue); 226 const tcu::Float32 targetRepresentation(tcu::Float32::constructBits(float32Representation.sign(), 582 : CommonFunctionCase(context, getCommonFuncCaseName(baseType, precision, shaderType).c_str(), "sign", shaderType) 586 m_spec.source = "out0 = sign(in0);"; 892 const deUint32 sign = rnd.getUint32() & 0x1u; local 893 const deUint32 value = (sign << 31) | (exp << 23) | mantissa; 975 const deUint32 sign = rnd.getUint32() & 0x1u; local [all...] |
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/configuration/org.eclipse.osgi/bundles/118/1/.cp/lib/ |
jarprocessor-ant.jar | |
/external/freetype/src/autofit/ |
afcjk.c | 1420 FT_Int sign = 0; local [all...] |
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/ |
ZoneMeta.java | 618 // fields[0] - sign 649 * offset time fields. The sign is set to fields[0] (-1 or 1), 660 int sign = 1; local 666 sign = -1; 749 fields[0] = sign;
|
/external/libopus/celt/ |
bands.c | 853 int sign=0; local 858 sign = x[0]<0; 859 ec_enc_bits(ec, sign, 1); 861 sign = ec_dec_bits(ec, 1); 867 x[0] = sign ? -NORM_SCALING : NORM_SCALING; 1249 int sign=0; local [all...] |
/external/mdnsresponder/mDNSShared/ |
DebugServices.c | 1199 char sign; \/\/ +, - or space member in struct:DebugSNPrintF_format [all...] |
/external/mesa3d/src/gallium/auxiliary/gallivm/ |
lp_bld_sample.c | 766 assert(bld->type.sign); 930 * FIXME: the sign here can also be 0. 932 * fix the comment or use other (simpler) sign function, not sure 934 * \param sign scalar +1 or - 1016 LLVMValueRef signrxs, signrys, signrzs, signrxyz, sign; local 1171 LLVMValueRef sign, ima; local 1192 LLVMValueRef sign, ima; local 1210 LLVMValueRef sign, ima; local [all...] |
/external/mesa3d/src/gallium/auxiliary/util/ |
u_snprintf.c | 900 char sign = 0; local 913 sign = '-'; 914 else if (flags & PRINT_F_PLUS) /* Do a sign. */ 915 sign = '+'; 917 sign = ' '; 950 - ((sign != 0) ? 1 : 0) /* Will we print a sign? */ 973 if (sign != 0) /* Sign. */ 974 OUTCHAR(str, *len, size, sign); 1008 char sign = 0; local [all...] |
/external/mesa3d/src/mesa/drivers/dri/common/ |
xmlconfig.c | 172 * number may have an optional sign. Radix is specified by base. If 181 GLint sign = 1; local 188 sign = -1; 223 return sign * result; 229 * number may have an optional sign. '.' is interpreted as decimal 240 GLfloat sign = 1.0f, result = 0.0f, scale; local 243 /* sign */ 245 sign = -1.0f; 283 scale = sign * (GLfloat)pow (10.0, (GLdouble)(pointPos-1 + exponent)); [all...] |
/external/pdfium/core/src/fxcodec/fx_libopenjpeg/libopenjpeg20/ |
jp2.c | 1692 OPJ_UINT32 sign; local [all...] |
/external/regex-re2/re2/ |
parse.cc | 1525 int sign = +1; \/\/ -1 = negated char class local [all...] |