Lines Matching defs:count

102     uint32_t count;
103 if (!getUInt32(count))
106 for (uint32_t i = 0; i < count; i++) {
118 uint32_t count;
119 if (!getUInt32(count))
122 for (uint32_t i = 0; i < count; i++) {
134 uint32_t count;
135 if (!getUInt32(count))
138 for (uint32_t i = 0; i < count; i++) {
150 uint32_t count;
151 if (!getUInt32(count))
154 for (uint32_t i = 0; i < count; i++) {
166 uint32_t count;
167 if (!getUInt32(count))
170 for (uint32_t i = 0; i < count; i++) {
182 uint32_t count;
183 if (!getUInt32(count))
186 for (uint32_t i = 0; i < count; i++) {
198 uint32_t count;
199 if (!getUInt32(count))
202 for (uint32_t i = 0; i < count; i++) {
214 uint32_t count;
215 if (!getUInt32(count))
218 for (uint32_t i = 0; i < count; i++) {
331 void MtpDataPacket::putAInt8(const int8_t* values, int count) {
332 putUInt32(count);
333 for (int i = 0; i < count; i++)
337 void MtpDataPacket::putAUInt8(const uint8_t* values, int count) {
338 putUInt32(count);
339 for (int i = 0; i < count; i++)
343 void MtpDataPacket::putAInt16(const int16_t* values, int count) {
344 putUInt32(count);
345 for (int i = 0; i < count; i++)
349 void MtpDataPacket::putAUInt16(const uint16_t* values, int count) {
350 putUInt32(count);
351 for (int i = 0; i < count; i++)
356 size_t count = (values ? values->size() : 0);
357 putUInt32(count);
358 for (size_t i = 0; i < count; i++)
362 void MtpDataPacket::putAInt32(const int32_t* values, int count) {
363 putUInt32(count);
364 for (int i = 0; i < count; i++)
368 void MtpDataPacket::putAUInt32(const uint32_t* values, int count) {
369 putUInt32(count);
370 for (int i = 0; i < count; i++)
385 void MtpDataPacket::putAInt64(const int64_t* values, int count) {
386 putUInt32(count);
387 for (int i = 0; i < count; i++)
391 void MtpDataPacket::putAUInt64(const uint64_t* values, int count) {
392 putUInt32(count);
393 for (int i = 0; i < count; i++)
407 int count = 0;
410 count++;
414 putUInt8(count > 0 ? count + 1 : 0);
415 for (int i = 0; i < count; i++)
418 if (count > 0)