Searched refs:exp (Results 1 - 25 of 30) sorted by relevance

12

/hardware/ti/omap3/dspbridge/inc/
H A Ddbc.h53 #define DBC_Assert( exp ) \
54 if (!(exp)) \
55 (*GT->ERRORFXN)("%s, line %d: Assertion (" #exp ") failed.\n", \
62 #define DBC_Assert(exp)
63 #define DBC_Require(exp)
64 #define DBC_Ensure(exp)
/hardware/ti/omap3/omx/system/src/openmax_il/perf/inc/
H A Dperf_obj.h101 #define PERF_check(handle, exp) ((handle) ? (exp),1 : 0)
/hardware/qcom/display/msm8960/libhwcomposer/
H A Dhwc_fbupdate.h25 #define LIKELY( exp ) (__builtin_expect( (exp) != 0, true ))
26 #define UNLIKELY( exp ) (__builtin_expect( (exp) != 0, false ))
H A Dhwc_utils.h36 #define LIKELY( exp ) (__builtin_expect( (exp) != 0, true ))
37 #define UNLIKELY( exp ) (__builtin_expect( (exp) != 0, false ))
/hardware/qcom/display/msm8974/libhwcomposer/
H A Dhwc_fbupdate.h25 #define LIKELY( exp ) (__builtin_expect( (exp) != 0, true ))
26 #define UNLIKELY( exp ) (__builtin_expect( (exp) != 0, false ))
H A Dhwc_utils.h36 #define LIKELY( exp ) (__builtin_expect( (exp) != 0, true ))
37 #define UNLIKELY( exp ) (__builtin_expect( (exp) != 0, false ))
/hardware/qcom/display/msm8084/libhwcomposer/
H A Dhwc_fbupdate.h25 #define LIKELY( exp ) (__builtin_expect( (exp) != 0, true ))
26 #define UNLIKELY( exp ) (__builtin_expect( (exp) != 0, false ))
H A Dhwc_utils.h38 #define LIKELY( exp ) (__builtin_expect( (exp) != 0, true ))
39 #define UNLIKELY( exp ) (__builtin_expect( (exp) != 0, false ))
/hardware/qcom/display/msm8226/libhwcomposer/
H A Dhwc_fbupdate.h25 #define LIKELY( exp ) (__builtin_expect( (exp) != 0, true ))
26 #define UNLIKELY( exp ) (__builtin_expect( (exp) != 0, false ))
H A Dhwc_utils.h37 #define LIKELY( exp ) (__builtin_expect( (exp) != 0, true ))
38 #define UNLIKELY( exp ) (__builtin_expect( (exp) != 0, false ))
/hardware/libhardware/tests/camera2/
H A DCameraBurstTests.cpp53 #define WARN_LE(exp, act) WARN_UNLESS((exp) <= (act))
54 #define WARN_LT(exp, act) WARN_UNLESS((exp) < (act))
55 #define WARN_GT(exp, act) WARN_UNLESS((exp) > (act))
325 // Bound for two captures with equivalent exp values to have the same
H A DCameraMultiStreamTests.cpp661 int64_t exp = minExp; local
662 while (exp < maxExp) {
663 exposures.push_back(exp);
664 exp *= 2;
/hardware/ti/omap4-aah/test/CameraHal/
H A Dcamera_test_menu.cpp2241 void setSingleExpGainPreset(ShotParameters &params, int idx, int exp, int gain) { argument
2249 val.appendFormat("%+d", exp);
2251 val.appendFormat("%u", (unsigned int) exp);
2318 void calcNextSingleExpGainPreset(int idx, int &exp, int &gain) { argument
2321 if ( (0 == exp) && (0 == gain) ) {
2322 exp=100;
2324 printf("Streaming: Init default absolute exp./gain: %d,%d\n", exp, gain);
2327 exp *= 2;
2328 if (1000000 < exp) {
[all...]
H A Dcamera_test.h52 #define KEY_EXP_BRACKETING_RANGE "exp-bracketing-range"
53 #define KEY_EXP_GAIN_BRACKETING_RANGE "exp-gain-bracketing-range"
246 void setSingleExpGainPreset(ShotParameters &params, int idx, int exp, int gain);
248 void calcNextSingleExpGainPreset(int idx, int &exp, int &gain);
/hardware/ti/omap4xxx/camera/V4LCameraAdapter/
H A DV4LCameraAdapter.cpp42 #define UNLIKELY( exp ) (__builtin_expect( (exp) != 0, false ))
/hardware/ti/omap4xxx/camera/OMXCameraAdapter/
H A DOMX3A.cpp428 OMX_CONFIG_EXPOSURECONTROLTYPE exp; local
438 OMX_INIT_STRUCT_PTR (&exp, OMX_CONFIG_EXPOSURECONTROLTYPE);
439 exp.nPortIndex = OMX_ALL;
440 exp.eExposureControl = (OMX_EXPOSURECONTROLTYPE)Gen3A.Exposure;
444 &exp);
H A DOMXCameraAdapter.cpp32 #define UNLIKELY( exp ) (__builtin_expect( (exp) != 0, false ))
636 OMX_CONFIG_EXPOSUREVALUETYPE exp; local
694 OMX_INIT_STRUCT_PTR (&exp, OMX_CONFIG_EXPOSUREVALUETYPE);
695 exp.nPortIndex = OMX_ALL;
699 &exp);
702 params.set(TICameraParameters::KEY_CURRENT_ISO, exp.nSensitivity);
/hardware/ti/omap4-aah/camera/OMXCameraAdapter/
H A DOMX3A.cpp556 OMX_CONFIG_EXPOSURECONTROLTYPE exp; local
566 OMX_INIT_STRUCT_PTR (&exp, OMX_CONFIG_EXPOSURECONTROLTYPE);
567 exp.nPortIndex = OMX_ALL;
568 exp.eExposureControl = (OMX_EXPOSURECONTROLTYPE)Gen3A.Exposure;
572 &exp);
H A DOMXCameraAdapter.cpp33 #define UNLIKELY( exp ) (__builtin_expect( (exp) != 0, false ))
797 OMX_CONFIG_EXPOSUREVALUETYPE exp; local
853 OMX_INIT_STRUCT_PTR (&exp, OMX_CONFIG_EXPOSUREVALUETYPE);
854 exp.nPortIndex = OMX_ALL;
858 &exp);
861 params.set(TICameraParameters::KEY_CURRENT_ISO, exp.nSensitivity);
/hardware/broadcom/wlan/bcmdhd/dhdutil/include/
H A Dbcmutils.h82 * Spin at most 'us' microseconds while 'exp' is true.
83 * Caller should explicitly test 'exp' when this completes
84 * and take appropriate error action if 'exp' is still true.
86 #define SPINWAIT(exp, us) { \
88 while ((exp) && (countdown >= 10)) {\
/hardware/ti/omap4-aah/camera/V4LCameraAdapter/
H A DV4LCameraAdapter.cpp45 #define UNLIKELY( exp ) (__builtin_expect( (exp) != 0, false ))
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/
H A Dlibs.mk190 INSTALL-LIBS-$(CONFIG_SHARED) += $(foreach p,$(VS_PLATFORMS),$(LIBSUBDIR)/$(p)/vpx.exp)
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/common/
H A Dvp9_postproc.c376 (exp(-(x - mu) * (x - mu) / (2 * sigma * sigma)));
/hardware/broadcom/wlan/bcmdhd/dhdutil/include/proto/
H A D802.11.h713 #define EDCF_ECW2CW(exp) ((1 << (exp)) - 1)
/hardware/intel/img/libdrm/
H A Dconfigure7252 $ECHO "X$_lt_compiler_boilerplate" | $Xsed -e '/^$/d' >conftest.exp
7254 if test ! -s conftest.er2 || diff conftest.exp conftest.er2 >/dev/null; then
7381 lt_prog_compiler_static='-bnso -bI:/lib/syscalls.exp'
7591 $ECHO "X$_lt_compiler_boilerplate" | $Xsed -e '/^$/d' >conftest.exp
7593 if test ! -s conftest.er2 || diff conftest.exp conftest.er2 >/dev/null; then
7639 $ECHO "X$_lt_linker_boilerplate" | $Xsed -e '/^$/d' > conftest.exp
7641 if diff conftest.exp conftest.er2 >/dev/null; then
7697 $ECHO "X$_lt_compiler_boilerplate" | $Xsed -e '/^$/d' > out/conftest.exp
7699 if test ! -s out/conftest.er2 || diff out/conftest.exp out/conftest.er2 >/dev/null; then
7752 $ECHO "X$_lt_compiler_boilerplate" | $Xsed -e '/^$/d' > out/conftest.exp
[all...]

Completed in 505 milliseconds

12