Searched refs:ctx_ (Results 1 - 15 of 15) sorted by relevance

/external/chromium/crypto/
H A Dsecure_hash_openssl.cc20 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::__anon2739::SecureHashSHA256OpenSSL
H A Dsecure_hash_default.cc18 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::__anon2738::SecureHashSHA256NSS
H A Dencryptor_openssl.cc33 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::__anon2725::ScopedCipherCTX
/external/chromium/chrome/browser/resources/gpu_internals/
H A Dfast_rect_renderer.js47 this.ctx_ = ctx;
97 this.ctx_.fillStyle = this.pallette_[colorId];
98 this.ctx_.fillRect(x, this.y_, w, this.h_);
108 this.ctx_.fillStyle = this.pallette_[this.mergedColorId];
109 this.ctx_.fillRect(this.mergeStartX_, this.y_,
H A Dtimeline_track.js183 this.ctx_ = this.canvas_.getContext('2d');
218 var ctx = this.ctx_;
/external/chromium-trace/trace-viewer/src/
H A Dfast_rect_renderer.js44 this.ctx_ = ctx;
91 this.ctx_.fillStyle = this.pallette_[colorId];
92 this.ctx_.fillRect(x, this.y_, w, this.h_);
102 this.ctx_.fillStyle = this.pallette_[this.mergedColorId];
103 this.ctx_.fillRect(this.mergeStartX_, this.y_,
/external/libvpx/vpx/src/
H A Dvpx_decoder_compat.c141 vpx_dec_err_t vpx_dec_get_mem_map(vpx_dec_ctx_t *ctx_, argument
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_, argument
173 vpx_codec_ctx_t *ctx = (vpx_codec_ctx_t *)ctx_;
/external/v8/tools/gcmole/
H A Dgcmole.cc89 : 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:__anon12944::Resolver
130 explicit CalleesPrinter(clang::MangleContext* ctx) : ctx_(ctx) {
148 if (InV8Namespace(f) && GetMangledName(ctx_, f, &name)) {
200 clang::MangleContext* ctx_; member in class:__anon12944::CalleesPrinter
515 : ctx_(ct
1186 clang::MangleContext* ctx_; member in class:__anon12944::FunctionAnalyzer
[all...]
/external/chromium-trace/trace-viewer/src/tracks/
H A Dtimeline_canvas_based_track.js43 this.ctx_ = this.canvas_.getContext('2d');
H A Dtimeline_slice_track.js84 return quickMeasureText(this.ctx_, title) + 2;
92 var ctx = this.ctx_;
H A Dtimeline_counter_track.js75 var ctx = this.ctx_;
H A Dtimeline_viewport_track.js113 var ctx = this.ctx_;
/external/compiler-rt/lib/tsan/rtl/
H A Dtsan_rtl_report.cc122 ctx_ = CTX();
126 ctx_->report_mtx.Lock();
130 ctx_->report_mtx.Unlock();
H A Dtsan_rtl.h418 Context *ctx_; member in class:__tsan::ScopedReport
/external/chromium-trace/
H A Dscript.js44 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=
99 a;this.updateVisibility_()},get selectedSamples(){return this.selectedSamples_},updateVisibility_:function(){this.visible=this.counter_&&this.categoryFilter_.matchCounter(this.counter_)},redraw:function(){var a=this.counter_,b=this.ctx_,d=this.canvas_.width,f=this.canvas_.height;b.clearRect(0,0,d,f);var c=this.viewport_,l=c.xViewVectorToWorld(1),h=c.xViewToWorld(0),d=c.xViewToWorld(d);c.drawUnderContent(b,h,d,f);var j=c.xViewVectorToWorld(1);b.save();c.applyTransformToCanvas(b);for(var k=a.numSeries,
124 d);a.lineTo(f,c);a.closePath();a.strokeStyle=e;a.stroke()},drawArrow_:function(a,b,d,f,c,e,h){this.drawLine_(a,b,d,f,c,h);var j=f-b,k=c-d,q=Math.sqrt(j*j+k*k),m=(q-10)/q,b=b+m*j,d=d+m*k,k=k/q*e,e=-(j/q)*e;a.beginPath();a.fillStyle=h;a.moveTo(b+k,d+e);a.lineTo(f,c);a.lineTo(b-k,d-e);a.lineTo(b+k,d+e);a.closePath();a.fill()},redraw:function(){var a=this.ctx_,
[all...]

Completed in 193 milliseconds