Home
last modified time | relevance | path

Searched refs:inputEnd (Results 1 – 7 of 7) sorted by relevance

/ohos5.0/foundation/multimedia/image_effect/frameworks/native/utils/common/
H A Dstring_helper.cpp37 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 Drs_surface_buffer_callback_manager.h149 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 Dstaggered_animation_state.cpp171 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 DAudioDecoderDemoCommon.cpp346 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 DAudioEncoderDemoCommon.h231 struct timeval inputStart, inputEnd; variable
/ohos5.0/foundation/multimedia/av_codec/test/moduletest/audio_decoder/Common/include/
H A DAudioDecoderDemoCommon.h237 struct timeval inputStart, inputEnd; variable
/ohos5.0/foundation/multimedia/av_codec/test/moduletest/audio_encoder/Common/src/
H A DAudioEncoderDemoCommon.cpp361 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()