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

1 2 3 4

  /external/mesa3d/src/compiler/nir/
nir_vla.h 35 #define NIR_VLA(_type, _name, _length) \
36 _type *_name = alloca((_length) * sizeof *_name)
41 * _length is evaluated twice, so expressions with side-effects must be
44 #define NIR_VLA_FILL(_type, _name, _length, _byte) \
45 _type *_name = memset(alloca((_length) * sizeof *_name), _byte, (_length) * sizeof *_name)
50 * Just like NIR_VLA_FILL, _length is evaluated twice, so expressions with
53 #define NIR_VLA_ZERO(_type, _name, _length) \
54 NIR_VLA_FILL(_type, _name, _length, 0)
  /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
25 _length = _length_base + lengthOffset;
49 (GLsizei*)_length,
76 GLsizei* _length = (GLsizei*)0; local
83 _length = (GLsizei*)getPointer(_env, length_buf, &_lengthArray, &_lengthRemaining, &_lengthBufferOffset);
84 if (_length == NULL) {
86 _length = (GLsizei*)(_lengthBase + _lengthBufferOffset);
99 _length, _name
105 releasePointer(_env, _lengthArray, _length, JNI_TRUE);
  /external/webrtc/webrtc/video/
encoded_frame_callback_adapter.cc 30 const EncodedFrame frame(encodedImage._buffer, encodedImage._length,
  /external/webrtc/webrtc/modules/video_coding/codecs/test/
packet_manipulator.cc 44 // EncodedImage._length is how many that are filled with data.
47 encoded_image->_length,
71 encoded_image->_length = new_length;
78 encoded_image->_length);
packet_manipulator_unittest.cc 37 image_._length = kPacketDataLength;
63 EXPECT_EQ(expected_packet_data_length, image_._length);
82 image_._length = data_length;
127 image_._length = kDataLength;
videoprocessor.cc 243 encoded_frame_size_ = encoded_image._length;
253 stat.encoded_frame_length_in_bytes = encoded_image._length;
256 stat.bit_rate_in_kbps = encoded_image._length * bit_rate_factor_;
258 encoded_image._length / config_.networking_config.packet_size_in_bytes +
279 rtc::scoped_ptr<uint8_t[]> copied_buffer(new uint8_t[encoded_image._length]);
280 memcpy(copied_buffer.get(), encoded_image._buffer, encoded_image._length);
283 copied_image._size = copied_image._length;
304 last_frame_missing_ = copied_image._length == 0;
  /external/icu/icu4c/source/common/unicode/
unistr.h 113 # define UNICODE_STRING(cs, _length) icu::UnicodeString(TRUE, u ## cs, _length)
115 # define UNICODE_STRING(cs, _length) icu::UnicodeString(TRUE, (const char16_t*)u ## cs, _length)
    [all...]
  /external/libevent/include/event2/
rpc_compat.h 55 #define EVTAG_LEN(msg, member) ((msg)->member##_length)
  /external/webrtc/webrtc/modules/video_coding/
encoded_frame.cc 42 _length = 0;
44 VerifyAndAllocate(rhs._length);
45 memcpy(_buffer, rhs._buffer, rhs._length);
61 _length = 0;
63 VerifyAndAllocate(rhs._length);
64 memcpy(_buffer, rhs._buffer, rhs._length);
65 _length = rhs._length;
91 _length = 0;
frame_buffer.cc 143 _length = Length() + static_cast<uint32_t>(retVal);
194 _length = 0;
253 _length = _sessionInfo.BuildVP8FragmentationHeader(_buffer, _length,
257 _length -= bytes_removed;
261 _length -= bytes_removed;
encoded_frame.h 62 size_t Length() const { return _length; }
  /external/webrtc/webrtc/test/
fake_decoder.cc 72 for (size_t i = 0; i < input._length; ++i) {
74 if (i < input._length - sizeof(kStartCode) &&
fake_encoder.cc 113 bits_available -= std::min(encoded._length * 8, bits_available);
159 encoded_image._length > kSpsSize + kPpsSize + 1) {
168 encoded_image._length - (kSpsSize + kPpsSize);
179 fragmentation.fragmentationLength[0] = encoded_image._length;
185 for (size_t i = 0; i < encoded_image._length; ++i) {
  /external/webrtc/webrtc/modules/video_coding/codecs/vp8/test/
vp8_impl_unittest.cc 52 if (encoded_frame_->_size < encoded_frame._length) {
54 frame_buffer_.reset(new uint8_t[encoded_frame._length]);
56 encoded_frame_->_size = encoded_frame._length;
58 memcpy(encoded_frame_->_buffer, encoded_frame._buffer, encoded_frame._length);
59 encoded_frame_->_length = encoded_frame._length;
164 return encoded_frame_._length;
  /kernel/tests/net/test/
cstruct.py 95 return cls._length
137 _length = CalcSize(_format) variable in class:Struct.CStruct
151 numfields = len(struct.unpack(_format, "\x00" * _length))
162 data = data[:self._length]
189 if len(tuple_or_bytes) < self._length:
191 (self._name, self._length, len(tuple_or_bytes)))
223 return cls._length
  /external/ImageMagick/Magick++/lib/
Pixels.cpp 137 return(_length);
153 _length=0;
189 _length=width_*height_*map_.length();
190 _size=_length*size;
205 _length=0;
  /external/webrtc/webrtc/modules/video_coding/codecs/vp8/
vp8_sequence_coder.cc 56 encoded_image_._length = encoded_image._length;
58 if (fwrite(encoded_image._buffer, 1, encoded_image._length,
59 encoded_file_) != encoded_image._length) {
63 encoded_bytes_ += encoded_image_._length;
vp8_impl.cc     [all...]
  /external/clang/test/CodeGenCXX/
2010-07-23-DeclLoc.cpp 45 typename SIZE::size_t _length; member in class:TRange
46 TRange(typename SIZE::ptr_t location, typename SIZE::size_t length) : _location(location), _length(length) { }
  /external/webrtc/webrtc/
video_frame.h 178 : _buffer(buffer), _length(length), _size(size) {}
200 size_t _length; member in class:webrtc::EncodedImage
  /external/scapy/scapy/contrib/
lldp.py 310 BitFieldLenField('_length', None, 9, length_of='id',
313 XStrLenField('id', '', length_from=lambda pkt: pkt._length - 1)
359 BitFieldLenField('_length', None, 9, length_of='id',
362 StrLenField('id', '', length_from=lambda pkt: pkt._length - 1)
387 BitField('_length', 0x02, 9),
395 if conf.contribs['LLDP'].strict_mode() and self._length != 2:
397 '{}'.format(self._length))
414 BitField('_length', 0x00, 9),
424 if conf.contribs['LLDP'].strict_mode() and self._length != 0:
426 '{}'.format(self._length))
    [all...]
  /external/webrtc/webrtc/modules/video_coding/codecs/i420/
i420.cc 117 _encodedImage._length = ret_length + kI420HeaderSize;
178 if (inputImage._length <= 0) {
187 if (inputImage._length < kI420HeaderSize) {
201 if (req_length > inputImage._length) {
  /external/ImageMagick/Magick++/lib/Magick++/
Pixels.h 118 ::ssize_t _length; // Length of the data member in class:Magick::PixelData
  /external/webrtc/webrtc/modules/video_coding/codecs/vp9/
vp9_impl.cc 654 encoded_image_._length = 0;
664 memcpy(&encoded_image_._buffer[encoded_image_._length], pkt->data.frame.buf,
666 frag_info.fragmentationOffset[part_idx] = encoded_image_._length;
671 encoded_image_._length += static_cast<uint32_t>(pkt->data.frame.sz);
677 static_cast<unsigned int>(encoded_image_._length),
680 assert(encoded_image_._length <= encoded_image_._size);
689 if (encoded_image_._length > 0) {
690 TRACE_COUNTER1("webrtc", "EncodedFrameSize", encoded_image_._length);
    [all...]

Completed in 625 milliseconds

1 2 3 4