Home
last modified time | relevance | path

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

/hardware/bsp/intel/peripheral/libupm/examples/c++/
Dwt5001.cxx105 uint16_t numf = 0; in main() local
106 if (mp3->getNumFiles(upm::WT5001::SD, &numf)) in main()
107 cout << "The number of files on the SD card is: " << int(numf) << endl; in main()
/hardware/bsp/intel/peripheral/libupm/examples/java/
DWT5001Sample.java98 int numf[] = new int[1]; in main() local
99 if (mp3.getNumFiles(upm_wt5001.WT5001.WT5001_PLAYSOURCE_T.SD, numf)) in main()
100 System.out.println("The number of files on the SD card is: " + numf[0]); in main()
/hardware/bsp/intel/peripheral/libupm/examples/python/
Dwt5001.py74 numf = upmWt5001.uint16Array(0) variable
75 myMP3Player.getNumFiles(upmWt5001.WT5001.SD, numf)
76 print "The number of files on the SD card is: " + str(numf.__getitem__(0))
/hardware/bsp/intel/peripheral/libupm/examples/javascript/
Dwt5001.js93 var numf = new MP3Player.uint16Array(0); variable
94 myMP3Player.getNumFiles(MP3Player.WT5001.SD, numf);
95 console.log("The number of files on the SD card is: " + numf.getitem(0));
/hardware/bsp/intel/peripheral/libupm/src/wt5001/
Djavaupm_wt5001.i9 %apply uint16_t *OUTPUT { uint16_t *numf };
Dwt5001.h310 bool getNumFiles(WT5001_PLAYSOURCE_T psrc, uint16_t *numf);
Dwt5001.cxx476 bool WT5001::getNumFiles(WT5001_PLAYSOURCE_T psrc, uint16_t *numf) in getNumFiles() argument
513 *numf = (buf[0] << 8) | buf[1]; in getNumFiles()