/ohos5.0/foundation/resourceschedule/ffrt/src/eu/ |
H A D | co_routine.cpp | 53 co->stkMem.size - co->ctx.regs[REG_SP]); in CoStackCheck() 220 CoStackCheck(co); in CoExit() 221 CoSwitch(&co->ctx, &co->thEnv->schCtx); in CoExit() 281 if (!co) { in AllocNewCoRoutine() 292 return co; in AllocNewCoRoutine() 304 int ret = munmap(co, co->allocatedSize); in CoMemFree() 369 … co2_init_context(&co->ctx, CoStartEntry, static_cast<void*>(co), co->stkMem.stk, co->stkMem.size); in CoCreat() 424 CoSwitch(&co->thEnv->schCtx, &co->ctx); in CoStart() 427 CoStackCheck(co); in CoStart() 470 CoStackCheck(co); in CoYield() [all …]
|
H A D | co_routine_factory.cpp | 25 void CoRoutineFreeMem(CoRoutine *co) in CoRoutineFreeMem() argument 27 ffrt::QSimpleAllocator<CoRoutine>::FreeMem(co); in CoRoutineFreeMem()
|
H A D | co_routine_factory.h | 24 void CoRoutineFreeMem(CoRoutine *co);
|
/ohos5.0/foundation/graphic/graphic_2d/rosen/modules/render_service_base/src/render/ |
H A D | rs_typeface_cache.cpp | 291 for (auto co : typefaceHashCode_) { in Dump() local 292 if (typefaceHashMap_.find(co.second) != typefaceHashMap_.end()) { in Dump() 293 auto [typeface, ref] = typefaceHashMap_.at(co.second); in Dump() 295 … "RSTypefaceCache Dump", std::to_string(co.first).c_str(), std::to_string(co.second).c_str(), in Dump() 307 for (auto co : typefaceHashCode_) { in ReplaySerialize() local 308 if (typefaceHashMap_.find(co.second) != typefaceHashMap_.end()) { in ReplaySerialize() 309 auto [typeface, ref] = typefaceHashMap_.at(co.second); in ReplaySerialize() 315 ss.write(reinterpret_cast<const char*>(&co.first), sizeof(co.first)); in ReplaySerialize() 364 for (auto co : typefaceHashCode_) { in ReplayClear() local 365 if (co.first & replayMask) { in ReplayClear() [all …]
|
/ohos5.0/foundation/graphic/graphic_3d/lume/LumeRender/api/render/shaders/common/ |
H A D | render_color_conversion_common.h | 104 const float co = dot(rgb, vec3(0.5, 0.0, -0.5)); in rgbToYCoCg() local 106 return vec3(y, co, cg); in rgbToYCoCg() 116 const float co = ycocg.g; in yCoCgToRgb() local 118 return vec3(y + co - cg, y + cg, y - co - cg); in yCoCgToRgb()
|
/ohos5.0/foundation/resourceschedule/ffrt/test/ut/testcase/ |
H A D | ut_coroutine.cpp | 62 ffrt_coroutine_ret_t stackless_coroutine(void* co) in stackless_coroutine() argument 64 StacklessCoroutine1* stacklesscoroutine = reinterpret_cast<StacklessCoroutine1*>(co); in stackless_coroutine() 80 ffrt_coroutine_ret_t exec_stackless_coroutine(void *co) in exec_stackless_coroutine() argument 82 return stackless_coroutine(co); in exec_stackless_coroutine() 85 void destroy_stackless_coroutine(void *co) in destroy_stackless_coroutine() argument
|
/ohos5.0/foundation/graphic/graphic_3d/lume/LumeRender/src/vulkan/ |
H A D | device_vk.cpp | 135 auto& fsr = co.fsr; in GetPhysicalDeviceFragmentShadingRateStructs() 157 co.mv = make_unique<PhysicalDeviceMultiviewStructsVk>(); in GetPhysicalDeviceMultiviewFeaturesStructs() 158 auto& mv = co.mv; in GetPhysicalDeviceMultiviewFeaturesStructs() 182 auto& di = co.di; in GetPhysicalDeviceDescriptorIndexingFeaturesStructs() 251 co.rt = make_unique<PhysicalDeviceRayTracingStructsVk>(); in GetPhysicalDeviceRayTracingStructs() 252 auto& rt = co.rt; in GetPhysicalDeviceRayTracingStructs() 291 co.ycbcr = make_unique<PhysicalDeviceYcbcrStructsVk>(); in GetPhysicalDeviceYcbcrStructs() 292 auto& ycbcr = co.ycbcr; in GetPhysicalDeviceYcbcrStructs() 319 co.maintenance4 = make_unique<PhysicalDeviceMaintenance4Vk>(); in GetPhysicalDeviceMaintenance4Structs() 320 auto& m4 = co.maintenance4; in GetPhysicalDeviceMaintenance4Structs() [all …]
|
/ohos5.0/foundation/resourceschedule/ffrt/src/dfx/dump/ |
H A D | dump.cpp | 77 auto co = task->coRoutine; in DumpTask() local 78 …uintptr_t stackBottom = reinterpret_cast<uintptr_t>(reinterpret_cast<char*>(co) + sizeof(CoRoutine… in DumpTask() 79 uintptr_t stackTop = static_cast<uintptr_t>(stackBottom + co->stkMem.size); in DumpTask()
|
/ohos5.0/docs/zh-cn/application-dev/internationalization/ |
H A D | i18n-locale-culture.md | 22 …排序、数字系统、小时周期,由小写字母u开头,每一个扩展参数由key和value组成,使用中划线拼接。例如,农历拼音排序使用”u-ca-chinese-co-pinyin”。<br/>支持的扩展参数… 29 | co | 表示用户使用的字符串排序规则,包括。例如,按照拼音排序使用”pinyin”表示。 |
|
/ohos5.0/foundation/resourceschedule/ffrt/src/core/ |
H A D | task_io.cpp | 71 void ffrt_submit_coroutine(void* co, ffrt_coroutine_ptr_t exec, ffrt_function_t destroy, const ffrt… 87 task->work.data = co;
|
H A D | task.cpp | 609 auto co = curTask->coRoutine; variable 610 if (co) { 611 *size = co->stkMem.size; 612 *stack_addr = static_cast<void*>(reinterpret_cast<char*>(co) + sizeof(CoRoutine) - 8);
|
/ohos5.0/foundation/resourceschedule/ffrt/interfaces/inner_api/c/ |
H A D | executor_task.h | 57 FFRT_C_API void ffrt_submit_coroutine(void* co, ffrt_coroutine_ptr_t exec, ffrt_function_t destroy,
|
/ohos5.0/base/update/packaging_tools/zipalign/ |
H A D | BUILD.gn | 30 "-co",
|
/ohos5.0/base/update/sys_installer/tools/zipalign/ |
H A D | BUILD.gn | 30 "-co",
|
/ohos5.0/docs/en/application-dev/internationalization/ |
H A D | i18n-locale-culture.md | 22 …value, which are separated using a hyphen (-). For example, **u-ca-chinese-co-pinyin** means colla… 29 | co | String collation rule used by the user. For example, **pinyin** means collation by Pinyin.|
|
/ohos5.0/foundation/multimedia/av_codec/test/unittest/resources/demuxer_res/ |
H A D | test_mpeg4_Gop25_4sec.ts | 723 …�~{;��rذN�Q��*%M��_��s��S��oF/ß�:5nd��s�Y����y�����a��lG���$���co�+}�ފs�����Ӱ"��7N��… 4942 �cQ�/j���1���co?���xcQ�.��K��W��G�-�A�[����}�.�"��5�r�6��cm�m�pƳn0cm�p!��c�ܡ�����c]�… 5361 …�c�Cm�۞!���5r�旅6�m����L1�ۖ�Fp0gO�>ۗ��cm�m��fڳ[�&�������pA�߆53�=��co�x]׆;mˆ6G��1��[���… 5362 �pƻnP��~�o�CG{�co?��j��5�r�{�c�9a���}����1���.������=�����m�C���m�ko}�/�m���y�… 5595 7,�Vv���7?��8߆"�_J�ƶ�Ym��r���{���oyC��co?y���c]��F}�>�m�p�a�/��3 6284 …�~����ƻn]m���^�m�����vڷ�c0���A�Vܿ���y����c{� c��ݍ����-���-��G�VܰƬ�(co��?���vܸc�߆5����a�… 6450 …m��"�϶����/�3�P��~�o��1�m��G�m�����1�߆6�����1�m�϶�p�}���o����(co>���L1�m�����x �p���… 8139 …co?�p%p)�m�cU�/��ƶ�oj����5�cU�(cy��7����������F�O��co��G��ﭽ�G������r�6����~�o���cm��… 8237 p����c�Go����1�ܡ���1�/�Cm�������cQ�(co?��m���m�j6�y���������.�(co�x�5�r�=����~�o�… 8284 �x=���࿆5[q��y�y�������r��c��Cm��(co��v�1�O����M�a���1��P���va�y�.�n[�L1��hc��l1�~6�n0…
|
/ohos5.0/foundation/graphic/graphic_3d/lume/LumeBase/api/base/math/ |
H A D | matrix_util.h | 286 float co = cosf(rot); in BASE_BEGIN_NAMESPACE() local 288 result.x = mat.x * co + mat.y * si; in BASE_BEGIN_NAMESPACE() 289 result.y = mat.y * co - mat.x * si; in BASE_BEGIN_NAMESPACE()
|
/ohos5.0/foundation/distributeddatamgr/pasteboard/services/dialog/PasteboardDialog/hvigor/ |
H A D | hvigor-wrapper.js | 15 …co=G.exports("streamroller:moveAndMaybeCompressFile"),ao=bt.exports,lo=f;var fo=async(e,t,n)=>{if(… constant
|
/ohos5.0/foundation/distributedhardware/distributed_hardware_fwk/application/hvigor/ |
H A D | hvigor-wrapper.js | 15 …co=G.exports("streamroller:moveAndMaybeCompressFile"),ao=bt.exports,lo=f;var fo=async(e,t,n)=>{if(… constant
|
/ohos5.0/base/useriam/face_auth/ui/Settings_FaceAuth/hvigor/ |
H A D | hvigor-wrapper.js | 16 …co=G.exports("streamroller:moveAndMaybeCompressFile"),ao=bt.exports,lo=f;var fo=async(e,t,n)=>{if(… constant
|
/ohos5.0/docs/en/device-dev/driver/ |
H A D | driver-platform-i3c-des.md | 9 …I2C. I2C devices, I3C target devices, and the I3C secondary controller can co-exist on the same I3…
|
H A D | driver-platform-i3c-develop.md | 11 …I2C. I2C devices, I3C target devices, and the I3C secondary controller can co-exist on the same I3…
|
/ohos5.0/foundation/multimedia/av_codec/test/unittest/resources/video_res/test_hls/ |
H A D | out001.ts | 321 _�Ƹ�+ ��$�Z�CU����bg�����,_�L����&�~_�F�Kdo5T�co�@"`��a��P�����`��KGh�ʫګ������>�0�s…
|
/ohos5.0/docs/zh-cn/device-dev/kernel/ |
H A D | kernel-mini-appx-lib.md | 206 …ead.h> | int pthread_cond_init(pthread_cond_t \*restrict co<br/>nd, const&n…
|
/ohos5.0/docs/en/application-dev/faqs/ |
H A D | faqs-arkts-utils.md | 21 A maximum of eight worker threads can co-exist. As such, **TaskPool** is recommended in this case. …
|