Searched refs:inputEnd (Results 1 – 7 of 7) sorted by relevance
/ohos5.0/foundation/multimedia/image_effect/frameworks/native/utils/common/ |
H A D | string_helper.cpp | 37 std::string inputEnd = input.substr(input.length() - suffix.length(), suffix.length()); in EndsWithIgnoreCase() local 38 std::transform(inputEnd.begin(), inputEnd.end(), inputEnd.begin(), ::tolower); in EndsWithIgnoreCase() 43 return inputEnd.compare(suffixLower) == 0; in EndsWithIgnoreCase()
|
/ohos5.0/foundation/graphic/graphic_2d/rosen/modules/render_service_base/include/pipeline/ |
H A D | rs_surface_buffer_callback_manager.h | 149 std::tuple<InputIters...> inputEnd, std::tuple<OutPutIters...> outputBegin, UnaryPred unaryPred, in CopyIf() argument 152 for (; inputBegin != inputEnd; (++std::get<Is>(inputBegin), ...)) { in CopyIf() 179 std::tuple<InputIters...> inputEnd, std::tuple<OutPutIters...> outputBegin, UnaryPred unaryPred) in CopyIf() argument 182 return Detail::CopyIf(inputBegin, inputEnd, outputBegin, unaryPred, in CopyIf()
|
/ohos5.0/foundation/graphic/graphic_3d/lume/metaobject/src/animation/ |
H A D | staggered_animation_state.cpp | 171 constexpr float MapTo01Range(float value, float inputStart, float inputEnd, bool reverse) noexcept in MapTo01Range() argument 174 const auto offset = 1.f - inputEnd; in MapTo01Range() 176 inputEnd += offset; in MapTo01Range() 178 return (1 / (inputEnd - inputStart)) * (value - inputStart); in MapTo01Range()
|
/ohos5.0/foundation/multimedia/av_codec/test/moduletest/audio_decoder/Common/src/ |
H A D | AudioDecoderDemoCommon.cpp | 346 gettimeofday(&inputEnd, NULL); in HandleEOS() 347 …otherTime += (inputEnd.tv_sec - inputStart.tv_sec) + (inputEnd.tv_usec - inputStart.tv_usec) / DEF… in HandleEOS() 412 gettimeofday(&inputEnd, NULL); in NativeInputFunc() 413 …otherTime += (inputEnd.tv_sec - inputStart.tv_sec) + (inputEnd.tv_usec - inputStart.tv_usec) / DEF… in NativeInputFunc()
|
/ohos5.0/foundation/multimedia/av_codec/test/moduletest/audio_encoder/Common/include/ |
H A D | AudioEncoderDemoCommon.h | 231 struct timeval inputStart, inputEnd; variable
|
/ohos5.0/foundation/multimedia/av_codec/test/moduletest/audio_decoder/Common/include/ |
H A D | AudioDecoderDemoCommon.h | 237 struct timeval inputStart, inputEnd; variable
|
/ohos5.0/foundation/multimedia/av_codec/test/moduletest/audio_encoder/Common/src/ |
H A D | AudioEncoderDemoCommon.cpp | 361 gettimeofday(&inputEnd, NULL); in NativeInputFunc() 362 otherTime += (inputEnd.tv_sec - inputStart.tv_sec) + in NativeInputFunc() 363 (inputEnd.tv_usec - inputStart.tv_usec) / DEFAULT_TIME_NUM; in NativeInputFunc()
|