| /OK3568_Linux_fs/external/camera_engine_rkaiq/rkaiq/algos/adehaze/ |
| H A D | rk_aiq_adehaze_algo_v10.cpp | 25 float LinearInterp(const float* pX, const float* pY, float posx, int XSize) { in LinearInterp() argument 29 if (posx >= pX[XSize - 1]) { in LinearInterp() 31 } else if (posx <= pX[0]) { in LinearInterp() 35 while ((posx >= pX[index]) && (index < XSize)) { in LinearInterp() 39 yOut = ((pY[index + 1] - pY[index]) / (pX[index + 1] - pX[index]) * (posx - pX[index])) + in LinearInterp() 46 int LinearInterpEnable(const float* pX, const unsigned char* pY, float posx, int XSize) { in LinearInterpEnable() argument 50 if (posx >= pX[XSize - 1]) { in LinearInterpEnable() 52 } else if (posx <= pX[0]) { in LinearInterpEnable() 56 while ((posx >= pX[index]) && (index < XSize)) { in LinearInterpEnable() 60 out = ((pY[index + 1] - pY[index]) / (pX[index + 1] - pX[index]) * (posx - pX[index])) + in LinearInterpEnable()
|
| H A D | rk_aiq_adehaze_algo_v11.cpp | 24 float GetInterpRatioV11(float* pX, int lo, int hi, float CtrlValue, int length_max) { in GetInterpRatioV11() argument 27 if (CtrlValue < pX[0]) { in GetInterpRatioV11() 31 } else if (CtrlValue >= pX[length_max - 1]) { in GetInterpRatioV11() 37 if (CtrlValue >= pX[i] && CtrlValue < pX[i + 1]) { in GetInterpRatioV11() 40 ratio = (CtrlValue - pX[i]) / (pX[i + 1] - pX[i]); in GetInterpRatioV11()
|
| H A D | rk_aiq_adehaze_algo_v11_duo.cpp | 23 float GetInterpRatioV11Duo(float* pX, int lo, int hi, float CtrlValue, int length_max) { in GetInterpRatioV11Duo() argument 26 if (CtrlValue < pX[0]) { in GetInterpRatioV11Duo() 30 } else if (CtrlValue >= pX[length_max - 1]) { in GetInterpRatioV11Duo() 36 if (CtrlValue >= pX[i] && CtrlValue < pX[i + 1]) { in GetInterpRatioV11Duo() 39 ratio = (CtrlValue - pX[i]) / (pX[i + 1] - pX[i]); in GetInterpRatioV11Duo()
|
| H A D | rk_aiq_adehaze_algo_v12.cpp | 98 float GetInterpRatioV12(float* pX, int lo, int hi, float CtrlValue, int length_max) { in GetInterpRatioV12() argument 101 if (CtrlValue < pX[0]) { in GetInterpRatioV12() 105 } else if (CtrlValue >= pX[length_max - 1]) { in GetInterpRatioV12() 111 if (CtrlValue >= pX[i] && CtrlValue < pX[i + 1]) { in GetInterpRatioV12() 114 ratio = (CtrlValue - pX[i]) / (pX[i + 1] - pX[i]); in GetInterpRatioV12()
|
| /OK3568_Linux_fs/external/camera_engine_rkaiq/rkaiq/algos/amerge/ |
| H A D | rk_aiq_amerge_algo_v10.cpp | 66 float MergeGetInterpRatioV10(float* pX, int lo, int hi, float CtrlValue, int length_max) { in MergeGetInterpRatioV10() argument 69 if (CtrlValue < pX[0]) { in MergeGetInterpRatioV10() 73 } else if (CtrlValue >= pX[length_max - 1]) { in MergeGetInterpRatioV10() 79 if (CtrlValue >= pX[i] && CtrlValue < pX[i + 1]) { in MergeGetInterpRatioV10() 82 ratio = (CtrlValue - pX[i]) / (pX[i + 1] - pX[i]); in MergeGetInterpRatioV10()
|
| H A D | rk_aiq_amerge_algo_v11.cpp | 66 float MergeGetInterpRatioV11(float* pX, int lo, int hi, float CtrlValue, int length_max) { in MergeGetInterpRatioV11() argument 69 if (CtrlValue < pX[0]) { in MergeGetInterpRatioV11() 73 } else if (CtrlValue >= pX[length_max - 1]) { in MergeGetInterpRatioV11() 79 if (CtrlValue >= pX[i] && CtrlValue < pX[i + 1]) { in MergeGetInterpRatioV11() 82 ratio = (CtrlValue - pX[i]) / (pX[i + 1] - pX[i]); in MergeGetInterpRatioV11()
|
| H A D | rk_aiq_amerge_algo_v12.cpp | 66 float MergeGetInterpRatioV12(float* pX, int lo, int hi, float CtrlValue, int length_max) { in MergeGetInterpRatioV12() argument 69 if (CtrlValue < pX[0]) { in MergeGetInterpRatioV12() 73 } else if (CtrlValue >= pX[length_max - 1]) { in MergeGetInterpRatioV12() 79 if (CtrlValue >= pX[i] && CtrlValue < pX[i + 1]) { in MergeGetInterpRatioV12() 82 ratio = (CtrlValue - pX[i]) / (pX[i + 1] - pX[i]); in MergeGetInterpRatioV12()
|
| /OK3568_Linux_fs/external/camera_engine_rkaiq/rkaiq/algos/adrc/ |
| H A D | rk_aiq_adrc_algo_v10.cpp | 43 float DrcGetInterpRatioV10(float* pX, int lo, int hi, float CtrlValue, int length_max) { in DrcGetInterpRatioV10() argument 46 if (CtrlValue < pX[0]) { in DrcGetInterpRatioV10() 50 } else if (CtrlValue >= pX[length_max - 1]) { in DrcGetInterpRatioV10() 56 if (CtrlValue >= pX[i] && CtrlValue < pX[i + 1]) { in DrcGetInterpRatioV10() 59 ratio = (CtrlValue - pX[i]) / (pX[i + 1] - pX[i]); in DrcGetInterpRatioV10()
|
| H A D | rk_aiq_adrc_algo_v11.cpp | 43 float DrcGetInterpRatioV11(float* pX, int lo, int hi, float CtrlValue, int length_max) { in DrcGetInterpRatioV11() argument 46 if (CtrlValue < pX[0]) { in DrcGetInterpRatioV11() 50 } else if (CtrlValue >= pX[length_max - 1]) { in DrcGetInterpRatioV11() 56 if (CtrlValue >= pX[i] && CtrlValue < pX[i + 1]) { in DrcGetInterpRatioV11() 59 ratio = (CtrlValue - pX[i]) / (pX[i + 1] - pX[i]); in DrcGetInterpRatioV11()
|
| H A D | rk_aiq_adrc_algo_v12.cpp | 43 float DrcGetInterpRatioV12(float* pX, int lo, int hi, float CtrlValue, int length_max) { in DrcGetInterpRatioV12() argument 46 if (CtrlValue < pX[0]) { in DrcGetInterpRatioV12() 50 } else if (CtrlValue >= pX[length_max - 1]) { in DrcGetInterpRatioV12() 56 if (CtrlValue >= pX[i] && CtrlValue < pX[i + 1]) { in DrcGetInterpRatioV12() 59 ratio = (CtrlValue - pX[i]) / (pX[i + 1] - pX[i]); in DrcGetInterpRatioV12()
|
| /OK3568_Linux_fs/external/security/rk_tee_user/v2/export-ta_arm32/include/mbedtls/ |
| H A D | dhm.h | 114 mbedtls_mpi pX; /*!< The previous \c X. */ member
|
| /OK3568_Linux_fs/external/security/rk_tee_user/v2/export-ta_arm64/include/mbedtls/ |
| H A D | dhm.h | 114 mbedtls_mpi pX; /*!< The previous \c X. */ member
|
| /OK3568_Linux_fs/external/security/rk_tee_user/v2/export-ta_arm32/host_include/mbedtls/ |
| H A D | dhm.h | 114 mbedtls_mpi pX; /*!< The previous \c X. */ member
|
| /OK3568_Linux_fs/external/security/rk_tee_user/v2/export-ta_arm64/host_include/mbedtls/ |
| H A D | dhm.h | 114 mbedtls_mpi pX; /*!< The previous \c X. */ member
|
| /OK3568_Linux_fs/device/rockchip/common/images/oem/oem_facial_gate/ |
| H A D | ir.yuv | 82 …ihhiiiijiijjjjiiijjjjjiihihhhhhijjiiiijjikkjhhkkkkkkkklmmnnoopppqrrsstuvxy|pX]��M_�����znUG?>4.+,…
|
| /OK3568_Linux_fs/device/rockchip/common/images/userdata/userdata_normal/media/ |
| H A D | yuv420_p352x288.yuv | 82 …]]^]]]][[][VRKB:2--,./00--,,,,-,-,./,,/00.-0(+202-#"*.38F7*apUD2[�h]X2PX.@pX:��pxn���������������… 126 …YZZYYVOJD;2,--,.//-,,+*+.---/.,.--/../4,$1(%$#"#(8*TfXdEHfcr[EGAldO@K��q�pX}����|���������������… 600 …���������������������������������������������������������������������������pX����̼����������������… 670 …����ƿ��y4`�����������������������������������������������������������������pX���������������������… 1139 …mnnnnnnnmnnnmljfcbbba`aaaa```YQLE;2/-,-12012-,-+-.+-//.///10100-.zt2& 1Z][pX?ME%5MQP^i�qQsV8iV O… 1369 …`]YRKC9/./..0010--*-/.010-.0010.00001.(5N:$.20'/>5+-RQC-=�t`^6VH:cbN3|�h�pX~����|���������������… 1700 …���������������������������������������������������������������������������pX�����������ƿ���������… 1751 …++.-*,+,--+--,*+,+,.++,,++,,+++,+*,'">NRm��vcXK;<KF1,!%1' (574714FFIM_���pX@DLOPRX_bcb^]YUSQQOOP… 1907 …���������������������������������������������������������������������������pX��������������������ǻ… 1992 …���ϼT:Qm���������ǽ������ſ�������������������������������������������qt�����pX���������������������… [all …]
|
| /OK3568_Linux_fs/recovery/ |
| HD | rootfs.cpio.gz | 107070100A8AEB0000041ED0000000000000000000000116841B48100000000000000FD0000000200000000000000000000000200000000.07070100A8B07C000081A40000000000000000000000016841263500000000000000FD0000000200000000000000000000000900000000.gitkeep07070100A8B07D000081A40000000000000000000000016841263500000000000000FD0000000200000000000000000000000B00000000.skip_fsck07070100A8AEB10000A1FF0000000000000000000000016841B0B600000007000000FD0000000200000000000000000000000400000000binusr/bin07070100A8B07E000081A400000000000000000000000168412635000001CC000000FD0000000200000000000000000000001100000000busybox. ... |