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

  /external/clang/test/CodeGenCXX/
default-constructor-for-members.cpp 11 int iS;
constructor-for-array-members.cpp 13 S() : iS(i++), f1(vf++) {printf("S::S()\n");}
14 ~S(){printf("S::~S(iS = %d f1 = %f)\n", iS, f1); }
15 int iS;
24 printf("ARR_S[%d].iS = %d ARR_S[%d].f1 = %f\n", i, ARR_S[i].iS, i, ARR_S[i].f1);
29 printf("MULTI_ARR[%d][%d][%d].iS = %d MULTI_ARR[%d][%d][%d].f1 = %f\n",
30 i,j,k, MULTI_ARR[i][j][k].iS, i,j,k, MULTI_ARR[i][j][k].f1);
global-array-destruction.cpp 10 S() : iS(++count) { printf("S::S(%d)\n", iS); }
11 ~S() { printf("S::~S(%d)\n", iS); }
12 int iS;
array-operator-delete-call.cpp 12 S() : iS (++count) { printf("S::S(%d)\n", iS); }
13 ~S() { printf("S::~S(%d)\n", iS); }
14 int iS;
copy-constructor-synthesis.cpp 63 S() : iS(ix++) { }
65 int iS;
82 printf("ARR_S[%d][%d][%d] = %d\n", i,j,k, ARR_S[i][j][k].iS);
  /external/bouncycastle/src/main/java/org/bouncycastle/crypto/encodings/
ISO9796d1Encoding.java 15 * message is small don't sign the message, sign it's hash) or some "random"
73 * is (key_size_in_bits + 3)/16, which in our world comes to
201 * @exception InvalidCipherTextException if the decrypted block is not a valid ISO 9796 bit string
213 BigInteger iS = new BigInteger(1, block);
215 if (iS.mod(SIXTEEN).equals(SIX))
217 iR = iS;
219 else if ((modulus.subtract(iS)).mod(SIXTEEN).equals(SIX))
221 iR = modulus.subtract(iS);
225 throw new InvalidCipherTextException("resulting integer iS or (modulus - iS) is not congruent to 6 mod 16")
    [all...]

Completed in 94 milliseconds