Home
last modified time | relevance | path

Searched refs:xtmp (Results 1 – 5 of 5) sorted by relevance

/external/llvm/test/Transforms/ScalarRepl/
Dphi-cycle.ll21 ; CHECK-NEXT: %pos.0.i = phi i32 [ 1, %entry ], [ %xtmp.i, %while.cond.backedge.i ]
26 %pos.0.i = phi i32 [ 1, %entry ], [ %xtmp.i, %while.cond.backedge.i ]
65 %xtmp.i = add i32 %pos.0.i, 1
/external/chromium_org/third_party/opus/src/src/
Dopus_compare.c312 float xtmp; in main() local
314 xtmp = X[xj*nchannels+ci]; in main()
321 X[(xi*NFREQS+xj)*nchannels+ci] += xtmp; in main()
323 xtmp = xtmp2; in main()
/external/chromium_org/third_party/openssl/openssl/crypto/x509/
Dx509_vfy.c155 X509 *x,*xtmp,*chain_ss=NULL; in X509_verify_cert() local
212 xtmp=find_issuer(ctx, sktmp,x); in X509_verify_cert()
213 if (xtmp != NULL) in X509_verify_cert()
215 if (!sk_X509_push(ctx->chain,xtmp)) in X509_verify_cert()
220 CRYPTO_add(&xtmp->references,1,CRYPTO_LOCK_X509); in X509_verify_cert()
221 (void)sk_X509_delete_ptr(sktmp,xtmp); in X509_verify_cert()
223 x=xtmp; in X509_verify_cert()
252 ok = ctx->get_issuer(&xtmp, ctx, x); in X509_verify_cert()
253 if ((ok <= 0) || X509_cmp(x, xtmp)) in X509_verify_cert()
258 if (ok == 1) X509_free(xtmp); in X509_verify_cert()
[all …]
/external/openssl/crypto/x509/
Dx509_vfy.c155 X509 *x,*xtmp,*chain_ss=NULL; in X509_verify_cert() local
212 xtmp=find_issuer(ctx, sktmp,x); in X509_verify_cert()
213 if (xtmp != NULL) in X509_verify_cert()
215 if (!sk_X509_push(ctx->chain,xtmp)) in X509_verify_cert()
220 CRYPTO_add(&xtmp->references,1,CRYPTO_LOCK_X509); in X509_verify_cert()
221 (void)sk_X509_delete_ptr(sktmp,xtmp); in X509_verify_cert()
223 x=xtmp; in X509_verify_cert()
252 ok = ctx->get_issuer(&xtmp, ctx, x); in X509_verify_cert()
253 if ((ok <= 0) || X509_cmp(x, xtmp)) in X509_verify_cert()
258 if (ok == 1) X509_free(xtmp); in X509_verify_cert()
[all …]
/external/chromium_org/content/common/gpu/client/
Dgl_helper_unittests.cc551 int xtmp = input->width(); in ScaleSlowRecursive() local
560 xtmp = output->width(); in ScaleSlowRecursive()
561 while (xtmp < input->width() && xtmp * 2 != input->width()) { in ScaleSlowRecursive()
562 xtmp += xtmp; in ScaleSlowRecursive()
567 tmp.setConfig(SkBitmap::kARGB_8888_Config, xtmp, ytmp); in ScaleSlowRecursive()