| /OK3568_Linux_fs/kernel/drivers/media/usb/em28xx/ |
| H A D | em28xx-i2c.c | 485 if (i2c_bus->algo_type == EM28XX_I2C_ALGO_EM28XX) in i2c_check_for_device() 487 else if (i2c_bus->algo_type == EM28XX_I2C_ALGO_EM2800) in i2c_check_for_device() 489 else if (i2c_bus->algo_type == EM28XX_I2C_ALGO_EM25XX_BUS_B) in i2c_check_for_device() 501 if (i2c_bus->algo_type == EM28XX_I2C_ALGO_EM28XX) in i2c_recv_bytes() 503 else if (i2c_bus->algo_type == EM28XX_I2C_ALGO_EM2800) in i2c_recv_bytes() 505 else if (i2c_bus->algo_type == EM28XX_I2C_ALGO_EM25XX_BUS_B) in i2c_recv_bytes() 517 if (i2c_bus->algo_type == EM28XX_I2C_ALGO_EM28XX) in i2c_send_bytes() 519 else if (i2c_bus->algo_type == EM28XX_I2C_ALGO_EM2800) in i2c_send_bytes() 521 else if (i2c_bus->algo_type == EM28XX_I2C_ALGO_EM25XX_BUS_B) in i2c_send_bytes() 552 i2c_bus->algo_type == EM28XX_I2C_ALGO_EM28XX) { in em28xx_i2c_xfer() [all …]
|
| H A D | em28xx.h | 642 enum em28xx_i2c_algo_type algo_type; member 802 enum em28xx_i2c_algo_type algo_type);
|
| /OK3568_Linux_fs/external/camera_engine_rkaiq/rkaiq/uAPI/include/ |
| H A D | rk_aiq_user_api_sysctl.h | 198 const int algo_type, 220 const int algo_type, 235 const int algo_type, 249 rk_aiq_uapi_sysctl_getEnabledAxlibCtx(const rk_aiq_sys_ctx_t* ctx, const int algo_type); 264 rk_aiq_uapi_sysctl_getAxlibCtx(const rk_aiq_sys_ctx_t* ctx, const int algo_type, const int lib_id);
|
| /OK3568_Linux_fs/u-boot/cmd/ |
| H A D | crypto.c | 76 #define HASH_TEST(algo_type, data_in, hash_val) {\ argument 78 .mode_name = #algo_type, \ 79 .algo = CRYPTO_##algo_type, \ 86 #define HMAC_TEST(algo_type, data_in, hash_val, hmac_key) {\ argument 88 .mode_name = #algo_type, \ 89 .algo = CRYPTO_HMAC_##algo_type, \ 98 #define CIPHER_XTS_TEST(algo_type, mode_type, key1, key2, iv_val, in, out) { \ argument 99 .algo_name = #algo_type, \ 101 .algo = CRYPTO_##algo_type,\ 117 #define CIPHER_AE_TEST(algo_type, mode_type, key_val, iv_val, \ argument [all …]
|
| /OK3568_Linux_fs/external/camera_engine_rkaiq/rkaiq/uAPI2/ |
| H A D | rk_aiq_user_api2_sysctl.cpp | 143 const int algo_type, in rk_aiq_uapi2_sysctl_enableAxlib() argument 147 return rk_aiq_uapi_sysctl_enableAxlib(ctx, algo_type, lib_id, enable); in rk_aiq_uapi2_sysctl_enableAxlib() 152 const int algo_type, in rk_aiq_uapi2_sysctl_getAxlibStatus() argument 155 return rk_aiq_uapi_sysctl_getAxlibStatus(ctx, algo_type, lib_id); in rk_aiq_uapi2_sysctl_getAxlibStatus() 159 rk_aiq_uapi2_sysctl_getEnabledAxlibCtx(const rk_aiq_sys_ctx_t* ctx, const int algo_type) in rk_aiq_uapi2_sysctl_getEnabledAxlibCtx() argument 161 return rk_aiq_uapi_sysctl_getEnabledAxlibCtx(ctx, algo_type); in rk_aiq_uapi2_sysctl_getEnabledAxlibCtx()
|
| /OK3568_Linux_fs/external/camera_engine_rkaiq/rkaiq/ |
| H A D | RkAiqCamGroupManager.h | 198 RkAiqAlgoContext* getEnabledAxlibCtx(const int algo_type); 199 RkAiqAlgoContext* getAxlibCtx(const int algo_type, const int lib_id); 200 RkAiqCamgroupHandle* getAiqCamgroupHandle(const int algo_type, const int lib_id); 281 SmartPtr<RkAiqCamgroupHandle> getDefAlgoTypeHandle(int algo_type); 283 std::map<int, SmartPtr<RkAiqCamgroupHandle>>* getAlgoTypeHandleMap(int algo_type);
|
| H A D | RkAiqCamGroupManager.cpp | 667 RkAiqCamGroupManager::getDefAlgoTypeHandle(int algo_type) in getDefAlgoTypeHandle() argument 670 if (mDefAlgoHandleMap.find(algo_type) != mDefAlgoHandleMap.end()) in getDefAlgoTypeHandle() 671 return mDefAlgoHandleMap.at(algo_type); in getDefAlgoTypeHandle() 673 LOG1_CAMGROUP("can't find algo handle %d", algo_type); in getDefAlgoTypeHandle() 678 RkAiqCamGroupManager::getAlgoTypeHandleMap(int algo_type) in getAlgoTypeHandleMap() argument 680 if (mAlgoHandleMaps.find(algo_type) != mAlgoHandleMaps.end()) in getAlgoTypeHandleMap() 681 return &mAlgoHandleMaps.at(algo_type); in getAlgoTypeHandleMap() 683 LOG1_CAMGROUP("can't find algo map %d", algo_type); in getAlgoTypeHandleMap() 1447 RkAiqCamGroupManager::getEnabledAxlibCtx(const int algo_type) in getEnabledAxlibCtx() argument 1449 if (algo_type <= RK_AIQ_ALGO_TYPE_NONE || in getEnabledAxlibCtx() [all …]
|
| /OK3568_Linux_fs/external/camera_engine_rkaiq/rkaiq/uAPI/ |
| H A D | rk_aiq_user_api_sysctl.cpp | 953 const int algo_type, in rk_aiq_uapi_sysctl_unRegLib() argument 962 return group_ctx->cam_group_manager->rmAlgo(algo_type, lib_id); in rk_aiq_uapi_sysctl_unRegLib() 967 return ctx->_analyzer->rmAlgo(algo_type, lib_id); in rk_aiq_uapi_sysctl_unRegLib() 972 const int algo_type, in rk_aiq_uapi_sysctl_enableAxlib() argument 982 return group_ctx->cam_group_manager->enableAlgo(algo_type, lib_id, enable); in rk_aiq_uapi_sysctl_enableAxlib() 987 return ctx->_analyzer->enableAlgo(algo_type, lib_id, enable); in rk_aiq_uapi_sysctl_enableAxlib() 993 const int algo_type, in rk_aiq_uapi_sysctl_getAxlibStatus() argument 1002 return group_ctx->cam_group_manager->getAxlibStatus(algo_type, lib_id); in rk_aiq_uapi_sysctl_getAxlibStatus() 1007 return ctx->_analyzer->getAxlibStatus(algo_type, lib_id); in rk_aiq_uapi_sysctl_getAxlibStatus() 1011 rk_aiq_uapi_sysctl_getEnabledAxlibCtx(const rk_aiq_sys_ctx_t* ctx, const int algo_type) in rk_aiq_uapi_sysctl_getEnabledAxlibCtx() argument [all …]
|
| /OK3568_Linux_fs/external/camera_engine_rkaiq/rkaiq/include/uAPI2/ |
| H A D | rk_aiq_user_api2_sysctl.h | 164 const int algo_type, 186 const int algo_type, 201 rk_aiq_uapi2_sysctl_getEnabledAxlibCtx(const rk_aiq_sys_ctx_t* ctx, const int algo_type);
|
| /OK3568_Linux_fs/external/camera_engine_rkaiq/rkaiq/aiq_core/ |
| H A D | RkAiqCore.cpp | 1157 RkAiqCore::getAiqAlgoHandle(const int algo_type) in getAiqAlgoHandle() argument 1160 SmartPtr<RkAiqHandle>* handlePtr = getCurAlgoTypeHandle(algo_type); in getAiqAlgoHandle() 1169 RkAiqCore::getCurAlgoTypeHandle(int algo_type) in getCurAlgoTypeHandle() argument 1172 if (mCurAlgoHandleMaps.find(algo_type) != mCurAlgoHandleMaps.end()) in getCurAlgoTypeHandle() 1173 return &mCurAlgoHandleMaps.at(algo_type); in getCurAlgoTypeHandle() 1175 LOGE("can't find algo handle %d", algo_type); in getCurAlgoTypeHandle() 1180 RkAiqCore::getAlgoTypeHandleMap(int algo_type) in getAlgoTypeHandleMap() argument 1182 if (mAlgoHandleMaps.find(algo_type) != mAlgoHandleMaps.end()) in getAlgoTypeHandleMap() 1183 return &mAlgoHandleMaps.at(algo_type); in getAlgoTypeHandleMap() 1185 LOGE("can't find algo map %d", algo_type); in getAlgoTypeHandleMap() [all …]
|
| H A D | RkAiqCore.h | 256 RkAiqAlgoContext* getEnabledAxlibCtx(const int algo_type); 257 RkAiqAlgoContext* getAxlibCtx(const int algo_type, const int lib_id); 258 RkAiqHandle* getAiqAlgoHandle(const int algo_type); 439 SmartPtr<RkAiqHandle>* getCurAlgoTypeHandle(int algo_type); 467 std::map<int, SmartPtr<RkAiqHandle>>* getAlgoTypeHandleMap(int algo_type);
|
| H A D | RkAiqAnalyzeGroupManager.cpp | 603 int algo_type = algoDes[i].des->type; in parseAlgoGroup() local 604 if ((1ULL << algo_type) & disAlgosMask) in parseAlgoGroup() 614 if (mAiqCore->getCurAlgoTypeHandle(algo_type)) { in parseAlgoGroup() 615 mGroupAlgoListMap[group].push_back(*mAiqCore->getCurAlgoTypeHandle(algo_type)); in parseAlgoGroup() 616 … mGroupAlgoListMap[RK_AIQ_CORE_ANALYZE_ALL].push_back(*mAiqCore->getCurAlgoTypeHandle(algo_type)); in parseAlgoGroup()
|
| /OK3568_Linux_fs/u-boot/drivers/ddr/marvell/a38x/ |
| H A D | ddr3_training_ip.h | 172 int hws_ddr3_tip_run_alg(u32 dev_num, enum hws_algo_type algo_type);
|
| H A D | ddr3_training_ip_prv_if.h | 55 u32 dev_num, enum hws_algo_type algo_type);
|
| H A D | ddr3_training.c | 92 static int odt_test(u32 dev_num, enum hws_algo_type algo_type); 799 int hws_ddr3_tip_run_alg(u32 dev_num, enum hws_algo_type algo_type) in hws_ddr3_tip_run_alg() argument 805 return odt_test(dev_num, algo_type); in hws_ddr3_tip_run_alg() 808 if (algo_type == ALGO_TYPE_DYNAMIC) { in hws_ddr3_tip_run_alg() 844 static int odt_test(u32 dev_num, enum hws_algo_type algo_type) in odt_test() argument 861 if (algo_type == ALGO_TYPE_DYNAMIC) { in odt_test()
|
| /OK3568_Linux_fs/kernel/drivers/net/wireless/intel/iwlwifi/fw/api/ |
| H A D | location.h | 454 u8 algo_type; member
|
| /OK3568_Linux_fs/external/camera_engine_rkaiq/rkaiq/common/ |
| H A D | rk_aiq_types_priv.h | 487 RkAiqAlgoType_t algo_type; member
|
| /OK3568_Linux_fs/kernel/drivers/net/wireless/intel/iwlwifi/mvm/ |
| H A D | ftm-initiator.c | 449 target->algo_type = IWL_MVM_FTM_INITIATOR_ALGO; in iwl_mvm_ftm_put_target_v2()
|
| /OK3568_Linux_fs/kernel/crypto/ |
| H A D | testmgr.c | 3551 u32 algo_type = type & CRYPTO_ALG_TYPE_ACOMPRESS_MASK; in alg_test_comp() local 3553 if (algo_type == CRYPTO_ALG_TYPE_ACOMPRESS) { in alg_test_comp()
|