Home
last modified time | relevance | path

Searched defs:inputData (Results 1 – 25 of 127) sorted by relevance

123456

/ohos5.0/foundation/multimedia/player_framework/test/fuzztest/player_fuzztest/playerstub_fuzzer/
H A Dplayer_service_proxy_fuzzer.cpp100 void PlayerServiceProxyFuzzer::SendRequest(uint32_t code, uint8_t *inputData, size_t size, bool isF… in SendRequest()
162 …32_t PlayerServiceProxyFuzzer::SetFdSourceStatic(PlayerServiceProxyFuzzer* ptr, uint8_t *inputData, in SetFdSourceStatic()
212 …2_t PlayerServiceProxyFuzzer::AddSubSourceStatic(PlayerServiceProxyFuzzer* ptr, uint8_t *inputData, in AddSubSourceStatic()
231 …t PlayerServiceProxyFuzzer::AddSubFdSourceStatic(PlayerServiceProxyFuzzer* ptr, uint8_t *inputData, in AddSubFdSourceStatic()
291 …2_t PlayerServiceProxyFuzzer::PrepareAsyncStatic(PlayerServiceProxyFuzzer* ptr, uint8_t *inputData, in PrepareAsyncStatic()
421 …t PlayerServiceProxyFuzzer::GetCurrentTimeStatic(PlayerServiceProxyFuzzer* ptr, uint8_t *inputData, in GetCurrentTimeStatic()
440 …32_t PlayerServiceProxyFuzzer::GetDurationStatic(PlayerServiceProxyFuzzer* ptr, uint8_t *inputData, in GetDurationStatic()
572 …2_t PlayerServiceProxyFuzzer::SetParameterStatic(PlayerServiceProxyFuzzer* ptr, uint8_t *inputData, in SetParameterStatic()
590 …32_t PlayerServiceProxyFuzzer::DestroyStubStatic(PlayerServiceProxyFuzzer* ptr, uint8_t *inputData, in DestroyStubStatic()
706 …_t PlayerServiceProxyFuzzer::GetVideoWidthStatic(PlayerServiceProxyFuzzer* ptr, uint8_t *inputData, in GetVideoWidthStatic()
[all …]
/aosp12/packages/modules/NeuralNetworks/common/operations/
H A DActivation.cpp70 bool relu1Float(const T* inputData, const Shape& inputShape, T* outputData, in relu1Float()
80 bool relu6Float(const T* inputData, const Shape& inputShape, T* outputData, in relu6Float()
89 bool tanhFloat16(const _Float16* inputData, const Shape& inputShape, _Float16* outputData, in tanhFloat16()
99 bool tanhFloat32(const float* inputData, const Shape& inputShape, float* outputData, in tanhFloat32()
110 bool logisticFloat(const T* inputData, const Shape& inputShape, T* outputData, in logisticFloat()
141 bool reluQuant8(const uint8_t* inputData, const Shape& inputShape, uint8_t* outputData, in reluQuant8()
147 bool relu1Quant8(const uint8_t* inputData, const Shape& inputShape, uint8_t* outputData, in relu1Quant8()
153 bool relu6Quant8(const uint8_t* inputData, const Shape& inputShape, uint8_t* outputData, in relu6Quant8()
159 bool tanhQuant8(const uint8_t* inputData, const Shape& inputShape, uint8_t* outputData, in tanhQuant8()
189 bool logisticQuant8(const uint8_t* inputData, const Shape& inputShape, uint8_t* outputData, in logisticQuant8()
[all …]
H A DSplit.cpp29 bool splitGeneric(const Scalar* inputData, const Shape& inputShape, int32_t axis, in splitGeneric()
55 bool splitFloat16(const _Float16* inputData, const Shape& inputShape, int32_t axis, in splitFloat16()
62 bool splitFloat32(const float* inputData, const Shape& inputShape, int32_t axis, in splitFloat32()
69 bool splitQuant8(const uint8_t* inputData, const Shape& inputShape, int32_t axis, in splitQuant8()
76 bool splitQuant8Signed(const int8_t* inputData, const Shape& inputShape, int32_t axis, in splitQuant8Signed()
83 bool splitInt32(const int32_t* inputData, const Shape& inputShape, int32_t axis, in splitInt32()
H A DPooling.cpp141 bool averagePoolNhwc(const float* inputData, const Shape& inputShape, const PoolingParam& param, in averagePoolNhwc()
151 bool averagePoolNhwc(const _Float16* inputData, const Shape& inputShape, const PoolingParam& param, in averagePoolNhwc()
164 bool averagePoolNhwc(const uint8_t* inputData, const Shape& inputShape, const PoolingParam& param, in averagePoolNhwc()
174 bool averagePoolNhwc(const int8_t* inputData, const Shape& inputShape, const PoolingParam& param, in averagePoolNhwc()
187 bool l2PoolNhwc(const float* inputData, const Shape& inputShape, const PoolingParam& param, in l2PoolNhwc()
197 bool l2PoolNhwc(const _Float16* inputData, const Shape& inputShape, const PoolingParam& param, in l2PoolNhwc()
209 bool maxPoolNhwc(const float* inputData, const Shape& inputShape, const PoolingParam& param, in maxPoolNhwc()
219 bool maxPoolNhwc(const uint8_t* inputData, const Shape& inputShape, const PoolingParam& param, in maxPoolNhwc()
229 bool maxPoolNhwc(const int8_t* inputData, const Shape& inputShape, const PoolingParam& param, in maxPoolNhwc()
241 bool maxPoolNhwc(const _Float16* inputData, const Shape& inputShape, const PoolingParam& param, in maxPoolNhwc()
[all …]
H A DReshape.cpp34 bool copyData(const void* inputData, const Shape& inputShape, void* outputData, in copyData()
43 bool depthToSpaceGeneric(const T* inputData, const Shape& inputShape, int32_t blockSize, in depthToSpaceGeneric()
64 bool spaceToDepthGeneric(const T* inputData, const Shape& inputShape, int32_t blockSize, in spaceToDepthGeneric()
85 bool padGeneric(const T* inputData, const Shape& inputShape, const int32_t* paddings, T padValue, in padGeneric()
198 bool batchToSpaceGeneric(const T* inputData, const Shape& inputShape, const int32_t* blockSize, in batchToSpaceGeneric()
223 bool spaceToBatchGeneric(const T* inputData, const Shape& inputShape, const int32_t* blockSize, in spaceToBatchGeneric()
H A DL2Normalization.cpp48 inline bool l2normFloat32Impl(const float* inputData, const Shape& inputShape, int32_t axis, in l2normFloat32Impl()
76 inline bool l2normQuant8Impl(const uint8_t* inputData, const Shape& inputShape, int32_t axis, in l2normQuant8Impl()
108 inline bool l2normQuant8SignedImpl(const int8_t* inputData, const Shape& inputShape, int32_t axis, in l2normQuant8SignedImpl()
139 bool l2normFloat32(const float* inputData, const Shape& inputShape, int32_t axis, float* outputData, in l2normFloat32()
155 bool l2normFloat16(const _Float16* inputData, const Shape& inputShape, int32_t axis, in l2normFloat16()
168 bool l2normQuant8(const uint8_t* inputData, const Shape& inputShape, int32_t axis, in l2normQuant8()
184 bool l2normQuant8Signed(const int8_t* inputData, const Shape& inputShape, int32_t axis, in l2normQuant8Signed()
H A DSimpleMath.cpp33 bool meanFloat16(_Float16* inputData, const Shape& inputShape, const int32_t* axis, in meanFloat16()
48 bool meanGeneric(T* inputData, const Shape& inputShape, const int32_t* axis, const Shape& axisShape, in meanGeneric()
H A DArgMinMax.cpp29 static void argMinMaxImpl(const In* inputData, const Shape& inputShape, int32_t axis, bool isArgMin, in argMinMaxImpl()
51 bool argMinMaxGeneric(const uint8_t* inputData, const Shape& inputShape, int32 axis, bool isArgMin, in argMinMaxGeneric()
H A DCast.cpp44 bool copyToTensor(const FromT* inputData, int numElements, uint8_t* outputData, in copyToTensor()
72 bool eval(const uint8_t* inputData, const Shape& inputShape, uint8_t* outputData, in eval()
H A DQuantize.cpp40 bool quantizeToQuant8(const T* inputData, uint8_t* outputData, const Shape& outputShape) { in quantizeToQuant8()
52 bool quantizeToQuant8Signed(const T* inputData, int8_t* outputData, const Shape& outputShape) { in quantizeToQuant8Signed()
H A DSoftmax.cpp53 inline bool softmaxSlowFloat32(const float* inputData, const Shape& inputShape, const float beta, in softmaxSlowFloat32()
85 bool softmaxFloat32(const float* inputData, const Shape& inputShape, const float beta, int32_t axis, in softmaxFloat32()
101 bool softmaxFloat16(const _Float16* inputData, const Shape& inputShape, const float beta, in softmaxFloat16()
116 bool softmaxQuant8Impl(const T* inputData, const Shape& inputShape, const float beta, int32_t axis, in softmaxQuant8Impl()
203 bool softmaxQuant8(const T* inputData, const Shape& inputShape, const float beta, int32_t axis, in softmaxQuant8()
/ohos5.0/foundation/distributedhardware/distributed_screen/services/common/test/unittest/databuffer/
H A Ddata_buffer_test.cpp119 unsigned char *inputData = nullptr; variable
132 unsigned char *inputData = new unsigned char[10] {0}; in __anon036f55c70102() variable
148 unsigned char *inputData = new unsigned char[10] {0}; in __anon036f55c70202() variable
/ohos5.0/foundation/multimedia/player_framework/test/fuzztest/avmetadata_fuzztest/avmetadatastub_fuzzer/
H A Davmetadata_service_proxy_fuzzer.cpp73 void AVMetadataServiceProxyFuzzer::SendRequest(uint32_t code, uint8_t *inputData, size_t size, bool… in SendRequest()
84 …tadataServiceProxyFuzzer::SetUriSourceStatic(AVMetadataServiceProxyFuzzer* ptr, uint8_t *inputData, in SetUriSourceStatic()
102 …etadataServiceProxyFuzzer::SetFdSourceStatic(AVMetadataServiceProxyFuzzer* ptr, uint8_t *inputData, in SetFdSourceStatic()
157 …ataServiceProxyFuzzer::ResolveMetadataStatic(AVMetadataServiceProxyFuzzer* ptr, uint8_t *inputData, in ResolveMetadataStatic()
175 …ServiceProxyFuzzer::ResolveMetadataMapStatic(AVMetadataServiceProxyFuzzer* ptr, uint8_t *inputData, in ResolveMetadataMapStatic()
193 …adataServiceProxyFuzzer::GetAVMetadataStatic(AVMetadataServiceProxyFuzzer* ptr, uint8_t *inputData, in GetAVMetadataStatic()
211 …ataServiceProxyFuzzer::FetchArtPictureStatic(AVMetadataServiceProxyFuzzer* ptr, uint8_t *inputData, in FetchArtPictureStatic()
229 …taServiceProxyFuzzer::FetchFrameAtTimeStatic(AVMetadataServiceProxyFuzzer* ptr, uint8_t *inputData, in FetchFrameAtTimeStatic()
251 … AVMetadataServiceProxyFuzzer::ReleaseStatic(AVMetadataServiceProxyFuzzer* ptr, uint8_t *inputData, in ReleaseStatic()
269 …etadataServiceProxyFuzzer::DestroyStubStatic(AVMetadataServiceProxyFuzzer* ptr, uint8_t *inputData, in DestroyStubStatic()
/ohos5.0/foundation/ai/ai_engine/test/function/prepare/
H A Dprepare_function_test.cpp83 char *inputData = const_cast<char*>(str); variable
140 char *inputData = const_cast<char*>(str); variable
202 char *inputData = const_cast<char*>(str); variable
263 char *inputData = const_cast<char*>(str); variable
325 char *inputData = const_cast<char*>(str); variable
387 char *inputData = const_cast<char*>(str); variable
448 char *inputData = const_cast<char*>(str); variable
/ohos5.0/foundation/ai/ai_engine/test/function/set_get_option/
H A Doption_function_test.cpp83 char *inputData = const_cast<char*>(str); in GetClientInfo() local
100 char *inputData = const_cast<char*>(str); in GetSyncAlgorithmInfo() local
119 char *inputData = const_cast<char*>(str); in GetAsyncAlgorithmInfo() local
166 char *inputData = const_cast<char*>(str); variable
245 char *inputData = const_cast<char*>(str); variable
336 char *inputData = const_cast<char*>(str); variable
395 char *inputData = const_cast<char*>(str); variable
/ohos5.0/foundation/ai/ai_engine/test/function/init/
H A Dinit_function_test.cpp101 char *inputData = const_cast<char*>(str); variable
149 char *inputData = const_cast<char*>(str); variable
197 char *inputData = const_cast<char*>(str); variable
245 char *inputData = const_cast<char*>(str); variable
290 char *inputData = const_cast<char*>(str); variable
335 char *inputData = const_cast<char*>(str); variable
/ohos5.0/foundation/multimodalinput/input/tools/event_inject/src/
H A Dprocessing_touch_screen_device.cpp30 std::vector<DeviceEvent> inputData = touchScreenEventArrays.events; in TransformJsonDataToInputData() local
52 std::vector<DeviceEvent> inputData = touchScreenEventArrays.events; in TransformJsonDataSingleTouchScreen() local
66 void ProcessingTouchScreenDevice::AnalysisTouchScreenDate(const std::vector<DeviceEvent> &inputData, in AnalysisTouchScreenDate()
85 …ocessingTouchScreenDevice::AnalysisSingleTouchScreenDate(const std::vector<DeviceEvent> &inputData, in AnalysisSingleTouchScreenDate()
H A Dprocessing_pad_device.cpp27 std::vector<DeviceEvent> inputData = fingerEventArrays.events; in TransformJsonDataToInputData() local
58 int32_t ProcessingPadDevice::AnalysisPadEvent(const std::vector<DeviceEvent>& inputData, in AnalysisPadEvent()
/ohos5.0/foundation/ai/ai_engine/test/function/destroy/
H A Ddestroy_function_test.cpp83 char *inputData = const_cast<char*>(str); variable
131 char *inputData = const_cast<char*>(str); variable
198 char *inputData = const_cast<char*>(str); variable
266 char *inputData = const_cast<char*>(str); variable
313 char *inputData = const_cast<char*>(str); variable
/ohos5.0/foundation/ai/ai_engine/test/function/sync_process/
H A Dsync_process_function_test.cpp75 char *inputData = const_cast<char*>(str); in TestGetRightInfo() local
110 char *inputData = const_cast<char*>(str); variable
157 char *inputData = const_cast<char*>(str); variable
229 char *inputData = const_cast<char*>(str); variable
298 char *inputData = const_cast<char *>(str); variable
/ohos5.0/base/security/device_auth/services/session_manager/src/session/v2/auth_sub_session/protocol_lib/
H A Ddl_speke_protocol.c134 static int32_t GetAuthIdPeerFromInput(const CJson *inputData, DlSpekeParams *params, bool isClient) in GetAuthIdPeerFromInput()
158 static int32_t GetSaltFromInput(const CJson *inputData, DlSpekeParams *params) in GetSaltFromInput()
171 static int32_t GetEpkPeerFromInput(const CJson *inputData, DlSpekeParams *params, bool isClient) in GetEpkPeerFromInput()
190 static int32_t GetKcfDataPeerFromInput(const CJson *inputData, DlSpekeParams *params, bool isClient) in GetKcfDataPeerFromInput()
204 static int32_t DlSpekeClientStartReq(DlSpekeProtocol *impl, const CJson *inputData, CJson **outputD… in DlSpekeClientStartReq()
210 static int32_t SetSelfKeyLenByMod(const CJson *inputData, DlSpekeParams *params) in SetSelfKeyLenByMod()
233 static int32_t DlSpekeServerStartRspParseEvent(const CJson *inputData, DlSpekeParams *params) in DlSpekeServerStartRspParseEvent()
739 static int32_t DlSpekeClientFinishReqParseEvent(const CJson *inputData, DlSpekeParams *params) in DlSpekeClientFinishReqParseEvent()
828 static int32_t DlSpekeServerFinishRspParseEvent(const CJson *inputData, DlSpekeParams *params) in DlSpekeServerFinishRspParseEvent()
893 static int32_t DlSpekeClientFinishParseEvent(const CJson *inputData, DlSpekeParams *params) in DlSpekeClientFinishParseEvent()
[all …]
/ohos5.0/foundation/ai/ai_engine/services/client/algorithm_sdk/cv/image_classification/source/
H A Dic_sdk_impl.cpp84 int32_t IcSdkImpl::OnSyncExecute(const IcInput &inputData, DataInfo &outputInfo) in OnSyncExecute()
126 int32_t IcSdkImpl::SyncExecute(const IcInput &inputData) in SyncExecute()
H A Dic_sdk.cpp37 int32_t IcSdk::SyncExecute(const IcInput &inputData) in SyncExecute()
/ohos5.0/foundation/ai/ai_engine/test/function/release/
H A Drelease_function_test.cpp83 char *inputData = const_cast<char*>(str); variable
145 char *inputData = const_cast<char*>(str); variable
207 char *inputData = const_cast<char*>(str); variable
273 char *inputData = const_cast<char*>(str); variable
/aosp12/frameworks/base/core/java/com/android/internal/ml/clustering/
H A DKMeans.java63 public List<Mean> predict(final int k, final float[][] inputData) { in predict()
115 public void checkDataSetSanity(float[][] inputData) { in checkDataSetSanity()
140 private boolean step(final ArrayList<Mean> means, final float[][] inputData) { in step()

123456