HomeSort by relevance Sort by last modified time
    Searched refs:ctx_ (Results 1 - 8 of 8) sorted by null

  /external/chromium/crypto/
secure_hash_openssl.cc 20 SHA256_Init(&ctx_);
24 OPENSSL_cleanse(&ctx_, sizeof(ctx_));
28 SHA256_Update(&ctx_, static_cast<const unsigned char*>(input), len);
34 SHA256_Final(result.safe_buffer(), &ctx_);
38 SHA256_CTX ctx_; member in class:crypto::__anon4294::SecureHashSHA256OpenSSL
secure_hash_default.cc 18 SHA256_Begin(&ctx_);
25 SHA256_Update(&ctx_, static_cast<const unsigned char*>(input), len);
29 SHA256_End(&ctx_, static_cast<unsigned char*>(output), NULL,
34 SHA256Context ctx_; member in class:crypto::__anon4293::SecureHashSHA256NSS
encryptor_openssl.cc 33 EVP_CIPHER_CTX_init(&ctx_);
36 EVP_CIPHER_CTX_cleanup(&ctx_);
39 EVP_CIPHER_CTX* get() { return &ctx_; }
42 EVP_CIPHER_CTX ctx_; member in class:crypto::__anon4280::ScopedCipherCTX
  /external/libvpx/vpx/src/
vpx_decoder_compat.c 141 vpx_dec_err_t vpx_dec_get_mem_map(vpx_dec_ctx_t *ctx_,
146 vpx_codec_ctx_t *ctx = (vpx_codec_ctx_t *)ctx_;
169 vpx_dec_err_t vpx_dec_set_mem_map(vpx_dec_ctx_t *ctx_,
173 vpx_codec_ctx_t *ctx = (vpx_codec_ctx_t *)ctx_;
  /external/v8/tools/gcmole/
gcmole.cc 89 : ctx_(ctx), decl_ctx_(ctx.getTranslationUnitDecl()) {
93 : ctx_(ctx), decl_ctx_(decl_ctx) {
97 clang::IdentifierInfo* ident = &ctx_.Idents.get(n);
98 return ctx_.DeclarationNames.getIdentifier(ident);
102 return Resolver(ctx_, Resolve<clang::NamespaceDecl>(n));
123 clang::ASTContext& ctx_; member in struct:__anon14489::Resolver
130 explicit CalleesPrinter(clang::MangleContext* ctx) : ctx_(ctx) {
148 if (InV8Namespace(f) && GetMangledName(ctx_, f, &name)) {
200 clang::MangleContext* ctx_; member in class:__anon14489::CalleesPrinter
515 : ctx_(ctx)
1186 clang::MangleContext* ctx_; member in class:__anon14489::FunctionAnalyzer
    [all...]
  /external/compiler-rt/lib/tsan/rtl/
tsan_rtl_report.cc 122 ctx_ = CTX();
126 ctx_->report_mtx.Lock();
130 ctx_->report_mtx.Unlock();
tsan_rtl.h 418 Context *ctx_; member in class:__tsan::ScopedReport
  /external/chromium-trace/
script.js 44 base.exportTo("tracing",function(){function e(c,a,b,d){this.ctx_=c;this.minRectSize_=a;this.maxMergeDist_=b;this.pallette_=d}e.prototype={y_:0,h_:0,merging_:!1,mergeStartX_:0,mergeCurRight_:0,setYandH:function(c,a){this.flush();this.y_=c;this.h_=a},fillRect:function(c,a,b){var d=c+a;a<this.minRectSize_?(d-this.mergeStartX_>this.maxMergeDist_&&this.flush(),this.merging_?(this.mergeCurRight_=d,this.mergedColorId=Math.max(this.mergedColorId,b)):(this.merging_=!0,this.mergeStartX_=c,this.mergeCurRight_=
45 d,this.mergedColorId=b)):(this.merging_&&this.flush(),this.ctx_.fillStyle=this.pallette_[b],this.ctx_.fillRect(c,this.y_,a,this.h_))},flush:function(){this.merging_&&(this.ctx_.fillStyle=this.pallette_[this.mergedColorId],this.ctx_.fillRect(this.mergeStartX_,this.y_,this.mergeCurRight_-this.mergeStartX_,this.h_),this.merging_=!1)}};return{FastRectRenderer:e}});"use strict";
51 this.canvas_=document.createElement("canvas");this.canvas_.className="timeline-canvas-based-track-canvas";this.canvasContainer_.appendChild(this.canvas_);this.ctx_=this.canvas_.getContext("2d")},detach:function(){this.viewport_&&(this.viewport_.removeEventListener("change",this.viewportChangeBoundToThis_),this.viewport_.removeEventListener("markersChange",this.viewportMarkersChangeBoundToThis_))},set headingWidth(c){this.headingDiv_.style.width=c},get heading(){return this.headingDiv_.textContent},
59 set slices(a){this.slices_=a||[];a||(this.visible=!1);this.invalidate()},get height(){return window.getComputedStyle(this).height},set height(a){this.style.height=a;this.invalidate()},labelWidth:function(a){var b=f[a];b||(b=this.ctx_.measureText(a).width,f[a]=b);return b+2},labelWidthWorld:function(a,b){return this.labelWidth(a)*b},redraw:function(){var b=this.ctx_,f=this.canvas_.width,g=this.canvas_.height;b.clearRect(0,0,f,g);var c=this.viewport_,e=c.xViewVectorToWorld(1),m=c.xViewToWorld(0),f=
    [all...]

Completed in 101 milliseconds