HomeSort by relevance Sort by last modified time
    Searched refs:hInstance (Results 1 - 25 of 117) sorted by null

1 2 3 4 5

  /external/lzma/C/Util/LzmaLib/
LzmaLibExports.c 6 BOOL WINAPI DllMain(HINSTANCE hInstance, DWORD dwReason, LPVOID lpReserved)
8 hInstance = hInstance;
  /frameworks/av/media/libeffects/lvm/lib/Reverb/src/
LVREV_GetControlParameters.c 35 /* hInstance Instance handle */
40 /* LVREV_NULLADDRESS When hInstance or pControlParams is NULL */
46 LVREV_ReturnStatus_en LVREV_GetControlParameters(LVREV_Handle_t hInstance,
50 LVREV_Instance_st *pLVREV_Private = (LVREV_Instance_st *)hInstance;
56 if((hInstance == LVM_NULL) || (pControlParams == LVM_NULL))
LVREV_ClearAudioBuffers.c 35 /* hInstance Instance handle */
45 LVREV_ReturnStatus_en LVREV_ClearAudioBuffers(LVREV_Handle_t hInstance)
48 LVREV_Instance_st *pLVREV_Private = (LVREV_Instance_st *)hInstance;
55 if(hInstance == LVM_NULL)
LVREV_SetControlParameters.c 33 /* hInstance Instance handle */
38 /* LVREV_NULLADDRESS When hInstance or pNewParams is NULL */
45 LVREV_ReturnStatus_en LVREV_SetControlParameters(LVREV_Handle_t hInstance,
49 LVREV_Instance_st *pLVREV_Private = (LVREV_Instance_st *)hInstance;
55 if((hInstance == LVM_NULL) || (pNewParams == LVM_NULL))
  /external/v8/tools/gyp/test/win/rc-build/
hello.cpp 17 HINSTANCE hInstance,
18 HINSTANCE hPrevInstance,
23 LoadString(hInstance, IDS_APP_TITLE, szTitle, MAX_LOADSTRING);
25 LoadString(hInstance, IDC_HELLO, szWindowClass, MAX_LOADSTRING);
27 if (LoadIcon(hInstance, MAKEINTRESOURCE(IDI_SMALL)) != NULL) ++count;
28 if (LoadIcon(hInstance, MAKEINTRESOURCE(IDI_HELLO)) != NULL) ++count;
  /external/lzma/CPP/Windows/
ResourceString.cpp 11 extern HINSTANCE g_hInstance;
20 static CSysString MyLoadStringA(HINSTANCE hInstance, UINT resourceID)
28 len = ::LoadString(hInstance, resourceID, s.GetBuffer(size - 1), size);
39 static void MyLoadString2(HINSTANCE hInstance, UINT resourceID, UString &s)
46 len = ::LoadStringW(hInstance, resourceID, s.GetBuffer(size - 1), size);
75 void MyLoadString(HINSTANCE hInstance, UINT resourceID, UString &dest)
80 MultiByteToUnicodeString2(dest, MyLoadStringA(hInstance, resourceID));
    [all...]
ResourceString.h 11 void MyLoadString(HINSTANCE hInstance, UINT resourceID, UString &dest);
  /frameworks/av/media/libeffects/lvm/lib/StereoWidening/src/
LVCS_Equaliser.h 46 LVCS_ReturnStatus_en LVCS_EqualiserInit(LVCS_Handle_t hInstance,
49 LVCS_ReturnStatus_en LVCS_Equaliser(LVCS_Handle_t hInstance,
LVCS_BypassMix.h 67 LVCS_ReturnStatus_en LVCS_BypassMixInit(LVCS_Handle_t hInstance,
71 LVCS_ReturnStatus_en LVCS_BypassMixer(LVCS_Handle_t hInstance,
LVCS_StereoEnhancer.h 67 LVCS_ReturnStatus_en LVCS_SEnhancerInit(LVCS_Handle_t hInstance,
70 LVCS_ReturnStatus_en LVCS_StereoEnhancer(LVCS_Handle_t hInstance,
LVCS_Control.c 37 /* hInstance Instance handle */
48 LVCS_ReturnStatus_en LVCS_GetParameters(LVCS_Handle_t hInstance,
52 LVCS_Instance_t *pInstance =(LVCS_Instance_t *)hInstance;
68 /* hInstance Instance handle */
79 LVCS_ReturnStatus_en LVCS_Control(LVCS_Handle_t hInstance,
83 LVCS_Instance_t *pInstance =(LVCS_Instance_t *)hInstance;
97 err=LVCS_ReverbGeneratorInit(hInstance,pParams);
147 err=LVCS_SEnhancerInit(hInstance,
150 err=LVCS_ReverbGeneratorInit(hInstance,
153 err=LVCS_EqualiserInit(hInstance,
    [all...]
LVCS_ReverbGenerator.h 78 LVCS_ReturnStatus_en LVCS_ReverbGeneratorInit(LVCS_Handle_t hInstance,
81 LVCS_ReturnStatus_en LVCS_ReverbGenerator(LVCS_Handle_t hInstance,
LVCS_Process.c 58 /* hInstance Instance handle */
70 LVCS_ReturnStatus_en LVCS_Process_CS(LVCS_Handle_t hInstance,
76 LVCS_Instance_t *pInstance = (LVCS_Instance_t *)hInstance;
100 err=LVCS_StereoEnhancer(hInstance, /* Instance handle */
108 err=LVCS_ReverbGenerator(hInstance, /* Instance handle */
116 err=LVCS_Equaliser(hInstance, /* Instance handle */
123 err=LVCS_BypassMixer(hInstance, /* Instance handle */
151 /* hInstance Instance handle */
164 LVCS_ReturnStatus_en LVCS_Process(LVCS_Handle_t hInstance,
170 LVCS_Instance_t *pInstance =(LVCS_Instance_t *)hInstance;
    [all...]
LVCS_Equaliser.c 47 /* hInstance Instance Handle */
57 LVCS_ReturnStatus_en LVCS_EqualiserInit(LVCS_Handle_t hInstance,
62 LVCS_Instance_t *pInstance = (LVCS_Instance_t *)hInstance;
124 /* hInstance Instance Handle */
136 LVCS_ReturnStatus_en LVCS_Equaliser(LVCS_Handle_t hInstance,
141 LVCS_Instance_t *pInstance = (LVCS_Instance_t *)hInstance;
  /frameworks/av/media/libeffects/lvm/lib/Bundle/src/
LVM_API_Specials.c 37 /* hInstance Instance Handle */
52 LVM_Handle_t hInstance,
58 LVM_Instance_t *pInstance = (LVM_Instance_t *)hInstance;
89 LVM_ApplyNewSettings(hInstance);
127 /* hInstance Instance Handle */
139 LVM_ReturnStatus_en LVM_SetVolumeNoSmoothing( LVM_Handle_t hInstance,
142 LVM_Instance_t *pInstance =(LVM_Instance_t *)hInstance;
146 Error = LVM_SetControlParameters(hInstance,pParams);
LVM_Process.c 37 /* hInstance Instance handle */
49 /* LVM_NULLADDRESS When one of hInstance, pInData or pOutData is NULL */
55 LVM_ReturnStatus_en LVM_Process(LVM_Handle_t hInstance,
62 LVM_Instance_t *pInstance = (LVM_Instance_t *)hInstance;
81 if ((hInstance == LVM_NULL) || (pInData == LVM_NULL) || (pOutData == LVM_NULL))
114 Status = LVM_ApplyNewSettings(hInstance);
144 LVM_BufferIn(hInstance,
268 LVM_BufferOut(hInstance,
LVM_Buffers.c 39 /* hInstance - Instance handle */
52 void LVM_BufferManagedIn(LVM_Handle_t hInstance,
62 LVM_Instance_t *pInstance = (LVM_Instance_t *)hInstance;
205 /* hInstance - Instance handle */
217 void LVM_BufferUnmanagedIn(LVM_Handle_t hInstance,
223 LVM_Instance_t *pInstance = (LVM_Instance_t *)hInstance;
268 /* hInstance - Instance handle */
281 void LVM_BufferOptimisedIn(LVM_Handle_t hInstance,
288 LVM_Instance_t *pInstance = (LVM_Instance_t *)hInstance;
462 /* hInstance - Instance handle *
    [all...]
  /frameworks/av/media/libeffects/lvm/lib/SpectrumAnalyzer/lib/
LVPSA.h 132 /* hInstance = NULL Returns the memory requirements */
133 /* hInstance = Instance handle Returns the memory requirements and */
136 /* When this function is called for memory allocation (hInstance=NULL) the memory */
139 /* When the function is called for free (hInstance = Instance Handle) the memory */
143 /* hInstance Instance Handle */
152 LVPSA_RETURN LVPSA_Memory ( pLVPSA_Handle_t hInstance,
189 /* hInstance Instance Handle */
197 LVPSA_RETURN LVPSA_Control ( pLVPSA_Handle_t hInstance,
208 /* hInstance Instance Handle */
219 LVPSA_RETURN LVPSA_Process ( pLVPSA_Handle_t hInstance,
    [all...]
  /frameworks/av/media/libeffects/lvm/lib/Reverb/lib/
LVREV.h 149 /* hInstance = NULL Returns the memory requirements */
150 /* hInstance = Instance handle Returns the memory requirements and allocated */
153 /* When this function is called with hInstance = NULL the memory base address pointers */
156 /* When the function is called for freeing memory, hInstance = Instance Handle the */
161 /* hInstance Instance Handle */
175 LVREV_ReturnStatus_en LVREV_GetMemoryTable(LVREV_Handle_t hInstance,
220 /* hInstance Instance handle */
225 /* LVREV_NULLADDRESS When hInstance or pControlParams is NULL */
231 LVREV_ReturnStatus_en LVREV_GetControlParameters(LVREV_Handle_t hInstance,
243 /* hInstance Instance handle *
    [all...]
  /frameworks/av/media/libeffects/lvm/lib/StereoWidening/lib/
LVCS.h 238 /* hInstance = NULL Returns the memory requirements */
239 /* hInstance = Instance handle Returns the memory requirements and */
242 /* When this function is called for memory allocation (hInstance=NULL) it is */
249 /* When the function is called for free (hInstance = Instance Handle) the */
254 /* hInstance Instance Handle */
266 LVCS_ReturnStatus_en LVCS_Memory(LVCS_Handle_t hInstance,
279 /* hInstance set to NULL. In this case the algorithm returns the new instance */
283 /* by calling with hInstance = Instance Handle. In this case the memory table */
288 /* hInstance Instance handle */
318 /* hInstance Instance handle *
    [all...]
  /frameworks/av/media/libeffects/lvm/lib/Bass/lib/
LVDBE.h 278 /* hInstance = NULL Returns the memory requirements */
279 /* hInstance = Instance handle Returns the memory requirements and */
282 /* When this function is called for memory allocation (hInstance=NULL) the memory */
285 /* When the function is called for free (hInstance = Instance Handle) the memory */
289 /* hInstance Instance Handle */
301 LVDBE_ReturnStatus_en LVDBE_Memory(LVDBE_Handle_t hInstance,
314 /* hInstance set to NULL. In this case the algorithm returns the new instance */
318 /* by calling with hInstance = Instance Handle. In this case the memory table */
323 /* hInstance Instance handle */
353 /* hInstance Instance handle *
    [all...]
  /frameworks/av/media/libeffects/lvm/lib/Eq/lib/
LVEQNB.h 296 /* hInstance = NULL Returns the memory requirements */
297 /* hInstance = Instance handle Returns the memory requirements and */
300 /* When this function is called for memory allocation (hInstance=NULL) the memory */
303 /* When the function is called for free (hInstance = Instance Handle) the memory */
307 /* hInstance Instance Handle */
320 LVEQNB_ReturnStatus_en LVEQNB_Memory(LVEQNB_Handle_t hInstance,
333 /* hInstance set to NULL. In this case the algorithm returns the new instance */
337 /* by calling with hInstance = Instance Handle. In this case the memory table */
342 /* hInstance Instance handle */
374 /* hInstance Instance handle *
    [all...]
  /external/skia/src/views/win/
skia_win.cpp 18 static const TCHAR* register_class(HINSTANCE hInstance) {
29 wcex.hInstance = hInstance;
56 static int main_common(HINSTANCE hInstance, int show, int argc, char**argv);
58 int APIENTRY _tWinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPTSTR lpCmdLine,
74 int result = main_common(hInstance, nCmdShow, argc, argv)
    [all...]
  /frameworks/av/media/libeffects/lvm/lib/Bundle/lib/
LVM.h 362 /* hInstance = NULL Returns the memory requirements */
363 /* hInstance = Instance handle Returns the memory requirements and */
366 /* When this function is called for memory allocation (hInstance=NULL) the memory */
369 /* When the function is called for free (hInstance = Instance Handle) the memory */
373 /* hInstance Instance Handle */
386 LVM_ReturnStatus_en LVM_GetMemoryTable(LVM_Handle_t hInstance,
426 /* hInstance Instance handle */
436 LVM_ReturnStatus_en LVM_ClearAudioBuffers(LVM_Handle_t hInstance);
448 /* hInstance Instance handle */
453 /* LVM_NULLADDRESS when any of hInstance or pParams is NULL *
    [all...]
  /frameworks/av/media/libeffects/lvm/lib/SpectrumAnalyzer/src/
LVPSA_QPD.h 60 void LVPSA_QPD_Process ( void *hInstance,

Completed in 215 milliseconds

1 2 3 4 5