/external/apache-harmony/x-net/src/test/api/java/org/apache/harmony/xnet/tests/javax/net/ssl/ |
SSLEngineResultTest.java | 49 int[] neg = { -1, -10, -1000, Integer.MIN_VALUE, local 64 for (int i = 0; i < neg.length; i++) { 67 SSLEngineResult.HandshakeStatus.FINISHED, neg[i], 1); 72 for (int i = 0; i < neg.length; i++) { 75 SSLEngineResult.HandshakeStatus.FINISHED, 1, neg[i]);
|
/libcore/luni/src/test/java/tests/api/javax/net/ssl/ |
SSLEngineResultTest.java | 49 int[] neg = { -1, -10, -1000, Integer.MIN_VALUE, local 63 for (int i = 0; i < neg.length; i++) { 66 SSLEngineResult.HandshakeStatus.FINISHED, neg[i], 1); 71 for (int i = 0; i < neg.length; i++) { 74 SSLEngineResult.HandshakeStatus.FINISHED, 1, neg[i]);
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
test_index.py | 250 self.neg = -self.pos 254 self.assertEqual(self.neg.__index__(), self.neg) 264 self.assertEqual(x[self.neg], self.neg) 265 self.assertEqual(x[self.neg:self.pos].indices(maxsize), 267 self.assertEqual(x[self.neg:self.pos:1].indices(maxsize), 280 self.assertEqual(x[self.neg], self.neg) 281 self.assertEqual(x[self.neg:self.pos], (maxint+minsize, maxsize) [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
test_index.py | 250 self.neg = -self.pos 254 self.assertEqual(self.neg.__index__(), self.neg) 264 self.assertEqual(x[self.neg], self.neg) 265 self.assertEqual(x[self.neg:self.pos].indices(maxsize), 267 self.assertEqual(x[self.neg:self.pos:1].indices(maxsize), 280 self.assertEqual(x[self.neg], self.neg) 281 self.assertEqual(x[self.neg:self.pos], (maxint+minsize, maxsize) [all...] |
/libcore/luni/src/main/java/java/math/ |
BigInt.java | 84 void putULongInt(long val, boolean neg) { 86 NativeBN.putULongInt(this.bignum, val, neg); 170 void putBigEndian(byte[] a, boolean neg) { 172 NativeBN.BN_bin2bn(a, a.length, neg, this.bignum); 175 void putLittleEndianInts(int[] a, boolean neg) { 177 NativeBN.litEndInts2bn(a, a.length, neg, this.bignum);
|
/bionic/libc/arch-arm/bionic/ |
clone.S | 55 neg r0, r0 104 neg r0, r0
|
/dalvik/vm/compiler/codegen/arm/Thumb/ |
Factory.cpp | 197 bool neg = (value < 0); local 198 int absValue = (neg) ? -value : value; 203 if ( !neg && (rDestSrc1 == r13sp) && (value <= 508)) { /* sp */ 207 opcode = (neg) ? kThumbSubRI8 : kThumbAddRI8; 212 if (!neg && (rDestSrc1 == r13sp) && (value <= 508)) { /* sp */ 216 opcode = (neg) ? kThumbAddRI8 : kThumbSubRI8; 221 if (neg) 282 bool neg = (value < 0); local 283 int absValue = (neg) ? -value : value; 301 opcode = (neg) ? kThumbSubRRI3 : kThumbAddRRI3 [all...] |
/external/chromium_org/third_party/openssl/openssl/crypto/bn/ |
bn_gcd.c | 132 a->neg = 0; 133 b->neg = 0; 244 A->neg = 0; 245 if (B->neg || (BN_ucmp(B, A) >= 0)) 481 if (!Y->neg && BN_ucmp(Y,n) < 0) 539 A->neg = 0; 541 if (B->neg || (BN_ucmp(B, A) >= 0)) 635 if (!Y->neg && BN_ucmp(Y,n) < 0)
|
bn_sqrt.c | 146 q->neg = 0; 186 q->neg = 0; 208 q->neg = 0; 224 if (!(p->neg ? BN_add : BN_sub)(y, y, p)) goto end;
|
/external/chromium_org/third_party/skia/include/core/ |
SkPoint.h | 73 SkIPoint neg; local 74 neg.fX = -fX; 75 neg.fY = -fY; 76 return neg; 300 SkPoint neg; local 301 neg.fX = -fX; 302 neg.fY = -fY; 303 return neg;
|
/external/openssl/crypto/bn/ |
bn_gcd.c | 132 a->neg = 0; 133 b->neg = 0; 244 A->neg = 0; 245 if (B->neg || (BN_ucmp(B, A) >= 0)) 481 if (!Y->neg && BN_ucmp(Y,n) < 0) 539 A->neg = 0; 541 if (B->neg || (BN_ucmp(B, A) >= 0)) 635 if (!Y->neg && BN_ucmp(Y,n) < 0)
|
bn_sqrt.c | 146 q->neg = 0; 186 q->neg = 0; 208 q->neg = 0; 224 if (!(p->neg ? BN_add : BN_sub)(y, y, p)) goto end;
|
/external/skia/include/core/ |
SkPoint.h | 73 SkIPoint neg; local 74 neg.fX = -fX; 75 neg.fY = -fY; 76 return neg; 300 SkPoint neg; local 301 neg.fX = -fX; 302 neg.fY = -fY; 303 return neg;
|
/external/chromium_org/third_party/openssl/openssl/crypto/asn1/ |
t_req.c | 95 const char *neg; local 120 neg=(ri->version->type == V_ASN1_NEG_INTEGER)?"-":""; 124 if(BIO_printf(bp,"%8sVersion: %s%lu (%s0x%lx)\n","",neg,l,neg,
|
t_x509.c | 114 const char *neg; local 147 neg="-"; 150 neg=""; 151 if (BIO_printf(bp," %s%lu (%s0x%lx)\n",neg,l,neg,l) <= 0) 156 neg=(bs->type == V_ASN1_NEG_INTEGER)?" (Negative)":""; 157 if (BIO_printf(bp,"\n%12s%s","",neg) <= 0) goto err;
|
/external/chromium_org/third_party/openssl/openssl/crypto/bn/asm/ |
via-mont.pl | 134 &neg ("ebp"); 192 &neg ("ebp");
|
/external/e2fsprogs/lib/e2p/ |
feature.c | 263 int neg; local 281 neg = 0; 301 neg++; 310 if (neg) {
|
/external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/textures/blending/ |
TextureBlenderAWT.java | 42 public Texture blend(float[] materialColor, Texture texture, float[] color, float affectFactor, int blendType, boolean neg, BlenderContext blenderContext) {
59 this.setupMaterialColor(data, format, neg, pixelColor);
88 * @param neg
94 protected float setupMaterialColor(ByteBuffer data, Format imageFormat, boolean neg, float[] materialColor) {
152 if (neg) {
|
TextureBlenderFactory.java | 73 public Texture blend(float[] materialColor, Texture texture, float[] color, float affectFactor, int blendType, boolean neg, BlenderContext blenderContext) {
|
TextureBlenderLuminance.java | 33 public Texture blend(float[] materialColor, Texture texture, float[] color, float affectFactor, int blendType, boolean neg, BlenderContext blenderContext) {
50 this.getTinAndAlpha(data, format, neg, tinAndAlpha);
73 * @param neg
78 protected void getTinAndAlpha(ByteBuffer data, Format imageFormat, boolean neg, float[] result) {
83 result[0] = neg ? 1.0f - firstPixelValue : firstPixelValue;
87 result[0] = neg ? 1.0f - firstPixelValue : firstPixelValue;
|
/external/libppp/src/ |
ccp.c | 186 if (IsEnabled(ccp->cfg.neg[algorithm[f]->Neg])) 222 command_ShowNegval(ccp->cfg.neg[CCP_NEG_DEFLATE])); 224 command_ShowNegval(ccp->cfg.neg[CCP_NEG_PRED1])); 226 command_ShowNegval(ccp->cfg.neg[CCP_NEG_DEFLATE24])); 229 command_ShowNegval(ccp->cfg.neg[CCP_NEG_MPPE])); 257 ccp->cfg.neg[CCP_NEG_DEFLATE] = NEG_ENABLED|NEG_ACCEPTED; 258 ccp->cfg.neg[CCP_NEG_PRED1] = NEG_ENABLED|NEG_ACCEPTED; 259 ccp->cfg.neg[CCP_NEG_DEFLATE24] = 0; 264 ccp->cfg.neg[CCP_NEG_MPPE] = NEG_ENABLED|NEG_ACCEPTED [all...] |
/external/openssl/crypto/asn1/ |
t_req.c | 95 const char *neg; local 120 neg=(ri->version->type == V_ASN1_NEG_INTEGER)?"-":""; 124 if(BIO_printf(bp,"%8sVersion: %s%lu (%s0x%lx)\n","",neg,l,neg,
|
t_x509.c | 114 const char *neg; local 147 neg="-"; 150 neg=""; 151 if (BIO_printf(bp," %s%lu (%s0x%lx)\n",neg,l,neg,l) <= 0) 156 neg=(bs->type == V_ASN1_NEG_INTEGER)?" (Negative)":""; 157 if (BIO_printf(bp,"\n%12s%s","",neg) <= 0) goto err;
|
/external/openssl/crypto/bn/asm/ |
via-mont.pl | 134 &neg ("ebp"); 192 &neg ("ebp");
|
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm11/vc/m4p10/src/ |
omxVCM4P10_FilterDeblockingChroma_VerEdge_I_s.s | 104 neg RN 9 label 360 USUB8 neg, pos, t1 363 USUB8 t3, neg, tC 364 SEL neg, tC, neg 367 UQSUB8 P_0, P_0, neg 368 UQADD8 Q_0, Q_0, neg
|