Searched refs:boundary (Results 1 - 22 of 22) sorted by relevance

/hardware/broadcom/wlan/bcmdhd/dhdutil/include/
H A Dbcmutils.h622 #define ALIGN_ADDR(addr, boundary) (void *)(((uintptr)(addr) + (boundary) - 1) \
623 & ~((boundary) - 1))
624 #define ALIGN_SIZE(size, boundary) (((size) + (boundary) - 1) \
625 & ~((boundary) - 1))
/hardware/qcom/audio/legacy/libalsa-intf/
H A Dalsa_pcm.c405 avail += pcm->sw_p->boundary;
410 avail += pcm->sw_p->boundary;
411 else if ((unsigned long) avail >= pcm->sw_p->boundary)
412 avail -= pcm->sw_p->boundary;
H A Daplay.c159 fprintf (stderr," sparams->boundary= %lu\n", sparams->boundary);
/hardware/qcom/display/msm8994/libhwcomposer/
H A Dhwc_utils.cpp2669 hwc_rect_t getSanitizeROI(struct hwc_rect roi, hwc_rect boundary) argument
2685 if(MIN_WIDTH == boundary.right - boundary.left) {
2689 if((t_roi.left + MIN_WIDTH) > boundary.right)
2698 if(MIN_HEIGHT == boundary.bottom - boundary.top) {
2702 if((t_roi.top + MIN_HEIGHT) > boundary.bottom)
2718 if(t_roi.right > boundary.right) {
2719 t_roi.right = boundary.right;
2736 if(t_roi.bottom > boundary
[all...]
H A Dhwc_utils.h393 hwc_rect_t getSanitizeROI(struct hwc_rect roi, hwc_rect boundary);
/hardware/qcom/display/msm8084/libhwcomposer/
H A Dhwc_utils.cpp2234 hwc_rect_t getSanitizeROI(struct hwc_rect roi, hwc_rect boundary) argument
2250 if((t_roi.left + MIN_WIDTH) > boundary.right)
2258 if((t_roi.top + MIN_HEIGHT) > boundary.bottom)
2273 if(t_roi.right > boundary.right) {
2274 t_roi.right = boundary.right;
2292 if(t_roi.bottom > boundary.bottom) {
2293 t_roi.bottom = boundary.bottom;
H A Dhwc_utils.h310 hwc_rect_t getSanitizeROI(struct hwc_rect roi, hwc_rect boundary);
/hardware/qcom/display/msm8226/libhwcomposer/
H A Dhwc_utils.cpp2245 hwc_rect_t getSanitizeROI(struct hwc_rect roi, hwc_rect boundary) argument
2261 if((t_roi.left + MIN_WIDTH) > boundary.right)
2269 if((t_roi.top + MIN_HEIGHT) > boundary.bottom)
2284 if(t_roi.right > boundary.right) {
2285 t_roi.right = boundary.right;
2303 if(t_roi.bottom > boundary.bottom) {
2304 t_roi.bottom = boundary.bottom;
H A Dhwc_utils.h330 hwc_rect_t getSanitizeROI(struct hwc_rect roi, hwc_rect boundary);
/hardware/qcom/display/msm8909/libhwcomposer/
H A Dhwc_utils.cpp2712 hwc_rect_t getSanitizeROI(struct hwc_rect roi, hwc_rect boundary) argument
2728 if((t_roi.left + MIN_WIDTH) > boundary.right)
2736 if((t_roi.top + MIN_HEIGHT) > boundary.bottom)
2751 if(t_roi.right > boundary.right) {
2752 t_roi.right = boundary.right;
2770 if(t_roi.bottom > boundary.bottom) {
2771 t_roi.bottom = boundary.bottom;
H A Dhwc_utils.h369 hwc_rect_t getSanitizeROI(struct hwc_rect roi, hwc_rect boundary);
/hardware/qcom/msm8994/kernel-headers/sound/
H A Dasound.h380 snd_pcm_uframes_t boundary; member in struct:snd_pcm_sw_params
/hardware/qcom/msm8994/original-kernel-headers/sound/
H A Dasound.h392 snd_pcm_uframes_t boundary; /* pointers wrap point */ member in struct:snd_pcm_sw_params
422 snd_pcm_uframes_t hw_ptr; /* RO: hw ptr (0...boundary-1) */
429 snd_pcm_uframes_t appl_ptr; /* RW: appl ptr (0...boundary-1) */
/hardware/qcom/msm8996/kernel-headers/sound/
H A Dasound.h381 snd_pcm_uframes_t boundary; member in struct:snd_pcm_sw_params
/hardware/qcom/msm8996/original-kernel-headers/sound/
H A Dasound.h398 snd_pcm_uframes_t boundary; /* pointers wrap point */ member in struct:snd_pcm_sw_params
430 snd_pcm_uframes_t hw_ptr; /* RO: hw ptr (0...boundary-1) */
437 snd_pcm_uframes_t appl_ptr; /* RW: appl ptr (0...boundary-1) */
/hardware/qcom/msm8x09/kernel-headers/sound/
H A Dasound.h381 snd_pcm_uframes_t boundary; member in struct:snd_pcm_sw_params
/hardware/qcom/msm8x09/original-kernel-headers/sound/
H A Dasound.h398 snd_pcm_uframes_t boundary; /* pointers wrap point */ member in struct:snd_pcm_sw_params
430 snd_pcm_uframes_t hw_ptr; /* RO: hw ptr (0...boundary-1) */
437 snd_pcm_uframes_t appl_ptr; /* RW: appl ptr (0...boundary-1) */
/hardware/qcom/msm8x26/kernel-headers/sound/
H A Dasound.h379 snd_pcm_uframes_t boundary; member in struct:snd_pcm_sw_params
/hardware/qcom/msm8x26/original-kernel-headers/sound/
H A Dasound.h391 snd_pcm_uframes_t boundary; /* pointers wrap point */ member in struct:snd_pcm_sw_params
421 snd_pcm_uframes_t hw_ptr; /* RO: hw ptr (0...boundary-1) */
428 snd_pcm_uframes_t appl_ptr; /* RW: appl ptr (0...boundary-1) */
/hardware/qcom/msm8x84/kernel-headers/sound/
H A Dasound.h379 snd_pcm_uframes_t boundary; member in struct:snd_pcm_sw_params
/hardware/qcom/msm8x84/original-kernel-headers/sound/
H A Dasound.h391 snd_pcm_uframes_t boundary; /* pointers wrap point */ member in struct:snd_pcm_sw_params
421 snd_pcm_uframes_t hw_ptr; /* RO: hw ptr (0...boundary-1) */
428 snd_pcm_uframes_t appl_ptr; /* RW: appl ptr (0...boundary-1) */
/hardware/broadcom/wlan/bcmdhd/dhdutil/
H A Dbcmutils.c172 /* Check for page boundary straddle (2048B) */
1949 uint boundary; local
1951 /* handle boundary case */
1964 boundary = nqdBm_to_mW_map[qdbm] + (nqdBm_to_mW_map[qdbm+1] -
1966 if (mw_uint < boundary) break;

Completed in 349 milliseconds