Home
last modified time | relevance | path

Searched refs:_length (Results 1 – 25 of 59) sorted by relevance

123

/third_party/skia/third_party/externals/angle2/src/common/spirv/
Dspirv_instruction_parser_autogen.cpp31 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/
Dnir_vla.h35 #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/skia/third_party/externals/icu/source/common/unicode/
Dunistr.h117 # 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/icu/icu4c/source/common/unicode/
Dunistr.h117 # 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/node/deps/icu-small/source/common/unicode/
Dunistr.h117 # 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
3838 int32_t& _length) const in pinIndices() argument
3847 if(_length < 0) { in pinIndices()
3848 _length = 0; in pinIndices()
3849 } else if(_length > (len - start)) { in pinIndices()
3850 _length = (len - start); in pinIndices()
4014 int32_t _length, in compare() argument
4016 { return doCompare(start, _length, srcText, 0, srcText.length()); } in compare()
4025 int32_t _length, in compare() argument
[all …]
/third_party/skia/modules/canvaskit/npm_build/
Dtextapi_utils.js202 _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/
Dtextapi_utils.js182 _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/node/deps/npm/node_modules/minipass-collect/
Dindex.js3 const _length = Symbol('_length') constant
8 this[_length] = 0
19 this[_length] += c.length
31 const result = Buffer.concat(this[_data], this[_length])
45 this[_length] = 0
56 this[_length] += c.length
66 const result = Buffer.concat(this[_data], this[_length])
/third_party/node/deps/v8/third_party/jinja2/
Dasyncsupport.py192 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
Druntime.py387 _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/jinja2/
Dasyncsupport.py192 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
Druntime.py395 _length: t.Optional[int] = None variable in LoopContext
434 if self._length is not None:
435 return self._length
438 self._length = len(self._iterable) # type: ignore
442 self._length = len(iterable) + self.index + (self._after is not missing)
444 return self._length
595 if self._length is not None:
596 return self._length
599 self._length = len(self._iterable) # type: ignore
603 self._length = len(iterable) + self.index + (self._after is not missing)
[all …]
/third_party/skia/third_party/externals/jinja2/
Dasyncsupport.py192 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
Druntime.py387 _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/node/tools/inspector_protocol/jinja2/
Druntime.py357 _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
Dasyncsupport.py197 self._length = length
201 if self._length is None:
204 return self._length
/third_party/gstreamer/gstplugins_good/gst/matroska/
Debml-read.c45 gst_ebml_peek_id_length (guint32 * _id, guint64 * _length, guint * _needed, in gst_ebml_peek_id_length() argument
56 g_return_val_if_fail (_length != NULL, GST_FLOW_ERROR); in gst_ebml_peek_id_length()
61 *_length = GST_EBML_SIZE_UNKNOWN; in gst_ebml_peek_id_length()
119 *_length = G_MAXUINT64; in gst_ebml_peek_id_length()
121 *_length = total; in gst_ebml_peek_id_length()
Dmatroska-read-common.h153 common, GstElement * el, guint32 * _id, guint64 * _length, guint *
156 common, GstElement * el, guint32 * _id, guint64 * _length, guint *
/third_party/python/Lib/multiprocessing/
Dpool.py843 self._length = None
855 if self._index == self._length:
862 if self._index == self._length:
887 if self._index == self._length:
893 self._length = length
894 if self._index == self._length:
910 if self._index == self._length:
/third_party/skia/tests/
DBitmapCopyTest.cpp46 explicit Coordinates(int _length): length(_length) in Coordinates()
/third_party/python/Lib/
Dgzip.py82 self._length = len(prepend)
89 if self._read + size <= self._length:
97 self.file.read(size-self._length+read)
105 self._length = len(self._buffer)
/third_party/skia/third_party/externals/harfbuzz/src/
Dhb-string-array.hh40 #define HB_STRING_ARRAY_LENG_NAME HB_PASTE(HB_STRING_ARRAY_NAME, _length)
/third_party/node/deps/v8/tools/system-analyzer/log/
Dcode.mjs169 this._length = length;
183 return this._length;
/third_party/protobuf/cmake/
Dinstall.cmake74 string(LENGTH "${_found}" _length)
75 string(SUBSTRING "${_string}" ${_length} -1 _draft_list)
/third_party/lzma/CPP/7zip/UI/Common/
DUpdate.cpp81 UInt64 _length; member in COutMultiVolStream
103 _length = 0; in Init()
109 UInt64 GetSize() const { return _length; } in GetSize()
208 if (_absPos > _length) in Write()
209 _length = _absPos; in Write()
234 case STREAM_SEEK_END: _absPos = (UInt64)((Int64)_length + offset); break; in Seek()
268 _length = newSize; in SetSize()

123