Home
last modified time | relevance | path

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

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