Home
last modified time | relevance | path

Searched refs:min (Results 1 – 10 of 10) sorted by relevance

/hardware/ti/omap3/omx/system/src/openmax_il/perf/tests/
DPERF.awk39 min = (size != "") ? (size) : (min != "") ? (min) : 1; # min size of buffers to watch
58 else if (gsub("^size=", "",arg)) { min = max = (arg) }
59 else if (gsub("^min=", "",arg)) { min = (arg) }
97 print "min = ", min
102 min = min + 0
120 ((0 + $17) >= min) &&
/hardware/libhardware/include/hardware/
Dhardware.h37 #define HARDWARE_MAKE_API_VERSION(maj,min) \ argument
38 ((((maj) & 0xff) << 8) | ((min) & 0xff))
62 #define HARDWARE_MODULE_API_VERSION(maj,min) HARDWARE_MAKE_API_VERSION(maj,min) argument
67 #define HARDWARE_DEVICE_API_VERSION(maj,min) HARDWARE_MAKE_API_VERSION(maj,min) argument
/hardware/ti/wlan/wl1271/platforms/os/common/inc/
Dcli_cu_common.h95 #ifndef min
96 # define min(a, b) (((a)<(b)) ? (a) : (b)) macro
/hardware/ti/omap4xxx/camera/OMXCameraAdapter/
DOMXExif.cpp802 int &min, in convertGPSCoord() argument
819 min = (int) floor(tmp); in convertGPSCoord()
826 min += 1; in convertGPSCoord()
829 if( min >= 60 ) { in convertGPSCoord()
830 min = 0; in convertGPSCoord()
/hardware/msm7k/libcopybit/
Dcopybit.cpp92 static inline int min(int a, int b) { in min() function
115 out->r = min(lhs->r, rhs->r); in intersect()
116 out->b = min(lhs->b, rhs->b); in intersect()
/hardware/ti/omap4xxx/camera/inc/OMXCameraAdapter/
DOMXCameraAdapter.h450 status_t convertGPSCoord(double coord, int &deg, int &min, int &sec, int &secDivisor);
/hardware/ti/wlan/wl1271/platforms/os/linux/src/
DCmdInterpretWext.c727 iwe.u.data.length = min((TI_UINT8)my_current->Ssid.SsidLength, (TI_UINT8)32); in cmdInterpret_convertAndExecute()
1396 …ryCopy(pCmdInterpret->hOs, my_command->out_buffer, my_command->in_buffer, min(my_command->in_buff… in cmdInterpret_convertAndExecute()
/hardware/broadcom/wlan/bcm4329/dhdutil/include/proto/
D802.11.h298 uint8 min; member
/hardware/broadcom/wlan/bcmdhd/dhdutil/include/proto/
D802.11.h298 uint8 min; member
/hardware/ti/omap4xxx/hwc/
Dhwc.c42 #define min(a, b) ( { typeof(a) __a = (a), __b = (b); __a < __b ? __a : __b; } ) macro
1047 hwc_dev->ext_ovls = min(MAX_HW_OVERLAYS - hwc_dev->last_int_ovls, hwc_dev->ext_ovls); in decide_supported_cloning()