Home
last modified time | relevance | path

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

/dports/audio/audacity/audacity-Audacity-3.1.3/src/effects/VST/
H A DVSTEffect.h272 void callSetChunk(bool isPgm, int len, void *buf);
273 void callSetChunk(bool isPgm, int len, void *buf, VstPatchChunkInfo *info);
H A DVSTEffect.cpp2609 void VSTEffect::callSetChunk(bool isPgm, int len, void *buf) in callSetChunk() argument
2617 info.numElements = isPgm ? mAEffect->numParams : mAEffect->numPrograms; in callSetChunk()
2619 callSetChunk(isPgm, len, buf, &info); in callSetChunk()
2622 void VSTEffect::callSetChunk(bool isPgm, int len, void *buf, VstPatchChunkInfo *info) in callSetChunk() argument
2624 if (isPgm) in callSetChunk()
2642 callDispatcher(effSetChunk, isPgm ? 1 : 0, len, buf, 0.0); in callSetChunk()
2646 slave->callSetChunk(isPgm, len, buf, info); in callSetChunk()
/dports/biology/bbmap/bbmap/current/fileIO/
H A DFileFormat.java555 return isPgm(ext); in isPgmFile()
576 public static boolean isPgm(String ext){ in isPgm() method in FileFormat