HomeSort by relevance Sort by last modified time
    Searched refs:_length (Results 1 - 25 of 63) sorted by null

1 2 3

  /external/arduino/hardware/arduino/cores/arduino/
WString.cpp 29 getBuffer( _length = strlen( value ) );
36 getBuffer( _length = value._length );
43 _length = 1;
53 _length = 1;
65 getBuffer( _length = strlen(buf) );
74 getBuffer( _length = strlen(buf) );
83 getBuffer( _length = strlen(buf) );
92 getBuffer( _length = strlen(buf) );
105 if(_length > loc)
    [all...]
WString.h 40 ~String() { free(_buffer); _length = _capacity = 0;} //added _length = _capacity = 0;
70 const unsigned int length( ) const { return _length; }
90 unsigned int _length; // the String length (not counting the '\0') member in class:String
103 if (_buffer == NULL) _length = _capacity = 0;
  /external/chromium_org/third_party/webrtc/modules/video_coding/main/source/
timestamp_map.cc 30 _length = length;
52 _nextAddIx = (_nextAddIx + 1) % _length;
57 _nextPopIx = (_nextPopIx + 1) % _length;
73 _nextPopIx = (_nextPopIx + 1) % _length;
79 assert(_nextPopIx < _length && _nextPopIx >= 0);
84 _nextPopIx = (_nextPopIx + 1) % _length;
88 assert(_nextPopIx < _length && _nextPopIx >= 0);
timestamp_map.h 47 int32_t _length; member in class:webrtc::VCMTimestampMap
encoded_frame.cc 42 _length = 0;
45 VerifyAndAllocate(rhs._length);
46 memcpy(_buffer, rhs._buffer, rhs._length);
61 _length = 0;
64 VerifyAndAllocate(rhs._length);
65 memcpy(_buffer, rhs._buffer, rhs._length);
66 _length = rhs._length;
96 _length = 0;
frame_buffer.cc 145 _length = Length() + static_cast<uint32_t>(retVal);
191 _length = 0;
267 _length =
268 _sessionInfo.BuildVP8FragmentationHeader(_buffer, _length,
272 _length -= bytes_removed;
276 _length -= bytes_removed;
encoded_frame.h 59 uint32_t Length() const {return _length;}
  /external/lzma/CPP/Common/
MyString.h 136 Delete(i, _length - i);
143 sizeof(T) * (_length - srcIndex + 1));
159 int _length; member in class:CStringBase
169 if (newCapacity > kMaxStringSize || newCapacity < _length)
175 for (int i = 0; i < _length; i++)
180 _chars[_length] = 0;
186 int freeSize = _capacity - _length - 1;
203 if (index > _length)
204 index = _length;
208 CStringBase(): _chars(0), _length(0), _capacity(0) { SetCapacity(3); }
    [all...]
  /frameworks/native/opengl/tools/glgen/stubs/gles11/
glDebugMessageInsertKHR.cpp 9 jint _length = 0; local
18 _length = _env->GetStringUTFLength(buf);
25 (GLsizei)_length,
glGetActiveUniformBlockName.cpp 10 GLsizei* _length = (GLsizei*)0; local
30 _length = _length_base + lengthOffset;
53 (GLsizei*)_length,
80 GLsizei* _length = (GLsizei*)0; local
87 _length = (GLsizei*)getPointer(_env, length_buf, &_lengthArray, &_lengthRemaining, &_lengthBufferOffset);
88 if (_length == NULL) {
90 _length = (GLsizei*)(_lengthBase + _lengthBufferOffset);
103 _length, _name
109 releasePointer(_env, _lengthArray, _length, JNI_TRUE);
  /external/chromium_org/third_party/webrtc/video/
encoded_frame_callback_adapter.cc 32 encodedImage._length,
  /external/chromium_org/third_party/webrtc/modules/video_coding/codecs/test/
packet_manipulator.cc 43 // EncodedImage._length is how many that are filled with data.
46 encoded_image->_length,
70 encoded_image->_length = new_length;
77 encoded_image->_length);
packet_manipulator_unittest.cc 37 image_._length = kPacketDataLength;
67 EXPECT_EQ(expected_packet_data_length, static_cast<int>(image_._length));
86 image_._length = data_length;
132 image_._length = kDataLength;
videoprocessor.cc 241 encoded_frame_size_ = encoded_image->_length;
249 stat.encoded_frame_length_in_bytes = encoded_image->_length;
252 stat.bit_rate_in_kbps = encoded_image->_length * bit_rate_factor_;
253 stat.total_packets = encoded_image->_length /
293 last_frame_missing_ = encoded_image->_length == 0;
  /external/chromium_org/third_party/icu/source/common/unicode/
unistr.h 115 # define UNICODE_STRING(cs, _length) icu::UnicodeString(TRUE, (const UChar *)U_DECLARE_UTF16(cs), _length)
117 # define UNICODE_STRING(cs, _length) icu::UnicodeString(TRUE, (const UChar *)L ## cs, _length)
119 # define UNICODE_STRING(cs, _length) icu::UnicodeString(TRUE, (const UChar *)cs, _length)
121 # define UNICODE_STRING(cs, _length) icu::UnicodeString(cs, _length, US_INV)
    [all...]
  /external/icu/icu4c/source/common/unicode/
unistr.h 115 # define UNICODE_STRING(cs, _length) icu::UnicodeString(TRUE, (const UChar *)U_DECLARE_UTF16(cs), _length)
117 # define UNICODE_STRING(cs, _length) icu::UnicodeString(TRUE, (const UChar *)L ## cs, _length)
119 # define UNICODE_STRING(cs, _length) icu::UnicodeString(TRUE, (const UChar *)cs, _length)
121 # define UNICODE_STRING(cs, _length) icu::UnicodeString(cs, _length, US_INV)
    [all...]
  /external/chromium_org/third_party/webrtc/
video_frame.h 188 _length(0),
200 _length(length),
212 uint32_t _length; member in class:webrtc::EncodedImage
  /external/chromium_org/third_party/webrtc/test/
fake_decoder.cc 66 for (size_t i = 0; i < input._length; ++i) {
68 if (i < input._length - sizeof(kStartCode) &&
fake_encoder.cc 93 encoded._length = 0;
100 bits_available -= encoded._length * 8;
141 encoded_image._length > kSpsSize + kPpsSize + 1) {
150 encoded_image._length - (kSpsSize + kPpsSize);
161 fragmentation.fragmentationLength[0] = encoded_image._length;
167 for (size_t i = 0; i < encoded_image._length; ++i) {
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/ui/
SuggestBox.js 59 this._length = 0;
212 if (!this._length)
221 index = (this._length + index) % this._length;
223 index = Number.constrain(index, 0, this._length - 1);
265 this._length = items.length;
  /external/chromium_org/third_party/webrtc/modules/video_coding/codecs/vp8/
vp8_sequence_coder.cc 55 encoded_image_._length = encoded_image._length;
57 if (fwrite(encoded_image._buffer, 1, encoded_image._length,
58 encoded_file_) != encoded_image._length) {
62 encoded_bytes_ += encoded_image_._length;
vp8_impl.cc 448 encoded_image_._length = 0;
458 memcpy(&encoded_image_._buffer[encoded_image_._length],
461 frag_info.fragmentationOffset[part_idx] = encoded_image_._length;
465 encoded_image_._length += pkt->data.frame.sz;
466 assert(encoded_image_._length <= encoded_image_._size);
485 if (encoded_image_._length > 0) {
486 TRACE_COUNTER1("webrtc", "EncodedFrameSize", encoded_image_._length);
610 if (input_image._buffer == NULL && input_image._length > 0) {
691 if (input_image._length == 0) {
696 input_image._length,
    [all...]
  /external/clang/test/CodeGenCXX/
2010-07-23-DeclLoc.cpp 44 typename SIZE::size_t _length; member in class:TRange
45 TRange(typename SIZE::ptr_t location, typename SIZE::size_t length) : _location(location), _length(length) { }
  /external/chromium_org/third_party/webrtc/modules/video_coding/codecs/i420/main/source/
i420.cc 116 _encodedImage._length = ret_length + kI420HeaderSize;
176 if (inputImage._length <= 0) {
185 if (inputImage._length < kI420HeaderSize) {
200 if (req_length > inputImage._length) {
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/network/
ResourceWebSocketFrameView.js 128 this._length = frame.text.length;
135 WebInspector.SortableDataGridNode.call(this, {data: this._dataText, length: this._length, time: this._timeText});

Completed in 622 milliseconds

1 2 3