Searched refs:numPackets (Results 1 - 1 of 1) sorted by relevance

/frameworks/wilhelm/tests/sandbox/
H A Dxaplay.c44 size_t numPackets; // number of packets to play, defaults to totalPackets - firstPacket variable
281 numPackets = atoi(&arg[2]);
350 if (numPackets == 0) {
351 numPackets = totalPackets - firstPacket;
352 } else if (firstPacket + numPackets > totalPackets) {
353 fprintf(stderr, "-n%zu ignored\n", numPackets);
354 numPackets = totalPackets - firstPacket;
356 lastPacket = firstPacket + numPackets;

Completed in 67 milliseconds