Searched refs:me (Results 1 - 13 of 13) sorted by relevance

/hardware/ti/omap3/omx/system/src/openmax_il/perf/src/
H A Dperf_log.c31 void __PERF_LOG_flush(PERF_LOG_Private *me) argument
34 if (me->puPtr > me->puBuffer)
37 if (!me->fOut) me->fOut = fopen(me->fOutFile, "wb");
39 if (me->fOut)
41 fwrite(me->puBuffer, me->puPtr - me
60 PERF_LOG_Private *me = perf->pLog; local
102 PERF_LOG_Private *me = local
168 PERF_LOG_Private *me = perf->pLog; /* get LOG private object */ local
[all...]
H A Dperf_rt.c65 PERF_RT_Private *me = local
68 if (me)
73 me->needSteadyState = (perf->ulID & 0xff) == 'T';
74 me->steadyState = 0;
77 me->maxDRate = MAX_RATES_TRACKED;
78 me->dRate = malloc(sizeof(PERF_RTdata_rate) * me->maxDRate);
79 succeed = succeed && me->dRate;
81 me->decoder = (perf->ulID == PERF_FOURS("VD__") || perf->ulID == PERF_FOURS("VD_T"));
82 me
220 PERF_RT_Private *me = perf->cip.pRT; local
318 count_temporal_rate(unsigned long ID, PERF_RT_Private *me, PERF_RTdata_rate *dRate) argument
362 count_delay(PERF_RT_Private *me, char *tag, PERF_RTdata_delay *dDelay, long n0) argument
393 PERF_RT_Private *me = perf->cip.pRT; local
457 PERF_RT_Private *me = perf->cip.pRT; local
813 PERF_RT_Private *me = perf->cip.pRT; local
[all...]
H A Dperf_custom.c39 void get_time(PERF_Private *me) argument
42 if (me->uMode & PERF_Mode_Replay) return;
45 TIME_GET(me->time);
121 PERF_Private *me = get_Private(hObject); local
123 if (me->pLog)
129 get_time(me);
132 if (me->cip.pDebug)
134 __print_Boundary(me->cip.pDebug->fDebug,
135 me, eBoundary);
138 if (me
151 PERF_Private *me = get_Private(hObject); local
180 PERF_Private *me = get_Private(hObject); local
209 PERF_Private *me = get_Private(hObject); local
238 PERF_Private *me = get_Private(hObject); local
266 PERF_Private *me = get_Private(hObject); local
308 PERF_Private *me = get_Private(hObject); local
355 PERF_Private *me = get_Private(hObject); local
408 __PERF_CUSTOM_done(PERF_Private *me) argument
[all...]
H A Dperf_print.c35 PERF_PRINT_Private *me = perf->cip.pDebug; local
38 if (me->fDebug && me->fDebug != stdout &&
39 me->fDebug != stderr) fclose(me->fDebug);
42 free(me->info); me->info = NULL;
45 free(me);
61 PERF_PRINT_Private *me = perf->cip.pDebug; local
72 if (me
144 PERF_PRINT_Private *me = perf->cip.pDebug; local
153 PERF_PRINT_Private *me = perf->cip.pDebug; local
162 PERF_PRINT_Private *me = perf->cip.pDebug; local
206 PERF_PRINT_Private *me = local
272 PERF_PRINT_Private *me = perf->cip.pDebug; local
303 PERF_PRINT_Private *me = perf->cip.pDebug; local
356 PERF_PRINT_Private *me = perf->cip.pDebug; local
385 PERF_PRINT_Private *me = perf->cip.pDebug; local
398 PERF_PRINT_Private *me = perf->cip.pDebug; local
413 PERF_PRINT_Private *me = perf->cip.pDebug; local
436 PERF_PRINT_Private *me = perf->cip.pDebug; local
460 PERF_PRINT_Private *me = perf->cip.pDebug; local
[all...]
H A Dperf.c48 PERF_Private *me = get_Private(hObject); local
51 if (me)
54 __PERF_CUSTOM_done(me);
56 if (me->uMode & PERF_Mode_Log)
58 __PERF_LOG_done(me);
63 free (me);
80 PERF_Private *me = NULL; local
94 me = (PERF_Private *) malloc(sizeof(PERF_Private));
96 if (me)
99 me
[all...]
/hardware/qcom/display/libcopybit/
H A Dcopybit_priv.h43 copybit_iterator const* me = static_cast<copybit_iterator const*>(self); local
44 if (me->mCount) {
45 rect->l = me->mRect.l;
46 rect->t = me->mRect.t;
47 rect->r = me->mRect.r;
48 rect->b = me->mRect.b;
49 me->mCount--;
/hardware/ti/omap3/omx/system/src/openmax_il/perf/inc/
H A Dperf_log.h268 PERF_LOG_Private *me = priv->pLog; local
269 unsigned long *time_loc = me->puPtr++;
271 *me->puPtr++ = ulData1;
281 PERF_LOG_Private *me = priv->pLog; local
282 unsigned long *time_loc = me->puPtr++;
284 *me->puPtr++ = ulData1;
285 *me->puPtr++ = ulData2;
296 PERF_LOG_Private *me = priv->pLog; local
297 unsigned long *time_loc = me->puPtr++;
299 *me
322 PERF_LOG_Private *me = priv->pLog; local
[all...]
/hardware/qcom/display/libhwcomposer/
H A Dhwc_copybit.cpp51 region_iterator const* me = local
53 if (me->r.current != me->r.end) {
54 rect->l = me->mRegion.rects[me->r.current].left;
55 rect->t = me->mRegion.rects[me->r.current].top;
56 rect->r = me->mRegion.rects[me->r.current].right;
57 rect->b = me
[all...]
/hardware/qcom/audio/alsa_sound/
H A DAudioUsbALSA.h104 static void *PlaybackThreadWrapper(void *me);
107 static void *RecordingThreadWrapper(void *me);
H A DAudioUsbALSA.cpp580 void *AudioUsbALSA::PlaybackThreadWrapper(void *me) { argument
581 static_cast<AudioUsbALSA *>(me)->PlaybackThreadEntry();
585 void *AudioUsbALSA::RecordingThreadWrapper(void *me) { argument
586 static_cast<AudioUsbALSA *>(me)->RecordingThreadEntry();
/hardware/ti/omap3/omx/system/src/openmax_il/perf/reader/
H A Dperf_reader.c72 PERF_Private *me = NULL; local
107 me = get_Private(hObject);
110 me->ulPID = read_U32(fLog); /* PID */
113 TIME_SET(me->time, ulData1, ulData2);
118 if (me->uMode == PERF_Mode_Replay)
150 TIME_INCREASE(me->time, ulData0);
/hardware/qcom/gps/loc_api/libloc_api_50001/
H A Dloc_eng.cpp86 static LocEngContext *me; member in struct:LocEngContext
92 LocEngContext* LocEngContext::me = NULL; member in class:LocEngContext
108 if (NULL == me) {
114 me = new LocEngContext(threadCreator);
116 me->counter++;
119 return me;
137 delete me;
138 me = NULL;
/hardware/libhardware/tests/camera2/
H A Dcamera2_utils.cpp304 NotifierListener *me = reinterpret_cast<NotifierListener*>(user); local
305 me->onNotify(msg_type, ext1, ext2, ext3);

Completed in 249 milliseconds