Home
last modified time | relevance | path

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

12

/external/arduino/hardware/arduino/cores/arduino/
DWString.cpp29 getBuffer( _length = strlen( value ) ); in String()
36 getBuffer( _length = value._length ); in String()
43 _length = 1; in String()
53 _length = 1; in String()
65 getBuffer( _length = strlen(buf) ); in String()
74 getBuffer( _length = strlen(buf) ); in String()
83 getBuffer( _length = strlen(buf) ); in String()
92 getBuffer( _length = strlen(buf) ); in String()
105 if(_length > loc) { in setCharAt()
125 if ( rhs._length > _length ) in operator =()
[all …]
DWString.h40 ~String() { free(_buffer); _length = _capacity = 0;} //added _length = _capacity = 0; in ~String()
70 const unsigned int length( ) const { return _length; } in length()
90 unsigned int _length; // the String length (not counting the '\0') variable
103 if (_buffer == NULL) _length = _capacity = 0; in getBuffer()
/external/lzma/CPP/Common/
DMyString.h136 Delete(i, _length - i); in TrimRightWithCharSet()
143 sizeof(T) * (_length - srcIndex + 1)); in MoveItems()
159 int _length; variable
175 for (int i = 0; i < _length; i++) in SetCapacity()
180 _chars[_length] = 0; in SetCapacity()
186 int freeSize = _capacity - _length - 1; in GrowLength()
203 if (index > _length) in CorrectIndex()
204 index = _length; in CorrectIndex()
208 CStringBase(): _chars(0), _length(0), _capacity(0) { SetCapacity(3); } in CStringBase()
209 CStringBase(T c): _chars(0), _length(0), _capacity(0) in CStringBase()
[all …]
/external/chromium_org/third_party/icu/source/common/unicode/
Dunistr.h94 … define UNICODE_STRING(cs, _length) U_NAMESPACE_QUALIFIER UnicodeString(TRUE, (const UChar *)U_D… argument
96 # define UNICODE_STRING(cs, _length) U_NAMESPACE_QUALIFIER UnicodeString(TRUE, (const UChar *)L #… argument
98 # define UNICODE_STRING(cs, _length) U_NAMESPACE_QUALIFIER UnicodeString(TRUE, (const UChar *)cs,… argument
100 # define UNICODE_STRING(cs, _length) U_NAMESPACE_QUALIFIER UnicodeString(cs, _length, US_INV) argument
3459 int32_t& _length) const in pinIndices() argument
3468 if(_length < 0) { in pinIndices()
3469 _length = 0; in pinIndices()
3470 } else if(_length > (len - start)) { in pinIndices()
3471 _length = (len - start); in pinIndices()
3583 int32_t _length, in compare() argument
[all …]
/external/icu4c/common/unicode/
Dunistr.h118 # define UNICODE_STRING(cs, _length) icu::UnicodeString(TRUE, (const UChar *)U_DECLARE_UTF16(cs),… argument
120 # define UNICODE_STRING(cs, _length) icu::UnicodeString(TRUE, (const UChar *)L ## cs, _length) argument
122 # define UNICODE_STRING(cs, _length) icu::UnicodeString(TRUE, (const UChar *)cs, _length) argument
124 # define UNICODE_STRING(cs, _length) icu::UnicodeString(cs, _length, US_INV) argument
3584 int32_t& _length) const in pinIndices() argument
3593 if(_length < 0) { in pinIndices()
3594 _length = 0; in pinIndices()
3595 } else if(_length > (len - start)) { in pinIndices()
3596 _length = (len - start); in pinIndices()
3715 int32_t _length, in compare() argument
[all …]
/external/chromium_org/third_party/icu/patches/
Dgcc46.patch10 return doReplace(start, _length, buffer, 0, count);
14 int32_t _length = 0;
16 U16_APPEND(buffer, _length, U16_MAX_LENGTH, srcChar, isError);
18 return doReplace(length(), 0, buffer, 0, _length);
Dclang.patch9 - return extract(start, _length, dst, dst!=0 ? ((dst >= (char*)((size_t)-1) - UINT32_MAX) ? (((cha…
10 + return extract(start, _length, dst, dst!=0 ? ((dst >= (char*)((size_t)-1) - UINT32_MAX) ? static…
12 return extract(start, _length, dst, dst!=0 ? 0xffffffff : 0, codepage);
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/
DSuggestBox.js62 this._length = 0;
143 …var maxHeight = this._maxItemsHeight ? contentHeight * this._maxItemsHeight / this._length : Math.…
227 if (!this._length)
236 index = (this._length + index) % this._length;
238 index = Number.constrain(index, 0, this._length - 1);
284 this._length = items.length;
/external/clang/test/CodeGenCXX/
D2010-07-23-DeclLoc.cpp44 typename SIZE::size_t _length; member in TRange
45 …ame SIZE::ptr_t location, typename SIZE::size_t length) : _location(location), _length(length) { } in TRange()
/external/webrtc/src/system_wrappers/source/
Dtrace_impl.cc81 _length(), in TraceImpl()
467 _length[_activeQueue][idx] = length; in AddMessageToList()
475 _length[_activeQueue][_nextFreeIdx[_activeQueue]] = strlen(warning_msg); in AddMessageToList()
477 warning_msg, _length[_activeQueue][idx]); in AddMessageToList()
536 _length[localQueueActive][idx]); in WriteToFile()
592 WebRtc_UWord16 length = _length[localQueueActive][idx]; in WriteToFile()
Dtrace_impl.h126 WebRtc_UWord16 _length[WEBRTC_TRACE_NUM_ARRAY][WEBRTC_TRACE_MAX_QUEUE]; variable
/external/chromium_org/content/renderer/media/
Drtc_video_decoder.cc240 inputImage._length); in Decode()
249 shm_buffer = GetSHM_Locked(inputImage._length); in Decode()
577 memcpy(shm_buffer->shm->memory(), input_image._buffer, input_image._length); in SaveToDecodeBuffers_Locked()
599 uint8_t* buffer = new uint8_t[input_image._length]; in SaveToPendingBuffers_Locked()
603 memcpy(buffer, input_image._buffer, input_image._length); in SaveToPendingBuffers_Locked()
605 buffer, input_image._length, input_image._length); in SaveToPendingBuffers_Locked()
628 scoped_ptr<SHMBuffer> shm_buffer = GetSHM_Locked(input_image._length); in MovePendingBuffersToDecodeBuffers()
Drtc_video_decoder_bridge_tv.cc87 media::DecoderBuffer::CopyFrom(input_image._buffer, input_image._length); in Decode()
Drtc_video_encoder.cc628 header.fragmentationLength[0] = image->_length; in ReturnEncodedImage()
/external/chromium_org/third_party/jinja2/
Druntime.py295 self._length = len(iterable)
297 self._length = None
338 if self._length is None:
345 self._length = len(iterable) + self.index0 + 1
346 return self._length
/external/lzma/CPP/7zip/UI/Common/
DUpdate.cpp54 UInt64 _length; member in COutMultiVolStream
76 _length = 0; in Init()
166 if (_absPos > _length) in Write()
167 _length = _absPos; in Write()
197 _absPos = _length + offset; in Seek()
234 _length = newSize; in SetSize()
/external/qemu/distrib/sdl-1.2.15/src/audio/ums/
DSDL_umsaudio.c180 samplesToWrite = this->hidden->playbuf._length/this->hidden->bytesPerSample; in UMS_PlayAudio()
328 this->hidden->playbuf._length = 0; in UMS_OpenAudio()
331 this->hidden->fillbuf._length = 0; in UMS_OpenAudio()
/external/strace/
Dstream.c788 if (m.struct.elem##_length < 0 || \
790 m.struct.elem##_offset + m.struct.elem##_length > len) \
793 m.struct.elem##_length, \
800 m.struct.elem##_length); \
/external/chromium_org/third_party/libevent/test/
Dregress.gen.h21 #define EVTAG_LEN(msg, member) ((msg)->member##_length)
/external/chromium/third_party/libevent/test/
Dregress.gen.h21 #define EVTAG_LEN(msg, member) ((msg)->member##_length)
/external/icu4c/common/
Dunistr.cpp1250 int32_t _length, in replace() argument
1259 return doReplace(start, _length, buffer, 0, isError ? 0 : count); in replace()
1265 int32_t _length = 0; in append() local
1267 U16_APPEND(buffer, _length, U16_MAX_LENGTH, srcChar, isError); in append()
1270 return isError ? *this : doReplace(length(), 0, buffer, 0, _length); in append()
/external/chromium/third_party/libevent/
Devent_rpcgen.py448 self._length = length
462 dcl = ['ev_uint8_t %s_data[%s];' % (self._name, self._length)]
489 name, self._length),
524 if not self._length:
/external/chromium_org/third_party/libevent/
Devent_rpcgen.py448 self._length = length
462 dcl = ['ev_uint8_t %s_data[%s];' % (self._name, self._length)]
489 name, self._length),
524 if not self._length:
/external/libvorbis/doc/
Da1-encapsulation-ogg.tex130 current packet be at position (3*long\_block\_length/4) -
131 (short\_block\_length/4).
/external/skia/tests/
DBitmapCopyTest.cpp165 explicit Coordinates(int _length): length(_length) in Coordinates()

12