OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:NUMBER_OF_SECONDS
(Results
1 - 3
of
3
) sorted by null
/hardware/bsp/intel/peripheral/libupm/examples/python/
ldt0028.py
27
NUMBER_OF_SECONDS
= 10
35
print 'For the next',
NUMBER_OF_SECONDS
, 'seconds,', \
38
for i in range(0,
NUMBER_OF_SECONDS
* SAMPLES_PER_SECOND):
44
for i in range(0,
NUMBER_OF_SECONDS
* SAMPLES_PER_SECOND):
49
print 'out of a total of',
NUMBER_OF_SECONDS
*SAMPLES_PER_SECOND, \
55
print 'each second for the last',
NUMBER_OF_SECONDS
, 'seconds.'
57
for i in range(0,
NUMBER_OF_SECONDS
):
/hardware/bsp/intel/peripheral/libupm/examples/c++/
ldt0028.cxx
35
const int
NUMBER_OF_SECONDS
= 10;
44
std::cout << "For the next " <<
NUMBER_OF_SECONDS
<< " seconds, "
47
uint16_t* buffer = new uint16_t[
NUMBER_OF_SECONDS
* SAMPLES_PER_SECOND];
48
for (int i=0; i <
NUMBER_OF_SECONDS
* SAMPLES_PER_SECOND; i++) {
55
for (int i=0; i <
NUMBER_OF_SECONDS
* SAMPLES_PER_SECOND; i++) {
62
<< "out of a total of " <<
NUMBER_OF_SECONDS
*SAMPLES_PER_SECOND
69
<<
NUMBER_OF_SECONDS
<< " seconds." << std::endl;
71
for (int i=0; i <
NUMBER_OF_SECONDS
; i++) {
/hardware/bsp/intel/peripheral/libupm/examples/javascript/
ldt0028.js
28
var
NUMBER_OF_SECONDS
= 10;
37
console.log("For the next " +
NUMBER_OF_SECONDS
+ " seconds, " +
41
for (var i=0; i <
NUMBER_OF_SECONDS
* SAMPLES_PER_SECOND; i++) {
48
for (var i=0; i <
NUMBER_OF_SECONDS
* SAMPLES_PER_SECOND; i++) {
55
console.log("out of a total of " +
NUMBER_OF_SECONDS
*SAMPLES_PER_SECOND +
62
console.log("each second for the last " +
NUMBER_OF_SECONDS
+ " seconds.");
64
for (var i=0; i <
NUMBER_OF_SECONDS
; i++) {
Completed in 1173 milliseconds