Searched defs:array (Results 1 - 6 of 6) sorted by relevance

/hardware/qcom/media/libstagefrighthw/
H A DQComOMXPlugin.cpp117 OMX_U8 **array = new OMX_U8 *[numRoles]; local
119 array[i] = new OMX_U8[OMX_MAX_STRINGNAME_SIZE];
124 const_cast<OMX_STRING>(name), &numRoles2, array);
135 String8 s((const char *)array[i]);
138 delete[] array[i];
139 array[i] = NULL;
142 delete[] array;
143 array = NULL;
/hardware/samsung_slsi/exynos5/libstagefrighthw/
H A DExynos_OMX_Plugin.cpp119 OMX_U8 **array = new OMX_U8 *[numRoles]; local
121 array[i] = new OMX_U8[OMX_MAX_STRINGNAME_SIZE];
126 const_cast<OMX_STRING>(name), &numRoles2, array);
132 String8 s((const char *)array[i]);
135 delete[] array[i];
136 array[i] = NULL;
139 delete[] array;
140 array = NULL;
/hardware/ti/omap3/libstagefrighthw/
H A DTIOMXPlugin.cpp117 OMX_U8 **array = new OMX_U8 *[numRoles]; local
119 array[i] = new OMX_U8[OMX_MAX_STRINGNAME_SIZE];
124 const_cast<OMX_STRING>(name), &numRoles2, array);
132 String8 s((const char *)array[i]);
136 delete[] array[i];
137 array[i] = NULL;
140 delete[] array;
141 array = NULL;
/hardware/ti/omap4xxx/libstagefrighthw/
H A DTIOMXPlugin.cpp126 OMX_U8 **array = new OMX_U8 *[numRoles]; local
128 array[i] = new OMX_U8[OMX_MAX_STRINGNAME_SIZE];
132 const_cast<OMX_STRING>(name), &numRoles, array);
136 String8 s((const char *)array[i]);
140 delete[] array[i];
141 array[i] = NULL;
144 delete[] array;
145 array = NULL;
/hardware/ti/omap3/omx/video/src/openmax_il/prepost_processor/src/
H A DOMX_VPP_Utils.c1004 OMX_U16 array[100]; /*Used to pass to Fill_LCMLInitParams*/ local
1138 eError = VPP_Fill_LCMLInitParams(pHandle,array, pLcmlDsp);
/hardware/broadcom/wlan/bcmdhd/dhdutil/
H A Dbcmutils.c1343 uint8 *pdata, /* pointer to array of data to process */
1416 uint8 *pdata, /* pointer to array of data to process */
2266 /* Set bit in byte array. */
2268 setbit(void *array, uint bit) argument
2270 ((uint8 *)array)[bit / NBBY] |= 1 << (bit % NBBY);
2273 /* Clear bit in byte array. */
2275 clrbit(void *array, uint bit) argument
2277 ((uint8 *)array)[bit / NBBY] &= ~(1 << (bit % NBBY));
2280 /* Test if bit is set in byte array. */
2282 isset(const void *array, uin argument
2289 isclr(const void *array, uint bit) argument
[all...]

Completed in 134 milliseconds