Searched refs:dp (Results 26 - 39 of 39) sorted by relevance

12

/hardware/ti/omap3/omx/audio/src/openmax_il/g726_enc/tests/
H A DG726EncTest.c189 int DebugFree(void *dp, int line, char *s){ argument
191 if(dp==NULL){
196 if(arr[q]==dp){
197 printf("__ Deleting %d bytes on address %p, line %d file %s\n", bytes[q],dp, line, s);
198 free(dp);
199 dp = NULL;
/hardware/ti/omap3/omx/audio/src/openmax_il/wbamr_dec/tests/
H A DWBAmrDecTest.c155 int myfree(void *dp, int line, char *s);
2091 int myfree(void *dp, int line, char *s){ argument
2093 if (dp==NULL){
2099 if(arr[q]==dp){
2100 printf("Deleting %d bytes on address %p, line %d file %s\n", bytes[q],dp, line, s);
2101 free(dp);
2102 dp = NULL;
/hardware/ti/omap3/omx/audio/src/openmax_il/g711_dec/src/
H A DOMX_G711Decoder.c86 void myfree(void *dp, int line, char *s);
2026 void myfree(void *dp, int line, char *s){ argument
2029 if(arr[q]==dp){
2030 G711DEC_PRINT("Deleting %d bytes on address %p, line %d file %s\n", bytes[q],dp, line, s);
2031 free(dp);
2032 dp = NULL;
/hardware/ti/omap3/omx/audio/src/openmax_il/nbamr_enc/tests/
H A DAmrEncTest.c221 int mynewfree(void *dp, int line, char *s){ argument
223 if(dp==NULL){
228 if(arr[q]==dp){
229 APP_IPRINT("Deleting %d bytes on address %p, line %d file %s\n", bytes[q],dp, line, s);
230 free(dp);
231 dp = NULL;
/hardware/ti/omap3/omx/audio/src/openmax_il/wbamr_dec/src/
H A DOMX_WbAmrDecoder.c2154 int myfree(void *dp, int line, char *s){ argument
2156 if (dp==NULL){
2162 if(arr[q]==dp){
2163 OMXDBG_PRINT(stderr, PRINT, 1, 0, "Deleting %d bytes on address %p, line %d file %s\n", bytes[q],dp, line, s);
2164 free(dp);
2165 dp = NULL;
/hardware/ti/omap3/omx/audio/src/openmax_il/wbamr_enc/tests/
H A DWbAmrEncTest.c203 int mynewfree(void *dp, int line, char *s) { argument
206 if (dp == NULL) {
212 if (arr[q] == dp) {
213 APP_IPRINT("Deleting %d bytes on address %p, line %d file %s\n", bytes[q], dp, line, s);
214 free(dp);
215 dp = NULL;
/hardware/ti/omap3/omx/audio/src/openmax_il/wma_dec/tests/
H A DWmaDecTest.c116 int myfree(void *dp, int line, char *s);
1907 int myfree(void *dp, int line, char *s) argument
1911 if(arr[q]==dp){
1912 printf("Deleting %d bytes on address %p, line %d file %s\n", bytes[q],dp, line, s);
1913 free(dp);
1914 dp = NULL;
/hardware/broadcom/wlan/bcmdhd/dhdutil/
H A Dbcmutils.c2161 char *dp; local
2167 dp = varbuf;
2185 *dp++ = 0;
2189 *dp++ = varbuf[n];
2192 buf_len = (unsigned int)(dp - varbuf);
2200 while (dp < varbuf + n)
2201 *dp++ = 0;
/hardware/ti/omap3/omx/audio/src/openmax_il/g726_enc/src/
H A DOMX_G726Enc_Utils.c94 int DebugFree(void *dp, int line, char *s);
121 int DebugFree(void *dp, int line, char *s){ argument
123 if(dp==NULL){
128 if(arr[q]==dp){
129 printf("__ Deleting %d bytes on address %p, line %d file %s\n", bytes[q],dp, line, s);
132 free(dp);
133 dp = NULL;
H A DOMX_G726Encoder.c98 extern int DebugFree(void *dp, int line, char *s);
/hardware/ti/omap3/omx/audio/src/openmax_il/nbamr_dec/src/
H A DOMX_AmrDecoder.c2277 int myfree(void *dp, int line, char *s){ argument
2280 if(arr[q]==dp){
2281 OMXDBG_PRINT(stderr, ERROR, 4, 0, "Deleting %d bytes on address %p, line %d file %s\n", bytes[q],dp, line, s);
2282 free(dp);
2283 dp = NULL;
2290 OMXDBG_PRINT(stderr, ERROR, 4, 0, "\n\n%p Pointer not found. Line:%d File%s!!\n\n",dp, line, s);
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/encoder/
H A Donyx_if.c5122 unsigned char *dp = dest; local
5124 cpi->partition_d[0] = dp;
5125 dp += dest_size/10; /* reserve 1/10 for control partition */
5126 cpi->partition_d_end[0] = dp;
5130 cpi->partition_d[i + 1] = dp;
5131 dp += tok_part_buff_size;
5132 cpi->partition_d_end[i + 1] = dp;
/hardware/ti/omap3/omx/audio/src/openmax_il/aac_enc/tests/
H A DAacEncTest.c190 int myfree(void *dp, ListMember** ListHeader);
2495 * @param dp Dinamic memory pointer to be freed
2503 int myfree(void *dp, ListMember** ListHeader) argument
2506 error = FreeListMember(dp, ListHeader);
2507 /* free(dp); */
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/encoder/
H A Dvp9_encodeframe.c483 int dp; local
513 dp = xd->plane[0].dst.stride;
516 dp = 0;
534 d + y_idx * dp + x_idx, dp, &sse, &sum);

Completed in 1022 milliseconds

12