Home
last modified time | relevance | path

Searched refs:_depth (Results 1 – 25 of 1657) sorted by relevance

12345678910>>...67

/dports/irc/smuxi/smuxi-1.1/lib/db4o-net/Db4objects.Db4o/Db4objects.Db4o/Internal/Activation/
H A DFixedUpdateDepth.cs10 private int _depth; field in Db4objects.Db4o.Internal.Activation.FixedUpdateDepth
16 _depth = depth; in FixedUpdateDepth()
31 return _depth > 0; in SufficientDepth()
37 return _depth < 0; in Negative()
42 return GetType().FullName + ": " + _depth; in ToString()
57 return _depth > other._depth; in IsBroaderThan()
64 return ForDepth(DepthUtil.AdjustDepthToBorders(_depth)); in AdjustDepthToBorders()
70 if (_depth < minimumUpdateDepth) in AdjustUpdateDepthForCascade()
79 return ForDepth(_depth - 1); in Descend()
92 return _depth == ((Db4objects.Db4o.Internal.Activation.FixedUpdateDepth)other)._depth; in Equals()
[all …]
H A DFixedActivationDepth.cs18 private readonly int _depth; field in Db4objects.Db4o.Internal.Activation.FixedActivationDepth
22 _depth = depth; in FixedActivationDepth()
31 return _depth > 0; in RequiresActivation()
36 if (_depth < 1) in Descend()
40 return new Db4objects.Db4o.Internal.Activation.FixedActivationDepth(_depth - 1, _mode in Descend()
49 (_depth)); in AdjustDepthToBorders()
H A DLegacyActivationDepth.cs19 private readonly int _depth; field in Db4objects.Db4o.Internal.Activation.LegacyActivationDepth
27 _depth = depth; in LegacyActivationDepth()
34 return new Db4objects.Db4o.Internal.Activation.LegacyActivationDepth(_depth - 1, in Descend()
57 return config.AdjustActivationDepth(_depth); in ConfiguredActivationDepth()
59 return _depth; in ConfiguredActivationDepth()
64 return _depth > 0; in RequiresActivation()
/dports/databases/redisdesktopmanager/RedisDesktopManager-2021.8/3rdparty/simdjson/include/simdjson/generic/ondemand/
H A Djson_iterator-inl.h10 _depth{other._depth},
21 _depth = other._depth;
32 _depth{1},
47 _depth = 1; in rewind()
87 _depth--; in skip_child()
111 _depth--; in skip_child()
121 _depth++; in skip_child()
130 _depth--; in skip_child()
218 _depth = 0; in abandon()
284 _depth = child_depth; in descend_to()
[all …]
H A Dvalue_iterator-inl.h260 SIMDJSON_ASSUME( _json_iter->_depth == _depth ); // We must be at the start of a field in find_field_unordered_raw()
310 SIMDJSON_ASSUME( _json_iter->_depth == _depth ); // We must be at the start of a field in find_field_unordered_raw()
662 SIMDJSON_ASSUME( _json_iter->_depth >= _depth ); in skip_child()
700 return _depth; in depth()
815 return _depth == _json_iter->_depth && *_json_iter->peek() == '"'; in is_at_key()
826 SIMDJSON_ASSUME( _json_iter->_depth == _depth ); in assert_at_start()
832 SIMDJSON_ASSUME( _json_iter->_depth == _depth ); in assert_at_container_start()
838 SIMDJSON_ASSUME( _json_iter->_depth == _depth ); in assert_at_next()
843 _json_iter->_depth = _depth; in move_at_start()
848 _json_iter->_depth = _depth; in move_at_container_start()
[all …]
/dports/devel/simdjson/simdjson-0.9.6/include/simdjson/generic/ondemand/
H A Djson_iterator-inl.h10 _depth{other._depth}
19 _depth = other._depth;
28 _depth{1}
60 _depth--; in skip_child()
67 _depth--; in skip_child()
78 _depth++; in skip_child()
87 _depth--; in skip_child()
127 _depth = 0; in abandon()
171 _depth = child_depth; in descend_to()
175 return _depth; in depth()
[all …]
H A Dvalue_iterator-inl.h7 _depth{depth},
238 SIMDJSON_ASSUME( _json_iter->_depth == _depth ); // We must be at the start of a field in find_field_unordered_raw()
288 SIMDJSON_ASSUME( _json_iter->_depth == _depth ); // We must be at the start of a field in find_field_unordered_raw()
478 SIMDJSON_ASSUME( _json_iter->_depth >= _depth ); in skip_child()
516 return _depth; in depth()
604 SIMDJSON_ASSUME( _json_iter->_depth == _depth ); in assert_at_start()
605 SIMDJSON_ASSUME( _depth > 0 ); in assert_at_start()
610 SIMDJSON_ASSUME( _json_iter->_depth == _depth ); in assert_at_container_start()
611 SIMDJSON_ASSUME( _depth > 0 ); in assert_at_container_start()
616 SIMDJSON_ASSUME( _json_iter->_depth == _depth ); in assert_at_next()
[all …]
/dports/cad/stepcode/stepcode-0.8/src/base/judy/src/
H A DjudyLArray.h36 unsigned int _maxLevels, _depth; variable
42 … judyLArray(): _maxLevels( sizeof( JudyKey ) ), _depth( 1 ), _lastSlot( 0 ), _success( true ) { in judyLArray()
45 _judyarray = judy_open( _maxLevels, _depth ); in judyLArray()
50 _depth( other._depth ), _success( other._success ) { in judyLArray()
90 … = ( JudyValue * ) judy_cell( _judyarray, ( const unsigned char * ) &key, _depth * JUDY_key_size ); in insert()
103 … = ( JudyValue * ) judy_strt( _judyarray, ( const unsigned char * ) &key, _depth * JUDY_key_size ); in atOrAfter()
109 … = ( JudyValue * ) judy_slot( _judyarray, ( const unsigned char * ) &key, _depth * JUDY_key_size ); in find()
121 judy_key( _judyarray, ( unsigned char * ) _buff, _depth * JUDY_key_size ); in mostRecentPair()
163 if( judy_slot( _judyarray, key, _depth * JUDY_key_size ) ) { in removeEntry()
174 …return ( ( judy_strt( _judyarray, ( const unsigned char * ) &key, _depth * JUDY_key_size ) ) ? fal… in isEmpty()
H A DjudyL2Array.h40 unsigned int _maxLevels, _depth; variable
46 … judyL2Array(): _maxLevels( sizeof( JudyKey ) ), _depth( 1 ), _lastSlot( 0 ), _success( true ) { in judyL2Array()
48 _judyarray = judy_open( _maxLevels, _depth ); in judyL2Array()
53 _depth( other._depth ), _success( other._success ) { in judyL2Array()
100 …_lastSlot = ( vector ** ) judy_cell( _judyarray, ( const unsigned char * ) &key, _depth * JUDY_key… in insert()
125 …_lastSlot = ( vector ** ) judy_cell( _judyarray, ( const unsigned char * ) &key, _depth * JUDY_key…
146 …_lastSlot = ( vector ** ) judy_strt( _judyarray, ( const unsigned char * ) &key, _depth * JUDY_key… in atOrAfter()
152 …_lastSlot = ( vector ** ) judy_slot( _judyarray, ( const unsigned char * ) &key, _depth * JUDY_key… in find()
164 judy_key( _judyarray, ( unsigned char * ) _buff, _depth * JUDY_key_size ); in mostRecentPair()
206 …t = ( vector ** ) judy_slot( _judyarray, ( const unsigned char * ) &key, _depth * JUDY_key_size ) … in removeEntry()
[all …]
/dports/textproc/pear-XML_Beautifier/XML_Beautifier-1.2.2/Beautifier/
H A DTokenizer.php77 var $_depth = 0; variable in XML_Beautifier_Tokenizer
146 "depth" => $this->_depth++,
173 $this->_depth--;
200 "depth" => $this->_depth
222 "depth" => $this->_depth
247 "depth" => $this->_depth
296 "depth" => $this->_depth
323 "depth" => $this->_depth
380 "depth" => $this->_depth
410 if ($this->_depth > 0) {
[all …]
/dports/devel/pear-XML_Parser/XML_Parser-1.3.8/XML/Parser/
H A DSimple.php120 var $_depth = 0;
199 $this->_depth = 0;
227 $this->_depth++;
228 $this->_data[$this->_depth] = '';
246 $data = $this->_data[$this->_depth];
247 $this->_depth--;
278 $this->_data[$this->_depth] .= $data;
308 return $this->_depth;
323 $this->_data[$this->_depth] .= $data;
/dports/www/tikiwiki/tiki-21.2/vendor_bundled/vendor/pear/xml_parser/XML/Parser/
H A DSimple.php120 var $_depth = 0; variable in XML_Parser_Simple
199 $this->_depth = 0;
227 $this->_depth++;
228 $this->_data[$this->_depth] = '';
246 $data = $this->_data[$this->_depth];
247 $this->_depth--;
278 $this->_data[$this->_depth] .= $data;
308 return $this->_depth;
323 $this->_data[$this->_depth] .= $data;
/dports/net-mgmt/netbox/netbox-3.0.12/netbox/ipam/tests/
H A Dtest_models.py271 self.assertEqual(prefixes[0]._depth, 0)
274 self.assertEqual(prefixes[1]._depth, 1)
277 self.assertEqual(prefixes[2]._depth, 2)
280 self.assertEqual(prefixes[3]._depth, 3)
289 self.assertEqual(prefixes[0]._depth, 0)
292 self.assertEqual(prefixes[1]._depth, 1)
295 self.assertEqual(prefixes[2]._depth, 2)
298 self.assertEqual(prefixes[3]._depth, 3)
309 self.assertEqual(prefixes[0]._depth, 0)
312 self.assertEqual(prefixes[1]._depth, 1)
[all …]
/dports/java/openjdk16/jdk16u-jdk-16.0.2-7-1/src/hotspot/share/jfr/leakprofiler/chains/
H A DdfsClosure.cpp73 _max_depth(max_dfs_depth), _depth(0), _ignore_root_set(false) { in DFSClosure()
83 if (_depth == 0 && _ignore_root_set) { in closure_impl()
92 _reference_stack[_depth] = reference; in closure_impl()
102 if (_depth < _max_depth - 1) { in closure_impl()
103 _depth++; in closure_impl()
105 assert(_depth > 0, "invariant"); in closure_impl()
106 _depth--; in closure_impl()
111 const size_t array_length = _depth + 2; in add_chain()
118 for (size_t i = 0; i <= _depth; i++) { in add_chain()
120 const size_t depth = _depth - i; in add_chain()
[all …]
/dports/java/openjdk17/jdk17u-jdk-17.0.1-12-1/src/hotspot/share/jfr/leakprofiler/chains/
H A DdfsClosure.cpp73 _max_depth(max_dfs_depth), _depth(0), _ignore_root_set(false) { in DFSClosure()
83 if (_depth == 0 && _ignore_root_set) { in closure_impl()
92 _reference_stack[_depth] = reference; in closure_impl()
102 if (_depth < _max_depth - 1) { in closure_impl()
103 _depth++; in closure_impl()
105 assert(_depth > 0, "invariant"); in closure_impl()
106 _depth--; in closure_impl()
111 const size_t array_length = _depth + 2; in add_chain()
118 for (size_t i = 0; i <= _depth; i++) { in add_chain()
120 const size_t depth = _depth - i; in add_chain()
[all …]
/dports/java/openjdk15/jdk15u-jdk-15.0.6-1-1/src/hotspot/share/jfr/leakprofiler/chains/
H A DdfsClosure.cpp73 _max_depth(max_dfs_depth), _depth(0), _ignore_root_set(false) { in DFSClosure()
83 if (_depth == 0 && _ignore_root_set) { in closure_impl()
92 _reference_stack[_depth] = reference; in closure_impl()
102 if (_depth < _max_depth - 1) { in closure_impl()
103 _depth++; in closure_impl()
105 assert(_depth > 0, "invariant"); in closure_impl()
106 _depth--; in closure_impl()
111 const size_t array_length = _depth + 2; in add_chain()
118 for (size_t i = 0; i <= _depth; i++) { in add_chain()
120 const size_t depth = _depth - i; in add_chain()
[all …]
/dports/graphics/cimg/CImg-v.2.9.7/plugins/
H A Dmatlab.h153 …cimg_forXYZC(*this,x,y,z,v) (*this)(x,y,z,v) = (T)(mdata[((v*_depth + z)*_width + x)*_height + y]); in cpMatlabData()
178 _data = 0; _width = _height = _depth = _spectrum = 0; in _is_shared()
184 _depth = _spectrum = 1; in _is_shared()
187 if (nbdims==4) { _depth = (unsigned)dims[2]; _spectrum = (unsigned)dims[3]; } in _is_shared()
189 if (vdata) _spectrum = (unsigned)dims[2]; else _depth = (unsigned)dims[2]; in _is_shared()
207 _width = _height = _depth = _spectrum = 0;
213 _depth = _spectrum = 1;
216 if (nbdims>2) _depth = (unsigned)dims[2];
232 cimg_forXYZC(*this,x,y,z,v) mdata[((v*_depth + z)*_width + x)*_height + y] = (c)(*this)(x,y,z,v); in populate_maltlab_array()
257 dims[2] = (mwSize)_depth;
[all …]
/dports/graphics/gmic-qt/CImg-v.2.9.8/plugins/
H A Dmatlab.h153 …cimg_forXYZC(*this,x,y,z,v) (*this)(x,y,z,v) = (T)(mdata[((v*_depth + z)*_width + x)*_height + y]); in cpMatlabData()
178 _data = 0; _width = _height = _depth = _spectrum = 0; in _is_shared()
184 _depth = _spectrum = 1; in _is_shared()
187 if (nbdims==4) { _depth = (unsigned)dims[2]; _spectrum = (unsigned)dims[3]; } in _is_shared()
189 if (vdata) _spectrum = (unsigned)dims[2]; else _depth = (unsigned)dims[2]; in _is_shared()
207 _width = _height = _depth = _spectrum = 0;
213 _depth = _spectrum = 1;
216 if (nbdims>2) _depth = (unsigned)dims[2];
232 cimg_forXYZC(*this,x,y,z,v) mdata[((v*_depth + z)*_width + x)*_height + y] = (c)(*this)(x,y,z,v); in populate_maltlab_array()
257 dims[2] = (mwSize)_depth;
[all …]
/dports/net/google-cloud-sdk/google-cloud-sdk/lib/googlecloudsdk/core/document_renderers/
H A Drender_document.py155 self._depth = 0
411 if self._depth:
412 self._depth -= 1
417 if not self._depth or not self._lists[self._depth].ignore_line:
474 self._depth = 0
725 self._depth += 1
730 self._depth -= 1
782 self._depth -= 1
784 self._depth += 1
822 if i or not self._depth:
[all …]
/dports/devel/mercurial/mercurial-6.0/mercurial/
H A Dpvec.py188 self._depth, self._vec = _split(util.b85decode(hashorctx))
196 return self._vec == b._vec and self._depth == b._depth
199 delta = b._depth - self._depth
210 delta = abs(b._depth - self._depth)
218 return self._depth - b._depth
221 d = abs(b._depth - self._depth)
226 dist = abs(b.depth - self._depth)
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Private.Xml/src/System/Xml/Xsl/Xslt/
H A DKeyMatchBuilder.cs19 private int _depth = 0; field in System.Xml.Xsl.Xslt.KeyMatchBuilder
29 Debug.Assert(0 <= _depth && _depth <= 1, "this shouldn't happen"); in StartBuild()
30 if (_depth == 0) in StartBuild()
34 _depth++; in StartBuild()
39 _depth--; in EndBuild()
40 Debug.Assert(0 <= _depth && _depth <= 1, "this shouldn't happen"); in EndBuild()
45 if (_depth == 0) in EndBuild()
/dports/graphics/libQGLViewer/libQGLViewer-2.7.2/QGLViewer/VRender/
H A DFIGExporter.cpp93 _depth = 999 ; in writeHeader()
105 out << "2 1 0 5 0 7 " << (_depth--) << " 0 -1 0.000 0 1 -1 0 0 1\n"; in spewPoint()
108 if(_depth > 0) _depth = 0 ; in spewPoint()
172 out << "2 1 0 1 0 7 " << (_depth--) << " 0 -1 0.000 0 0 -1 0 0 2\n"; in spewSegment()
176 if(_depth > 0) _depth = 0 ; in spewSegment()
208 out << "2 3 0 0 0 7 " << (_depth--) << " 0 20 0.000 0 0 -1 0 0 " << (nvertices+1) << "\n"; in spewPolygone()
210 …out << "2 3 0 0 0 7 " << (_depth--) << " 0 " << (FigGrayScaleIndex(red,green,blue)) << " 0.000 0 0… in spewPolygone()
222 if(_depth > 0) _depth = 0 ; in spewPolygone()
/dports/math/octomap/octomap-1.9.7/octovis/src/extern/QGLViewer/VRender/
H A DFIGExporter.cpp93 _depth = 999 ; in writeHeader()
105 out << "2 1 0 5 0 7 " << (_depth--) << " 0 -1 0.000 0 1 -1 0 0 1\n"; in spewPoint()
108 if(_depth > 0) _depth = 0 ; in spewPoint()
172 out << "2 1 0 1 0 7 " << (_depth--) << " 0 -1 0.000 0 0 -1 0 0 2\n"; in spewSegment()
176 if(_depth > 0) _depth = 0 ; in spewSegment()
208 out << "2 3 0 0 0 7 " << (_depth--) << " 0 20 0.000 0 0 -1 0 0 " << (nvertices+1) << "\n"; in spewPolygone()
210 …out << "2 3 0 0 0 7 " << (_depth--) << " 0 " << (FigGrayScaleIndex(red,green,blue)) << " 0.000 0 0… in spewPolygone()
222 if(_depth > 0) _depth = 0 ; in spewPolygone()
/dports/graphics/opencv/opencv-4.5.3/contrib/modules/rgbd/src/
H A Dkinfu.cpp199 CV_Assert(!_depth.empty() && _depth.size() == params.frameSize); in update()
202 if(_depth.isUMat()) in update()
204 _depth.copyTo(depth); in update()
209 return updateT(_depth.getMat()); in update()
217 CV_Assert(!_depth.empty() && _depth.size() == params.frameSize); in update()
220 if(!_depth.isUMat()) in update()
222 _depth.copyTo(depth); in update()
227 return updateT(_depth.getUMat()); in update()
238 if(_depth.type() != DEPTH_TYPE) in updateT()
239 _depth.convertTo(depth, DEPTH_TYPE); in updateT()
[all …]
H A Dlarge_kinfu.cpp181 CV_Assert(!_depth.empty() && _depth.size() == params.frameSize); in update()
184 if (_depth.isUMat()) in update()
186 _depth.copyTo(depth); in update()
191 return updateT(_depth.getMat()); in update()
198 CV_Assert(!_depth.empty() && _depth.size() == params.frameSize); in update()
201 if (!_depth.isUMat()) in update()
203 _depth.copyTo(depth); in update()
208 return updateT(_depth.getUMat()); in update()
219 if (_depth.type() != DEPTH_TYPE) in updateT()
220 _depth.convertTo(depth, DEPTH_TYPE); in updateT()
[all …]

12345678910>>...67