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

  /external/clang/test/CodeGenCXX/
2010-05-10-Var-DbgInfo.cpp 5 int Ai;
21 int i = f(&A::Ai);
23 const char * str = g(&A::Ai);
ptr-to-member-function.cpp 11 int Ai;
ptr-to-datamember.cpp 28 A() : f(1.0), d(2.0), Ai(3) {}
31 int Ai;
83 int A::* pa = &A::Ai;
87 printf("%d %d %d\n", &A::Ai, &A::f, &A::d);
  /external/clang/test/SemaCXX/
ptrtomember-overload-resolution.cpp 6 int Ai;
22 int i = f(&A::Ai);
24 const char * str = g(&A::Ai);
  /external/openssl/crypto/bn/
bn_blind.c 121 BIGNUM *Ai;
137 BN_BLINDING *BN_BLINDING_new(const BIGNUM *A, const BIGNUM *Ai, BIGNUM *mod)
153 if (Ai != NULL)
155 if ((ret->Ai = BN_dup(Ai)) == NULL) goto err;
180 if (r->Ai != NULL) BN_free(r->Ai);
190 if ((b->A == NULL) || (b->Ai == NULL))
209 if (!BN_mod_mul(b->Ai,b->Ai,b->Ai,b->mod,ctx)) goto err
    [all...]
  /external/openssl/crypto/pkcs12/
p12_key.c 107 unsigned char *B, *D, *I, *p, *Ai;
139 Ai = OPENSSL_malloc (u);
148 if (!D || !Ai || !B || !I || !Ij || !Bpl1)
158 || !EVP_DigestFinal_ex(&ctx, Ai, NULL))
162 || !EVP_DigestUpdate(&ctx, Ai, u)
163 || !EVP_DigestFinal_ex(&ctx, Ai, NULL))
166 memcpy (out, Ai, min (n, u));
177 for (j = 0; j < v; j++) B[j] = Ai[j % u];
204 OPENSSL_free (Ai);

Completed in 485 milliseconds