Searched defs:start (Results 1 - 25 of 35) sorted by relevance

12

/hardware/samsung_slsi/exynos5/include/
H A Dexynos_mem.h24 dma_addr_t start; member in struct:exynos_mem_flush_range
/hardware/ti/omap4xxx/
H A Dmapinfo.h6 unsigned start; member in struct:mapinfo
/hardware/samsung_slsi/exynos5/mobicore/daemon/Common/
H A DCThread.cpp102 void CThread::start( function in class:CThread
/hardware/msm7k/libgralloc/
H A Dallocator.cpp90 int extra = ( -cur->start & ((pagesize/kMemoryAlign)-1) ) ;
109 int extra = ( -free_chunk->start & ((pagesize/kMemoryAlign)-1) ) ;
111 chunk_t* split = new chunk_t(free_chunk->start, extra);
112 free_chunk->start += extra;
116 ALOGE_IF(((free_chunk->start*kMemoryAlign)&(pagesize-1)),
122 free_chunk->start + free_chunk->size, tail_free);
126 return (free_chunk->start)*kMemoryAlign;
131 SimpleBestFitAllocator::chunk_t* SimpleBestFitAllocator::dealloc(size_t start) argument
133 start = start / kMemoryAlig
[all...]
H A Dallocator.h110 chunk_t(size_t start, size_t size) argument
111 : start(start), size(size), free(1), prev(0), next(0) {
113 size_t start; member in struct:SimpleBestFitAllocator::chunk_t
121 chunk_t* dealloc(size_t start);
/hardware/msm7k/libgralloc-qsd8k/
H A Dallocator.cpp90 int extra = ( -cur->start & ((pagesize/kMemoryAlign)-1) ) ;
109 int extra = ( -free_chunk->start & ((pagesize/kMemoryAlign)-1) ) ;
111 chunk_t* split = new chunk_t(free_chunk->start, extra);
112 free_chunk->start += extra;
116 ALOGE_IF(((free_chunk->start*kMemoryAlign)&(pagesize-1)),
122 free_chunk->start + free_chunk->size, tail_free);
126 return (free_chunk->start)*kMemoryAlign;
131 SimpleBestFitAllocator::chunk_t* SimpleBestFitAllocator::dealloc(size_t start) argument
133 start = start / kMemoryAlig
[all...]
H A Dallocator.h111 chunk_t(size_t start, size_t size) argument
112 : start(start), size(size), free(1), prev(0), next(0) {
114 size_t start; member in struct:SimpleBestFitAllocator::chunk_t
122 chunk_t* dealloc(size_t start);
H A Dgralloc.cpp94 virtual void* mmap(void* start, size_t length, int prot, int flags, int fd, argument
96 return ::mmap(start, length, prot, flags, fd, offset);
99 virtual int munmap(void* start, size_t length) { argument
100 return ::munmap(start, length);
/hardware/broadcom/wlan/bcmdhd/wpa_supplicant_8_lib/
H A Ddriver_cmd_nl80211.c91 int wpa_driver_set_p2p_noa(void *priv, u8 count, int start, int duration) argument
97 snprintf(buf, sizeof(buf), "P2P_SET_NOA %d %d %d", count, start, duration);
/hardware/qcom/wlan/qcwcn/wpa_supplicant_8_lib/
H A Ddriver_cmd_nl80211.c100 int wpa_driver_set_p2p_noa(void *priv, u8 count, int start, int duration) argument
106 snprintf(buf, sizeof(buf), "P2P_SET_NOA %d %d %d", count, start, duration);
/hardware/msm7k/libgralloc-qsd8k/tests/
H A Dpmemalloc_test.cpp50 virtual void* mmap(void* start, size_t length, int prot, int flags, int fd, argument
55 virtual int munmap(void* start, size_t length) { argument
109 virtual void* mmap(void* start, size_t length, int prot, int flags, int fd, argument
155 virtual void* mmap(void* start, size_t length, int prot, int flags, int fd, argument
483 virtual void* mmap(void* start, size_t length, int prot, int flags, int fd, argument
575 virtual void* mmap(void* start, size_t length, int prot, int flags, int fd, argument
/hardware/samsung_slsi/exynos5/exynos_omx/openmax/exynos_omx/osal/
H A DExynos_OSAL_ETC.c161 static OMX_U32 MeasureTime(struct timeval *start, struct timeval *stop) argument
165 sec = stop->tv_sec - start->tv_sec;
166 if (stop->tv_usec >= start->tv_usec) {
167 usec = stop->tv_usec - start->tv_usec;
169 usec = stop->tv_usec + 1000000 - start->tv_usec;
/hardware/samsung_slsi/exynos5/mobicore/common/MobiCore/inc/
H A DmcLoadFormat.h87 addr_t start; /**< Virtual start address. */ member in struct:__anon1190
116 mclfIntro_t intro; /**< MCLF header start with the mandatory intro. */
136 addr_t entry; /**< Virtual start address of service code. */
/hardware/samsung_slsi/exynos5/mobicore/daemon/Daemon/Device/
H A DMobiCoreDevice.cpp171 void MobiCoreDevice::start(void) function in class:MobiCoreDevice
178 DeviceIrqHandler::start();
183 DeviceScheduler::start();
/hardware/ti/wlan/mac80211/ti-utils/
H A Dcalibrator.c114 const char *start, *lend, *end; local
150 start = cmd->help;
151 end = strchr(start, '\0');
153 lend = strchr(start, '\n');
158 printf("%.*s\n", (int)(lend - start), start);
159 start = lend + 1;
/hardware/qcom/audio/legacy/libalsa-intf/
H A Daplay.c178 static int start = 0; local
290 start = 0;
319 * start writting.
378 if (compressed && start) {
388 * If we have reached start threshold of buffer prefill,
389 * its time to start the driver.
391 if(start)
407 start = 1;
H A Darec.c183 static int start = 0; local
282 start = 0;
312 * start reading from.
H A Dalsa_audio.h44 int start; member in struct:pcm
166 * Will start playback on the first write or on a write that
/hardware/ti/omap3/omx/system/src/openmax_il/perf/src/
H A Dperf_rt.c250 static void start_stop_uptime(PERF_RTdata_uptime *dUptime, int start) argument
254 if (dUptime && dUptime->measuring != start)
273 dUptime->measuring = start;
529 /* start tracking */
648 /* new burst mode start */
653 /* preview start */
/hardware/invensense/mlsdk/mlutils/
H A Dmputest.c218 unsigned long start = inv_get_tick_count(); local
219 while (inv_get_tick_count()-start < t / 1000);
/hardware/libhardware/tests/camera2/
H A Dcamera2_utils.cpp178 status_t MetadataQueue::freeBuffers(List<camera_metadata_t*>::iterator start, argument
180 while (start != end) {
181 free_camera_metadata(*start);
182 start = mStreamSlot.erase(start);
/hardware/qcom/audio/legacy/alsa_sound/
H A DAudioUsbALSA.cpp384 static int start = 0; local
453 if (!musbRecordingHandle->start && !mkillRecordingThread) {
560 if ((bytes_written >= mproxyRecordingHandle->sw_p->start_threshold) && (!mproxyRecordingHandle->start)) {
645 handle->start = 0;
653 handle->start = 1;
673 handle->start = 0;
867 if (!mkillPlayBackThread && (!mproxyPlaybackHandle->start)) {
1016 if (bytes_written <= usbPeriod && musbPlaybackHandle->start) {
1019 musbPlaybackHandle->start = false;
1022 if ((bytes_written >= musbPlaybackHandle->sw_p->start_threshold) && (!musbPlaybackHandle->start)) {
[all...]
/hardware/qcom/display/libhwcomposer/
H A Dhwc_utils.h113 bool start; member in struct:qhwc::CablProp
/hardware/samsung_slsi/exynos5/libcamera/
H A DExynosJpegEncoderForCamera.cpp657 unsigned char *start)
667 memcpy(start + *offset, pValue, count);
677 unsigned char *start)
687 memcpy(start + *offset, pValue, 8 * count);
651 writeExifIfd(unsigned char **pCur, unsigned short tag, unsigned short type, unsigned int count, unsigned char *pValue, unsigned int *offset, unsigned char *start) argument
671 writeExifIfd(unsigned char **pCur, unsigned short tag, unsigned short type, unsigned int count, rational_t *pValue, unsigned int *offset, unsigned char *start) argument
/hardware/samsung_slsi/exynos5/libcamera2/
H A DExynosJpegEncoderForCamera.cpp620 unsigned char *start)
630 memcpy(start + *offset, pValue, count);
640 unsigned char *start)
650 memcpy(start + *offset, pValue, 8 * count);
614 writeExifIfd(unsigned char **pCur, unsigned short tag, unsigned short type, unsigned int count, unsigned char *pValue, unsigned int *offset, unsigned char *start) argument
634 writeExifIfd(unsigned char **pCur, unsigned short tag, unsigned short type, unsigned int count, rational_t *pValue, unsigned int *offset, unsigned char *start) argument

Completed in 637 milliseconds

12