/third_party/skia/third_party/externals/angle2/src/common/spirv/ |
D | spirv_instruction_parser_autogen.cpp | 31 uint32_t _length; in ParseUndef() local 32 GetInstructionOpAndLength(_instruction, &_op, &_length); in ParseUndef() 41 uint32_t _length; in ParseSourceContinued() local 42 GetInstructionOpAndLength(_instruction, &_op, &_length); in ParseSourceContinued() 56 uint32_t _length; in ParseSource() local 57 GetInstructionOpAndLength(_instruction, &_op, &_length); in ParseSource() 62 if (file && _o < _length) in ParseSource() 66 if (source && _o < _length) in ParseSource() 76 uint32_t _length; in ParseSourceExtension() local 77 GetInstructionOpAndLength(_instruction, &_op, &_length); in ParseSourceExtension() [all …]
|
/third_party/mesa3d/src/compiler/nir/ |
D | nir_vla.h | 35 #define NIR_VLA(_type, _name, _length) \ argument 36 _type *_name = alloca((_length) * sizeof *_name) 44 #define NIR_VLA_FILL(_type, _name, _length, _byte) \ argument 45 _type *_name = memset(alloca((_length) * sizeof *_name), _byte, (_length) * sizeof *_name) 53 #define NIR_VLA_ZERO(_type, _name, _length) \ argument 54 NIR_VLA_FILL(_type, _name, _length, 0)
|
/third_party/flutter/engine/flutter/lib/web_ui/lib/src/engine/services/ |
D | buffers.dart | 20 int _length; 24 _length = buffer.length; 27 int get length => _length; 47 if (newLength < _length) { 49 for (int i = newLength; i < _length; i++) { 59 newBuffer.setRange(0, _length, _buffer); 62 _length = newLength; 66 if (_length == _buffer.length) { 67 _grow(_length); 69 _buffer[_length++] = value; [all …]
|
/third_party/icu/icu4c/source/common/unicode/ |
D | unistr.h | 117 # define UNICODE_STRING(cs, _length) icu::UnicodeString(true, u ## cs, _length) argument 119 # define UNICODE_STRING(cs, _length) icu::UnicodeString(true, (const char16_t*)u ## cs, _length) argument 3825 int32_t& _length) const in pinIndices() argument 3834 if(_length < 0) { in pinIndices() 3835 _length = 0; in pinIndices() 3836 } else if(_length > (len - start)) { in pinIndices() 3837 _length = (len - start); in pinIndices() 3986 int32_t _length, in compare() argument 3988 { return doCompare(start, _length, srcText, 0, srcText.length()); } in compare() 3997 int32_t _length, in compare() argument [all …]
|
/third_party/flutter/skia/third_party/externals/icu/source/common/unicode/ |
D | unistr.h | 113 # define UNICODE_STRING(cs, _length) icu::UnicodeString(TRUE, u ## cs, _length) argument 115 # define UNICODE_STRING(cs, _length) icu::UnicodeString(TRUE, (const char16_t*)u ## cs, _length) argument 3844 int32_t& _length) const in pinIndices() argument 3853 if(_length < 0) { in pinIndices() 3854 _length = 0; in pinIndices() 3855 } else if(_length > (len - start)) { in pinIndices() 3856 _length = (len - start); in pinIndices() 4005 int32_t _length, in compare() argument 4007 { return doCompare(start, _length, srcText, 0, srcText.length()); } in compare() 4016 int32_t _length, in compare() argument [all …]
|
/third_party/node/deps/icu-small/source/common/unicode/ |
D | unistr.h | 117 # define UNICODE_STRING(cs, _length) icu::UnicodeString(true, u ## cs, _length) argument 119 # define UNICODE_STRING(cs, _length) icu::UnicodeString(true, (const char16_t*)u ## cs, _length) argument 3825 int32_t& _length) const in pinIndices() argument 3834 if(_length < 0) { in pinIndices() 3835 _length = 0; in pinIndices() 3836 } else if(_length > (len - start)) { in pinIndices() 3837 _length = (len - start); in pinIndices() 3986 int32_t _length, in compare() argument 3988 { return doCompare(start, _length, srcText, 0, srcText.length()); } in compare() 3997 int32_t _length, in compare() argument [all …]
|
/third_party/skia/third_party/externals/icu/source/common/unicode/ |
D | unistr.h | 117 # define UNICODE_STRING(cs, _length) icu::UnicodeString(true, u ## cs, _length) argument 119 # define UNICODE_STRING(cs, _length) icu::UnicodeString(true, (const char16_t*)u ## cs, _length) argument 3825 int32_t& _length) const in pinIndices() argument 3834 if(_length < 0) { in pinIndices() 3835 _length = 0; in pinIndices() 3836 } else if(_length > (len - start)) { in pinIndices() 3837 _length = (len - start); in pinIndices() 3986 int32_t _length, in compare() argument 3988 { return doCompare(start, _length, srcText, 0, srcText.length()); } in compare() 3997 int32_t _length, in compare() argument [all …]
|
/third_party/skia/modules/canvaskit/npm_build/ |
D | textapi_utils.js | 202 _length: length, 334 len += s._length; 358 block.length += s._length; 361 block = { length: s._length, typeface: s.typeface, size: s.size }; 365 blocks.push({ length: s._length, typeface: s.typeface, size: s.size }); 422 this._styles[i]._length += 1; 445 let s_end = s._length; 464 s_end += s._length; 542 const l = this._styles[i]._length; 568 ASSERT(skip < s._length); [all …]
|
/third_party/skia/demos.skia.org/demos/textedit/ |
D | textapi_utils.js | 182 _length: length, 321 const len = this._styles.reduce((sum, style) => sum + style._length, 0); 339 block.length += s._length; 342 block = { length: s._length, typeface: s.typeface, size: s.size }; 405 this._styles[i]._length += len; 428 let s_end = s._length; 447 s_end += s._length; 521 const l = this._styles[i]._length; 547 ASSERT(skip < s._length); 548 const shrink = Math.min(N, s._length - skip); [all …]
|
/third_party/flutter/flutter/packages/flutter/lib/src/foundation/ |
D | _bitfield_io.dart | 13 BitField(this._length) 14 : assert(_length <= _smiBits), 18 BitField.filled(this._length, bool value) 19 : assert(_length <= _smiBits), 22 final int _length; 31 assert(index.index < _length); 37 assert(index.index < _length);
|
/third_party/node/deps/npm/node_modules/bluebird/js/release/ |
D | queue.js | 11 this._length = 0; 24 this._length = length + 1; 41 this._length = length; 50 this._length--; 55 return this._length; 68 var length = this._length;
|
D | promise_array.js | 22 this._length = 0; 29 return this._length; 83 this._length = len; 143 if (totalResolved >= this._length) {
|
D | debuggability.js | 735 var length = this._length = 1 + (parent === undefined ? 0 : parent._length); 743 var length = this._length; 752 length = this._length = i; 765 nodes[index - 1]._length = 1; 768 nodes[i]._length = 1; 774 cycleEdgeNode._length = 775 cycleEdgeNode._parent._length + 1; 778 cycleEdgeNode._length = 1; 780 var currentChildLength = cycleEdgeNode._length + 1; 782 nodes[j]._length = currentChildLength;
|
/third_party/flatbuffers/ts/flexbuffers/ |
D | reference.ts | 28 private _length = -1 property in Reference 124 if (this._length > -1) { 125 return this._length; 128 this._length = fixedTypedVectorElementSize(this.valueType); 132 …this._length = readUInt(this.dataView, indirect(this.dataView, this.offset, this.parentWidth) - th… 134 this._length = 0; 143 this._length = size as number; 150 this._length = size; 152 this._length = 1; 154 return this._length;
|
/third_party/boost/libs/phoenix/example/ |
D | adapted_echo_server.cpp | 58 phx::expression::argument<2>::type _length; in main() local 66 bind(_action, ref(socket), ref(buf), _error, _length) in main() 88 phx::expression::argument<4>::type _length; in main() local 90 write(_socket, buffer(_buf, _length), phx::ref(write_handler)) in main()
|
/third_party/boost/boost/pending/ |
D | bucket_sorter.hpp | 40 bucket_sorter(size_type _length, bucket_type _max_bucket, in bucket_sorter() argument 44 , next(_length, invalid_value()) in bucket_sorter() 45 , prev(_length, invalid_value()) in bucket_sorter() 46 , id_to_value(_length) in bucket_sorter()
|
/third_party/jinja2/ |
D | asyncsupport.py | 192 if self._length is not None: 193 return self._length 196 self._length = len(self._iterable) 200 self._length = len(iterable) + self.index + (self._after is not missing) 202 return self._length
|
D | runtime.py | 387 _length = None variable in LoopContext 420 if self._length is not None: 421 return self._length 424 self._length = len(self._iterable) 428 self._length = len(iterable) + self.index + (self._after is not missing) 430 return self._length
|
/third_party/skia/third_party/externals/jinja2/ |
D | asyncsupport.py | 192 if self._length is not None: 193 return self._length 196 self._length = len(self._iterable) 200 self._length = len(iterable) + self.index + (self._after is not missing) 202 return self._length
|
D | runtime.py | 387 _length = None variable in LoopContext 420 if self._length is not None: 421 return self._length 424 self._length = len(self._iterable) 428 self._length = len(iterable) + self.index + (self._after is not missing) 430 return self._length
|
/third_party/flatbuffers/dart/lib/src/ |
D | reference.dart | 16 int _length; 184 if (_length != null) { 185 return _length; 189 _length = ValueTypeUtils.fixedTypedVectorElementSize(_valueType); 191 _length = _readUInt(_indirect - _byteWidth, BitWidthUtil.fromByteWidth(_byteWidth)); 193 _length = 0; 202 _length = size; 209 _length = size; 211 _length = 1; 213 return _length;
|
/third_party/mindspore/tests/st/networks/models/bert/src/ |
D | bert_model.py | 274 self._length = length 286 range_vec_row_out = self.cast(F.tuple_to_array(F.make_range(self._length)), mstype.int32) 287 range_vec_col_out = self.range_mat(range_vec_row_out, (self._length, -1)) 288 tile_row_out = self.tile(range_vec_row_out, (self._length,)) 289 tile_col_out = self.tile(range_vec_col_out, (1, self._length)) 290 range_mat_out = self.range_mat(tile_row_out, (self._length, self._length)) 291 transpose_out = self.range_mat(tile_col_out, (self._length, self._length))
|
/third_party/node/deps/npm/node_modules/bluebird/js/browser/ |
D | bluebird.core.min.js | 30 …_length()>0&&this._settlePromises()},e.prototype._unsetOnCancel=function(){this._onCancelField=voi… 31 …_length=function(){return 65535&this._bitField},i.prototype._isFateSealed=function(){return 0!==(1…
|
/third_party/node/tools/inspector_protocol/jinja2/ |
D | runtime.py | 357 _length = None variable in LoopContextBase 432 self._length = len(iterable) 434 self._length = None 439 if self._length is None: 447 self._length = len(iterable) + iterations_done 448 return self._length
|
D | asyncsupport.py | 197 self._length = length 201 if self._length is None: 204 return self._length
|