Home
last modified time | relevance | path

Searched refs:co (Results 1 – 25 of 77) sorted by relevance

1234

/ohos5.0/foundation/resourceschedule/ffrt/src/eu/
H A Dco_routine.cpp53 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 Dco_routine_factory.cpp25 void CoRoutineFreeMem(CoRoutine *co) in CoRoutineFreeMem() argument
27 ffrt::QSimpleAllocator<CoRoutine>::FreeMem(co); in CoRoutineFreeMem()
H A Dco_routine_factory.h24 void CoRoutineFreeMem(CoRoutine *co);
/ohos5.0/foundation/graphic/graphic_2d/rosen/modules/render_service_base/src/render/
H A Drs_typeface_cache.cpp291 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 Drender_color_conversion_common.h104 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 Dut_coroutine.cpp62 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 Ddevice_vk.cpp135 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 Ddump.cpp77 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 Di18n-locale-culture.md22 …排序、数字系统、小时周期,由小写字母u开头,每一个扩展参数由key和value组成,使用中划线拼接。例如,农历拼音排序使用”u-ca-chinese-co-pinyin”。<br/>支持的扩展参数…
29 | co | 表示用户使用的字符串排序规则,包括。例如,按照拼音排序使用”pinyin”表示。 |
/ohos5.0/foundation/resourceschedule/ffrt/src/core/
H A Dtask_io.cpp71 void ffrt_submit_coroutine(void* co, ffrt_coroutine_ptr_t exec, ffrt_function_t destroy, const ffrt…
87 task->work.data = co;
H A Dtask.cpp609 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 Dexecutor_task.h57 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 DBUILD.gn30 "-co",
/ohos5.0/base/update/sys_installer/tools/zipalign/
H A DBUILD.gn30 "-co",
/ohos5.0/docs/en/application-dev/internationalization/
H A Di18n-locale-culture.md22 …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 Dtest_mpeg4_Gop25_4sec.ts723 …�~{;��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,�V v���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���…
8139co?�p%p)�m�cU�/��ƶ�o j����5�cU�(cy��7����������F�O��co��G�����ﭽ�G������r�6����~�o���cm��…
8237 p����c�G�o����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 Dmatrix_util.h286 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 Dhvigor-wrapper.js15co=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 Dhvigor-wrapper.js15co=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 Dhvigor-wrapper.js16co=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 Ddriver-platform-i3c-des.md9 …I2C. I2C devices, I3C target devices, and the I3C secondary controller can co-exist on the same I3…
H A Ddriver-platform-i3c-develop.md11 …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 Dout001.ts321 _�Ƹ�+ ��$�Z�CU����bg�����,_�L����&�~_�F�Kdo5T�co�@"`��a��P�� ���`��KGh�ʫګ�� ����>�0�s…
/ohos5.0/docs/zh-cn/device-dev/kernel/
H A Dkernel-mini-appx-lib.md206 …ead.h&gt; | int&nbsp;pthread_cond_init(pthread_cond_t&nbsp;\*restrict&nbsp;co<br/>nd,&nbsp;const&n…
/ohos5.0/docs/en/application-dev/faqs/
H A Dfaqs-arkts-utils.md21 A maximum of eight worker threads can co-exist. As such, **TaskPool** is recommended in this case. …

1234