Searched refs:polyphony (Results 1 – 4 of 4) sorted by relevance
/external/sonivox/arm-hybrid-22k/host_src/ |
D | eas_main.c | 50 EAS_I32 polyphony; variable 257 polyphony = atoi(&argv[i][2]); in main() 258 if (polyphony < 1) in main() 259 polyphony = 1; in main() 276 if (polyphony > pLibConfig->maxVoices) in main() 277 polyphony = pLibConfig->maxVoices; in main() 291 polyphony = pLibConfig->maxVoices; in main()
|
/external/sonivox/arm-fm-22k/host_src/ |
D | eas_main.c | 50 EAS_I32 polyphony; variable 257 polyphony = atoi(&argv[i][2]); in main() 258 if (polyphony < 1) in main() 259 polyphony = 1; in main() 276 if (polyphony > pLibConfig->maxVoices) in main() 277 polyphony = pLibConfig->maxVoices; in main() 291 polyphony = pLibConfig->maxVoices; in main()
|
/external/sonivox/arm-wt-22k/host_src/ |
D | eas_main.c | 50 EAS_I32 polyphony; variable 260 polyphony = atoi(&argv[i][2]); in main() 261 if (polyphony < 1) in main() 262 polyphony = 1; in main() 279 if (polyphony > pLibConfig->maxVoices) in main() 280 polyphony = pLibConfig->maxVoices; in main() 294 polyphony = pLibConfig->maxVoices; in main()
|
/external/sonivox/jet_tools/JetCreator/ |
D | eas.py | 268 def SetPolyphony (self, polyphony): argument 270 eas_logger.debug('Call EAS_SetPolyphony: polyphony=%d' % polyphony) 272 result = eas_dll.EAS_SetPolyphony(self.eas.handle, self.handle, polyphony) 279 polyphony = c_int(0) 281 result = eas_dll.EAS_GetPolyphony(self.eas.handle, self.handle, byref(polyphony)) 284 eas_logger.debug('EAS_SetPolyphony: polyphony=%d' % polyphony.value) 285 return polyphony.value 834 def SetPolyphony (self, polyphony, synth_num=0): argument 836 …eas_logger.debug('Call EAS_SetSynthPolyphony: synth_num=%d, polyphony=%d' % (synth_num, polyphony)) 838 result = eas_dll.EAS_SetSynthPolyphony(self.handle, synth_num, polyphony) [all …]
|