Home
last modified time | relevance | path

Searched refs:j0 (Results 1 – 4 of 4) sorted by relevance

/frameworks/rs/driver/runtime/
Drs_f16_math.c83 short i0, j0; in modf() local
86 j0 = ((i0 >> 10) & 0x1f) - 15; // exponent of x in modf()
87 if (j0 < 10) { in modf()
88 if (j0 < 0) { // No integral part in modf()
93 i = 0x03ff >> j0; // mask to check fractional parts of x in modf()
/frameworks/av/media/libstagefright/codecs/m4v_h263/enc/src/
Dmotion_est.cpp76 Int i0, Int j0, Int type_pred, Int fullsearch, Int *hp_guess);
771 Int i0, Int j0, Int type_pred, Int FS_en, Int *hp_guess) in MBMotionSearch() argument
815 jlow = j0 - range; in MBMotionSearch()
818 jhigh = j0 + range - 1; in MBMotionSearch()
830 jlow = j0 - range; in MBMotionSearch()
833 jhigh = j0 + range - 1; in MBMotionSearch()
839 jmin = j0; /* needed for fullsearch */ in MBMotionSearch()
853 mot[mbnum][0].y = (jmin - j0) << 1; in MBMotionSearch()
861 if (video->forwardRefVop->predictionType == I_VOP && j0 == 0 && i0 <= 64 && type_pred != 1) in MBMotionSearch()
871 CandidateSelection(mvx, mvy, &num_can, i0 >> 4, j0 >> 4, video, type_pred); in MBMotionSearch()
[all …]
/frameworks/av/media/libstagefright/codecs/avc/enc/src/
Dmotion_est.cpp956 int i0, int j0, int type_pred, int FS_en, int *hp_guess) in AVCMBMotionSearch() argument
1032 jlow = j0 - range; in AVCMBMotionSearch()
1033 if (j0 - jlow > MaxVmvR[lev_idx] - 1) /* clip to conform with the standard */ in AVCMBMotionSearch()
1035 jlow = j0 - MaxVmvR[lev_idx] + 1; in AVCMBMotionSearch()
1042 jhigh = j0 + range - 1; in AVCMBMotionSearch()
1043 if (jhigh - j0 > MaxVmvR[lev_idx] - 1) /* clip to conform with the standard */ in AVCMBMotionSearch()
1045 jhigh = j0 + MaxVmvR[lev_idx] - 1; in AVCMBMotionSearch()
1053 AVCCandidateSelection(mvx, mvy, &num_can, i0 >> 4, j0 >> 4, encvid, type_pred, &cmvx, &cmvy); in AVCMBMotionSearch()
1056 jmin = j0; /* needed for fullsearch */ in AVCMBMotionSearch()
1057 ncand = ref + i0 + j0 * lx; in AVCMBMotionSearch()
[all …]
Davcenc_lib.h554 int i0, int j0, int type_pred, int FS_en, int *hp_guess);