Searched refs:depth_ (Results 1 - 25 of 25) sorted by relevance

/external/chromium_org/third_party/libjingle/source/talk/xmpp/
H A Dxmppstanzaparser.cc45 depth_(0),
52 depth_ = 0;
59 if (depth_++ == 0) {
76 if (depth_ > 1) {
84 if (--depth_ == 0) {
91 if (depth_ == 1) {
H A Dxmppstanzaparser.h89 int depth_; member in class:buzz::XmppStanzaParser
/external/chromium_org/third_party/brotli/src/brotli/enc/
H A Dentropy_encode.h64 uint8_t depth_[kSize]; member in struct:brotli::EntropyCode
78 memset(code->depth_, 0, sizeof(code->depth_));
93 CreateHuffmanTree(counts, alphabet_size, tree_limit, &code->depth_[0]);
96 &code->depth_[0]);
98 ConvertBitDepthsToSymbols(&code->depth_[0], alphabet_size, &code->bits_[0]);
H A Dencode.cc220 WriteBits(entropy.depth_[ix], entropy.bits_[ix], storage_ix, storage);
237 const uint8_t *depth = &code.depth_[0];
275 const uint8_t *depth = &code.depth_[0];
293 &huffman_tree_entropy.depth_[0], storage_ix, storage);
305 memset(code->depth_, 0, sizeof(code->depth_));
335 CreateHuffmanTree(&counts[0], alphabet_size, tree_limit, code->depth_);
337 CreateHuffmanTree(histogram.data_, alphabet_size, tree_limit, code->depth_);
339 ConvertBitDepthsToSymbols(code->depth_, alphabet_size, code->bits_);
366 WriteBits(entropy.depth_[cod
[all...]
H A Dbit_cost.h42 return HuffmanTreeBitCost(&histogram.data_[0], &entropy.depth_[0]);
/external/chromium_org/remoting/test/
H A Dleaky_bucket.h27 double depth_; member in class:remoting::LeakyBucket
H A Dleaky_bucket.cc12 : depth_(depth),
25 if (new_level > depth_)
/external/chromium_org/ui/gfx/geometry/
H A Dbox_f.h23 depth_(0.f) {}
28 depth_(depth < 0 ? 0 : depth) {}
34 depth_(depth < 0 ? 0 : depth) {}
40 depth_(depth < 0 ? 0 : depth) {}
52 set_size(width_ * x_scale, height_ * y_scale, depth_ * z_scale);
84 float depth() const { return depth_; }
85 void set_depth(float depth) { depth_ = depth < 0 ? 0 : depth; }
94 depth_ = depth < 0 ? 0 : depth;
115 // height_, depth_), even if the box is empty. Emptiness checks are handled in
122 float depth_;
[all...]
H A Dbox_f.cc19 depth_);
24 (width_ == 0 && depth_ == 0) ||
25 (height_ == 0 && depth_ == 0);
43 depth_ = max_z - min_z;
/external/chromium_org/remoting/webapp/
H A Dxmpp_stream_parser.js33 this.depth_ = 0;
99 if (this.depth_ <= 1) {
154 base.debug.assert(this.depth_ > 1);
170 ++this.depth_;
171 if (this.depth_ == 1) {
193 if (this.depth_ <= 1) {
197 --this.depth_;
198 if (this.depth_ == 1) {
/external/chromium_org/pdf/
H A Ddraw_utils.h69 uint32 GetValue(int32 x, int32 y) const { return matrix_[y * depth_ + x]; }
71 uint32 depth() const { return depth_; }
76 uint32 depth_; member in class:chrome_pdf::ShadowMatrix
H A Ddraw_utils.cc225 : depth_(depth), factor_(factor), background_(background) {
226 DCHECK(depth_ > 0);
227 matrix_.resize(depth_ * depth_);
233 std::vector<double> pow_pv(depth_, 0.0);
235 double r = static_cast<double>(depth_);
238 for (uint32 y = 0; y < depth_; y++) {
272 matrix_[y * depth_ + x] = pixel;
273 matrix_[x * depth_ + y] = pixel;
/external/chromium_org/ui/webui/resources/js/cr/ui/
H A Dtree.js294 depth_: 0,
296 return this.depth_;
305 if (depth != this.depth_) {
308 this.depth_ = depth;
/external/chromium_org/base/json/
H A Djson_parser.cc167 explicit StackMarker(int* depth) : depth_(depth) {
168 ++(*depth_);
169 DCHECK_LE(*depth_, kStackMaxDepth);
172 --(*depth_);
176 return *depth_ >= kStackMaxDepth;
180 int* const depth_; member in class:base::internal::__anon2300::StackMarker
/external/chromium_org/v8/src/compiler/
H A Djs-operator.h24 : immutable_(immutable), depth_(depth), index_(index) {
28 int depth() const { return depth_; }
36 const uint16_t depth_; member in class:v8::internal::compiler::ContextAccess
/external/chromium_org/mojo/public/cpp/utility/tests/
H A Drun_loop_unittest.cc307 depth_(0),
322 size_t current_depth = ++depth_;
339 --depth_;
365 size_t depth_; member in class:mojo::__anon8799::NestingRunLoopHandler
/external/chromium_org/third_party/angle/src/libGLESv2/
H A Dangletypes.h77 Extents(int width_, int height_, int depth_) : width(width_), height(height_), depth(depth_) { } argument
/external/deqp/modules/gles2/functional/
H A Des2fStencilTests.cpp134 StencilOp (Type type_, GLenum stencilTest_ = GL_ALWAYS, int stencil_ = 0, GLenum depthTest_ = GL_ALWAYS, float depth_ = 1.0f, GLenum sFail_ = GL_KEEP, GLenum dFail_ = GL_KEEP, GLenum dPass_ = GL_KEEP)
140 , depth (depth_)
/external/deqp/modules/gles3/functional/
H A Des3fStencilTests.cpp137 StencilOp (Type type_, GLenum stencilTest_ = GL_ALWAYS, int stencil_ = 0, GLenum depthTest_ = GL_ALWAYS, float depth_ = 1.0f, GLenum sFail_ = GL_KEEP, GLenum dFail_ = GL_KEEP, GLenum dPass_ = GL_KEEP)
143 , depth (depth_)
H A Des3fShaderTextureFunctionTests.cpp201 int depth_,
208 , depth (depth_)
197 TextureSpec(TextureType type_, deUint32 format_, int width_, int height_, int depth_, int numLevels_, const tcu::Sampler& sampler_) argument
/external/chromium_org/v8/src/
H A Dast.h1409 DCHECK(depth_ >= 1);
1410 return depth_;
1418 depth_(0) {}
1428 depth_ = depth;
1446 int depth_; member in class:v8::internal::MaterializedLiteral
H A Dobjects-inl.h3654 frames_[depth_++ & kDepthMask] = string;
3660 frames_[(depth_-1) & kDepthMask] = string;
3665 if (depth_ > maximum_depth_) maximum_depth_ = depth_;
3670 DCHECK(depth_ > 0);
3671 DCHECK(depth_ <= maximum_depth_);
3672 depth_--;
H A Dhydrogen-instructions.h7404 : literal_index_(index), depth_(depth), allocation_site_mode_(mode) {
7409 : literal_index_(index), depth_(depth),
7415 int depth() const { return depth_; }
7424 int depth_; member in class:v8::FINAL::HMaterializedLiteral
H A Dobjects.h9292 depth_ = 0;
9300 if (depth_ == 0) return NULL;
9315 inline bool StackBlown() { return maximum_depth_ - depth_ == kStackSize; }
9325 int depth_; member in class:v8::internal::String::FlatContent::ConsStringIteratorOp
H A Dobjects.cc8189 depth_ = 1;
8190 maximum_depth_ = kStackSize + depth_;
8196 DCHECK(depth_ != 0);
8216 depth_ = 1;
8277 if (depth_ == 0) {
8287 ConsString* cons_string = frames_[OffsetForDepth(depth_ - 1)];

Completed in 4929 milliseconds