Home
last modified time | relevance | path

Searched refs:co (Results 1 - 13 of 13) sorted by relevance

/foundation/graphic/graphic_3d/lume/metaobject/test/src/interface/
H A DIntfContentTest.cpp57 ContentObject co; in HWTEST_F() local
58 co.SetContent(content); in HWTEST_F()
60 c->Add(co); in HWTEST_F()
72 co.ContentSearchable(false); in HWTEST_F()
76 co.ContentSearchable(true); in HWTEST_F()
93 ContentObject co; in HWTEST_F() local
94 co.SetContent(interface_pointer_cast<IObject>(content)); in HWTEST_F()
96 c->Add(co); in HWTEST_F()
101 co.ContentSearchable(false); in HWTEST_F()
105 co in HWTEST_F()
122 ContentObject co; HWTEST_F() local
157 ContentObject co; HWTEST_F() local
170 ContentObject co; HWTEST_F() local
190 ContentObject co; HWTEST_F() local
205 ContentObject co; HWTEST_F() local
225 ContentObject co; HWTEST_F() local
254 ContentObject co; HWTEST_F() local
276 ContentObject co; HWTEST_F() local
303 ContentObject co; HWTEST_F() local
[all...]
/foundation/resourceschedule/ffrt/src/eu/
H A Dco_routine.cpp53 static inline void CoStackCheck(CoRoutine* co) in CoStackCheck() argument
55 if (unlikely(co->stkMem.magic != STACK_MAGIC)) { in CoStackCheck()
56 FFRT_LOGE("sp offset:%p.\n", co->stkMem.stk + in CoStackCheck()
57 co->stkMem.size - co->ctx.regs[FFRT_REG_SP]); in CoStackCheck()
221 static inline void CoExit(CoRoutine* co, bool isNormalTask) in CoExit() argument
225 SwitchTsdToThread(co->task); in CoExit()
228 CoStackCheck(co); in CoExit()
229 CoSwitch(&co->ctx, &co in CoExit()
234 CoRoutine* co = reinterpret_cast<CoRoutine*>(arg); CoStartEntry() local
261 CoSetStackProt(CoRoutine* co, int prot) CoSetStackProt() argument
[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);
/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()
/foundation/resourceschedule/ffrt/test/ut/testcase/
H A Dut_coroutine.cpp66 ffrt_coroutine_ret_t stackless_coroutine(void* co) in stackless_coroutine() argument
68 StacklessCoroutine1* stacklesscoroutine = reinterpret_cast<StacklessCoroutine1*>(co); in stackless_coroutine()
84 ffrt_coroutine_ret_t exec_stackless_coroutine(void *co) in exec_stackless_coroutine() argument
86 return stackless_coroutine(co); in exec_stackless_coroutine()
89 void destroy_stackless_coroutine(void *co) in destroy_stackless_coroutine() argument
/foundation/graphic/graphic_2d/rosen/modules/render_service_base/src/render/
H A Drs_typeface_cache.cpp292 for (auto co : typefaceHashCode_) { in Dump()
293 if (typefaceHashMap_.find(co.second) != typefaceHashMap_.end()) { in Dump()
294 auto [typeface, ref] = typefaceHashMap_.at(co.second); in Dump()
296 "RSTypefaceCache Dump", std::to_string(co.first).c_str(), std::to_string(co.second).c_str(), in Dump()
308 for (auto co : typefaceHashCode_) { in ReplaySerialize()
309 if (typefaceHashMap_.find(co.second) != typefaceHashMap_.end()) { in ReplaySerialize()
310 auto [typeface, ref] = typefaceHashMap_.at(co.second); in ReplaySerialize()
316 ss.write(reinterpret_cast<const char*>(&co.first), sizeof(co in ReplaySerialize()
[all...]
/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) - 8); in DumpTask()
79 uintptr_t stackTop = static_cast<uintptr_t>(stackBottom + co->stkMem.size); in DumpTask()
/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_deps_t* in_deps, in ffrt_submit_coroutine() argument
85 task->work.data = co; in ffrt_submit_coroutine()
H A Dtask.cpp582 auto co = curTask->coRoutine; in ffrt_get_current_coroutine_stack() local
583 if (co) { in ffrt_get_current_coroutine_stack()
584 *size = co->stkMem.size; in ffrt_get_current_coroutine_stack()
585 *stack_addr = static_cast<void*>(reinterpret_cast<char*>(co) + sizeof(CoRoutine) - 8); in ffrt_get_current_coroutine_stack()
/foundation/graphic/graphic_3d/lume/LumeRender/src/vulkan/
H A Ddevice_vk.cpp132 void GetPhysicalDeviceFragmentShadingRateStructs(ChainObjects& co, ChainWrapper& cw) in GetPhysicalDeviceFragmentShadingRateStructs() argument
134 co.fsr = make_unique<PhysicalDeviceFragmentShadingRateStructsVk>(); in GetPhysicalDeviceFragmentShadingRateStructs()
135 auto& fsr = co.fsr; in GetPhysicalDeviceFragmentShadingRateStructs()
155 void GetPhysicalDeviceMultiviewFeaturesStructs(ChainObjects& co, ChainWrapper& cw) in GetPhysicalDeviceMultiviewFeaturesStructs() argument
157 co.mv = make_unique<PhysicalDeviceMultiviewStructsVk>(); in GetPhysicalDeviceMultiviewFeaturesStructs()
158 auto& mv = co.mv; in GetPhysicalDeviceMultiviewFeaturesStructs()
179 void GetPhysicalDeviceDescriptorIndexingFeaturesStructs(ChainObjects& co, ChainWrapper& cw) in GetPhysicalDeviceDescriptorIndexingFeaturesStructs() argument
181 co.di = make_unique<PhysicalDeviceDesciptorIndexingStructsVk>(); in GetPhysicalDeviceDescriptorIndexingFeaturesStructs()
182 auto& di = co.di; in GetPhysicalDeviceDescriptorIndexingFeaturesStructs()
249 void GetPhysicalDeviceRayTracingStructs(ChainObjects& co, ChainWrappe argument
289 GetPhysicalDeviceYcbcrStructs(ChainObjects& co, ChainWrapper& cw) GetPhysicalDeviceYcbcrStructs() argument
317 GetPhysicalDeviceMaintenance4Structs(ChainObjects& co, ChainWrapper& cw) GetPhysicalDeviceMaintenance4Structs() argument
514 GetCommonDevicePropertiesFunc(const ChainObjects& co) GetCommonDevicePropertiesFunc() argument
[all...]
/foundation/resourceschedule/ffrt/interfaces/inner_api/c/
H A Dexecutor_task.h58 FFRT_C_API void ffrt_submit_coroutine(void* co, ffrt_coroutine_ptr_t exec, ffrt_function_t destroy,
/foundation/graphic/graphic_3d/lume/LumeBase/api/base/math/
H A Dmatrix_util.h286 float co = cosf(rot); in RotateZCWRadians() local
288 result.x = mat.x * co + mat.y * si; in RotateZCWRadians()
289 result.y = mat.y * co - mat.x * si; in RotateZCWRadians()

Completed in 7 milliseconds