HomeSort by relevance Sort by last modified time
    Searched refs:MPH (Results 1 - 9 of 9) sorted by null

  /system/media/opensles/tools/hashgen/
part8.c 2 int MPH = hash_to_MPH[key];
3 if (MPH >= 0) {
4 assert(MPH < MPH_MAX);
5 SLInterfaceID trial = &SL_IID_array[MPH];
7 return MPH;
frag1.c 20 #include "MPH.h"
28 int MPH;
30 for (MPH = 0; MPH < MPH_MAX; ++MPH, ++x) {
frag3.c 14 unsigned MPH;
15 for (MPH = 0; MPH < MPH_MAX; ++MPH, ++xx) {
17 printf(" MPH_%s", interface_names[MPH]);
  /system/media/opensles/libopensles/
IID_to_MPH.c 17 /** \file IID_to_MPH.c Interface ID to MPH mapping */
20 #include "MPH.h"
26 /** \brief Map SLInterfaceID to its minimal perfect hash (MPH), or -1 if unknown */
184 int MPH = hash_to_MPH[key];
185 if (MPH >= 0) {
186 assert(MPH < MPH_MAX);
187 SLInterfaceID trial = &SL_IID_array[MPH];
189 return MPH;
IDynamicInterfaceManagement.c 23 // Parameter self is the DynamicInterface, and MPH specifies which interface to add.
25 static void HandleAdd(void *self, int MPH)
33 assert(0 <= MPH && MPH < MPH_MAX);
36 int index = class__->mMPH_to_index[MPH];
56 BoolHook expose = MPH_init_table[MPH].mExpose;
98 const SLInterfaceID iid = &SL_IID_array[MPH]; // equal but not == to the original IID
117 int MPH, index;
118 if ((0 > (MPH = IID_to_MPH(iid))) ||
120 // (NULL == MPH_init_table[MPH].mInit) |
    [all...]
IEffectSend.c 62 unsigned MPH = AUX_to_MPH[aux];
63 int index = MPH_to_OutputMix[MPH];
65 SL_LOGE("EffectSend aux=%u MPH=%u", aux, MPH);
IObject.c 324 int MPH, index;
325 if ((0 > (MPH = IID_to_MPH(iid))) ||
327 // (NULL == MPH_init_table[MPH].mInit) ||
328 (0 > (index = class__->mMPH_to_index[MPH]))) {
337 } else if ((MPH_MUTESOLO == MPH) && (SL_OBJECTID_AUDIOPLAYER == class__->mObjectID)
685 int MPH, index;
686 // We ignore without error any invalid MPH or index, but spec is unclear
687 if ((0 <= (MPH = IID_to_MPH(iid))) &&
689 // (NULL == MPH_init_table[MPH].mInit) ||
690 (0 <= (index = class__->mMPH_to_index[MPH]))) {
    [all...]
sles.c 30 bool IsInterfaceInitialized(IObject *this, unsigned MPH)
33 assert( /* (MPH_MIN <= MPH) && */ (MPH < (unsigned) MPH_MAX));
37 if (0 > (index = class__->mMPH_to_index[MPH])) {
184 int MPH, index;
185 if ((0 > (MPH = IID_to_MPH(iid))) ||
187 (NULL == MPH_init_table[MPH].mInit) ||
188 (0 > (index = class__->mMPH_to_index[MPH])) ||
193 SL_LOGE("class %s interface %lu required but unavailable MPH=%d",
194 class__->mName, i, MPH);
    [all...]
sles_allinclusive.h 53 #include "MPH.h"
195 unsigned char mMPH; // primary MPH for this interface, does not include any aliases
    [all...]

Completed in 290 milliseconds