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

1 2 3 4 5

  /external/webkit/Source/ThirdParty/ANGLE/src/compiler/
ossource_posix.cpp 36 bool OS_SetTLSValue(OS_TLSIndex nIndex, void *lpvValue)
38 if (nIndex == OS_INVALID_TLS_INDEX) {
43 if (pthread_setspecific(nIndex, lpvValue) == 0)
50 bool OS_FreeTLSIndex(OS_TLSIndex nIndex)
52 if (nIndex == OS_INVALID_TLS_INDEX) {
60 if (pthread_key_delete(nIndex) == 0)
ossource_nspr.cpp 28 bool OS_SetTLSValue(OS_TLSIndex nIndex, void *lpvValue)
30 if (nIndex == OS_INVALID_TLS_INDEX) {
35 return PR_SetThreadPrivate(nIndex, lpvValue) == 0;
38 bool OS_FreeTLSIndex(OS_TLSIndex nIndex)
ossource_win.cpp 32 bool OS_SetTLSValue(OS_TLSIndex nIndex, void *lpvValue)
34 if (nIndex == OS_INVALID_TLS_INDEX) {
39 if (TlsSetValue(nIndex, lpvValue))
46 bool OS_FreeTLSIndex(OS_TLSIndex nIndex)
48 if (nIndex == OS_INVALID_TLS_INDEX) {
53 if (TlsFree(nIndex))
osinclude.h 55 bool OS_SetTLSValue(OS_TLSIndex nIndex, void *lpvValue);
56 bool OS_FreeTLSIndex(OS_TLSIndex nIndex);
58 inline void* OS_GetTLSValue(OS_TLSIndex nIndex)
60 ASSERT(nIndex != OS_INVALID_TLS_INDEX);
62 return PR_GetThreadPrivate(nIndex);
64 return TlsGetValue(nIndex);
66 return pthread_getspecific(nIndex);
  /hardware/ti/omap4xxx/domx/omx_core/inc/
OMX_CoreExt.h 64 OMX_INDEXTYPE nIndex; /**< the index the callback is requested for */
OMX_Core_Wrapper.h 56 OMX_IN OMX_U32 nIndex);
OMX_Component.h 367 OMX_IN OMX_INDEXTYPE nIndex,
376 OMX_IN OMX_INDEXTYPE nIndex,
385 OMX_IN OMX_INDEXTYPE nIndex,
570 OMX_IN OMX_U32 nIndex);
  /hardware/ti/omap4xxx/domx/omx_proxy_component/omx_camera/src/
omx_proxy_camera.c 396 OMX_U16 nIndex = 0;
409 for (nIndex = 0; eError != OMX_ErrorNoMore; nIndex++)
411 param.nIndex = nIndex;
423 dcc_dir[nIndex] =
427 PROXY_assert(dcc_dir[nIndex] != NULL,
429 strcpy(dcc_dir[nIndex], DCC_PATH);
430 strncat(dcc_dir[nIndex], (OMX_STRING) param.sDCCURI, MAX_URI_LENGTH);
431 strcat(dcc_dir[nIndex], "/");
    [all...]
  /hardware/ti/omap3/omx/video/src/openmax_il/prepost_processor/src/
OMX_VPP_Utils.c     [all...]
  /hardware/ti/omap4xxx/domx/omx_core/src/
OMX_Core_Wrapper.c 108 cComponentName, OMX_IN OMX_U32 nNameLength, OMX_IN OMX_U32 nIndex)
113 return OMX_ComponentNameEnum(cComponentName, nNameLength, nIndex);
  /device/samsung/crespo/sec_mm/sec_omx/sec_omx_core/
SEC_OMX_Core.h 47 OMX_IN OMX_U32 nIndex);
SEC_OMX_Core.c 117 OMX_IN OMX_U32 nIndex)
123 if (nIndex >= gComponentNum) {
128 sprintf(cComponentName, "%s", gComponentList[nIndex].component.componentName);
  /device/samsung/crespo/sec_mm/sec_omx/sec_omx_component/video/dec/
SEC_OMX_Vdec.h 121 OMX_IN OMX_INDEXTYPE nIndex,
  /device/samsung/crespo/sec_mm/sec_omx/sec_omx_component/video/enc/
SEC_OMX_Venc.h 129 OMX_IN OMX_INDEXTYPE nIndex,
  /device/samsung/crespo/sec_mm/sec_omx/sec_omx_include/khronos/
OMX_Component.h 367 OMX_IN OMX_INDEXTYPE nIndex,
376 OMX_IN OMX_INDEXTYPE nIndex,
385 OMX_IN OMX_INDEXTYPE nIndex,
570 OMX_IN OMX_U32 nIndex);
OMX_Image.h 133 * nIndex : Indicates the enumeration index for the format from
144 OMX_U32 nIndex;
OMX_Other.h 328 OMX_U32 nIndex; /**< Indicates the enumeration index for the format from 0x0 to N-1 */
  /frameworks/native/include/media/openmax/
OMX_Component.h 384 OMX_IN OMX_INDEXTYPE nIndex,
393 OMX_IN OMX_INDEXTYPE nIndex,
402 OMX_IN OMX_INDEXTYPE nIndex,
587 OMX_IN OMX_U32 nIndex);
OMX_Image.h 150 * nIndex : Indicates the enumeration index for the format from
161 OMX_U32 nIndex;
OMX_Other.h 345 OMX_U32 nIndex; /**< Indicates the enumeration index for the format from 0x0 to N-1 */
  /hardware/qcom/media/mm-core/omxcore/inc/
OMX_Component.h 367 OMX_IN OMX_INDEXTYPE nIndex,
376 OMX_IN OMX_INDEXTYPE nIndex,
385 OMX_IN OMX_INDEXTYPE nIndex,
570 OMX_IN OMX_U32 nIndex);
OMX_Image.h 133 * nIndex : Indicates the enumeration index for the format from
144 OMX_U32 nIndex;
OMX_Other.h 328 OMX_U32 nIndex; /**< Indicates the enumeration index for the format from 0x0 to N-1 */
  /hardware/ti/omap3/omx/system/src/openmax_il/omx_core/inc/
OMX_Component.h 367 OMX_IN OMX_INDEXTYPE nIndex,
376 OMX_IN OMX_INDEXTYPE nIndex,
385 OMX_IN OMX_INDEXTYPE nIndex,
570 OMX_IN OMX_U32 nIndex);
OMX_Image.h 133 * nIndex : Indicates the enumeration index for the format from
144 OMX_U32 nIndex;

Completed in 339 milliseconds

1 2 3 4 5