Home | History | Annotate | Download | only in itf

Lines Matching refs:thiz

26     IPitch *thiz = (IPitch *) self;
28 if (!(thiz->mMinPitch <= pitch && pitch <= thiz->mMaxPitch)) {
31 interface_lock_poke(thiz);
32 thiz->mPitch = pitch;
33 interface_unlock_poke(thiz);
48 IPitch *thiz = (IPitch *) self;
49 interface_lock_peek(thiz);
50 SLpermille pitch = thiz->mPitch;
51 interface_unlock_peek(thiz);
70 IPitch *thiz = (IPitch *) self;
72 SLpermille minPitch = thiz->mMinPitch;
73 SLpermille maxPitch = thiz->mMaxPitch;
92 IPitch *thiz = (IPitch *) self;
93 thiz->mItf = &IPitch_Itf;
94 thiz->mPitch = 1000;
96 thiz->mMinPitch = -500;
97 thiz->mMaxPitch = 2000;