/device/soc/rockchip/common/sdk_linux/drivers/gpu/drm/ |
H A D | drm_fourcc.c | 41 * @depth: bit depth per pixel 43 * Computes a drm fourcc pixel format code for the given @bpp/@depth values. 46 uint32_t drm_mode_legacy_fb_format(uint32_t bpp, uint32_t depth) in drm_mode_legacy_fb_format() argument 52 if (depth == 0x8) { in drm_mode_legacy_fb_format() 58 switch (depth) { in drm_mode_legacy_fb_format() 71 if (depth == 0x18) { in drm_mode_legacy_fb_format() 77 switch (depth) { in drm_mode_legacy_fb_format() 104 * @depth: bit depth pe 111 drm_driver_legacy_fb_format(struct drm_device *dev, uint32_t bpp, uint32_t depth) drm_driver_legacy_fb_format() argument [all...] |
/foundation/arkui/ace_engine/frameworks/base/log/ |
H A D | dump_log.cpp | 26 void DumpLog::Print(int32_t depth, const std::string& className, int32_t childSize) in Print() argument 32 for (int32_t i = 0; i < depth; ++i) { in Print() 42 for (int32_t i = 0; i < depth; ++i) { in Print() 64 void DumpLog::Print(int32_t depth, const std::string& content) in Print() argument 67 for (int32_t i = 0; i < depth; ++i) { in Print() 88 void DumpLog::Append(int32_t depth, const std::string& className, int32_t childSize) in Append() argument 90 for (int32_t i = 0; i < depth; ++i) { in Append() 98 for (int32_t i = 0; i < depth; ++i) { in Append() 159 int32_t depth = GetDepth() + DumpLog::END_POS_TWO; in PrintEndDumpInfoNG() local 161 for (int32_t i = 0; i < depth; in PrintEndDumpInfoNG() 171 GetPrefix(int32_t depth) GetPrefix() argument 189 FormatDumpInfo(const std::string& str, int32_t depth) FormatDumpInfo() argument [all...] |
H A D | dump_log.h | 95 void Print(int32_t depth, const std::string& className, int32_t childSize); 97 void Print(int32_t depth, const std::string& content); 98 void Append(int32_t depth, const std::string& className, int32_t childSize); 104 std::string GetPrefix(int32_t depth); 105 std::string FormatDumpInfo(const std::string& str, int32_t depth); 116 void SetDepth(int32_t depth) in SetDepth() argument 118 depth_ = depth; in SetDepth()
|
/foundation/arkui/ace_engine/frameworks/core/components_ng/manager/navigation/ |
H A D | navigation_manager.h | 56 void AddNavigationDumpCallback(int32_t nodeId, int32_t depth, const DumpCallback& callback); 57 void RemoveNavigationDumpCallback(int32_t nodeId, int32_t depth); 95 int32_t depth; member 97 DumpMapKey(int32_t n, int32_t d) : nodeId(n), depth(d) {} in DumpMapKey() 100 if (depth != o.depth) { in operator <() 101 return depth < o.depth; in operator <()
|
H A D | navigation_manager.cpp | 22 void NavigationManager::AddNavigationDumpCallback(int32_t nodeId, int32_t depth, const DumpCallback& callback) in AddNavigationDumpCallback() argument 25 dumpMap_.emplace(DumpMapKey(nodeId, depth), callback); in AddNavigationDumpCallback() 28 void NavigationManager::RemoveNavigationDumpCallback(int32_t nodeId, int32_t depth) in RemoveNavigationDumpCallback() argument 31 auto it = dumpMap_.find(DumpMapKey(nodeId, depth)); in RemoveNavigationDumpCallback() 45 std::to_string(it->first.nodeId) + ", Depth: " + std::to_string(it->first.depth) + ", NavPathStack:"); in OnDumpInfo()
|
/foundation/arkui/ace_engine/frameworks/core/components/rich_text/ |
H A D | rosen_render_rich_text.cpp | 27 void RosenRenderRichText::DumpTree(int32_t depth) in DumpTree() argument 36 DumpLog::GetInstance().Print(depth, AceType::TypeName(this), children.size()); in DumpTree() 40 item->DumpTree(depth + 1); in DumpTree()
|
/foundation/arkui/ace_engine/frameworks/core/pipeline/layers/ |
H A D | layer.cpp | 33 void Layer::DumpTree(int32_t depth) in DumpTree() argument 37 DumpLog::GetInstance().Print(depth, AceType::TypeName(this), children_.size()); in DumpTree() 41 item->DumpTree(depth + 1); in DumpTree()
|
/foundation/ability/ability_base/interfaces/kits/native/want/include/ |
H A D | want_params.h | 104 static WantParams *Unmarshalling(Parcel &parcel, int depth = 1); 154 bool WriteArrayToParcel(Parcel &parcel, IArray *ao, int depth) const; 155 bool ReadArrayToParcel(Parcel &parcel, int type, sptr<IArray> &ao, int depth); 156 bool ReadFromParcel(Parcel &parcel, int depth = 1); 157 bool ReadFromParcelParam(Parcel &parcel, const std::string &key, int type, int depth); 178 bool ReadFromParcelArrayWantParams(Parcel &parcel, sptr<IArray> &ao, int depth); 179 bool ReadFromParcelWantParamWrapper(Parcel &parcel, const std::string &key, int type, int depth); 192 bool WriteArrayToParcelWantParams(Parcel &parcel, IArray *ao, int depth) const; 194 bool WriteMarshalling(Parcel &parcel, sptr<IInterface> &o, int depth) const; 204 bool WriteToParcelWantParams(Parcel &parcel, sptr<IInterface> &o, int depth) cons [all...] |
/device/soc/rockchip/common/vendor/drivers/staging/android/fiq_debugger/ |
H A D | fiq_debugger_arm.c | 167 unsigned int depth;
member 174 if (sts->depth) {
in report_trace() 177 sts->depth--;
in report_trace() 182 return sts->depth == 0;
in report_trace() 217 void fiq_debugger_dump_stacktrace(struct fiq_debugger_output *output, const struct pt_regs *regs, unsigned int depth,
in fiq_debugger_dump_stacktrace() argument 224 sts.depth = depth;
in fiq_debugger_dump_stacktrace() 248 while (depth-- && tail && !((unsigned long)tail & 0x3)) {
in fiq_debugger_dump_stacktrace()
|
H A D | fiq_debugger_arm64.c | 134 unsigned int depth;
member 141 if (sts->depth) {
in report_trace() 143 sts->depth--;
in report_trace() 148 return sts->depth != 0;
in report_trace() 151 void fiq_debugger_dump_stacktrace(struct fiq_debugger_output *output, const struct pt_regs *regs, unsigned int depth,
in fiq_debugger_dump_stacktrace() argument 156 sts.depth = depth;
in fiq_debugger_dump_stacktrace()
|
/foundation/graphic/graphic_2d/interfaces/kits/napi/graphic/webgl/include/webgl/ |
H A D | webgl_arg.h | 89 GLsizei depth; member 98 this->depth = 1; in WebGLImageOption() 100 WebGLImageOption(GLenum format, GLenum type, GLsizei width, GLsizei height, GLsizei depth) in WebGLImageOption() 106 this->depth = depth; in WebGLImageOption() 114 this->depth = opt.depth; in Assign() 233 GLsizei depth; member 237 format(0), type(0), width(0), height(0), border(0), depth(0) {} in TexImageArg() 250 depth in TexImageArg() 277 GLsizei depth; global() member [all...] |
/device/soc/rockchip/rk3588/kernel/drivers/staging/android/fiq_debugger/ |
H A D | fiq_debugger_arm64.c | 158 unsigned int depth; member 165 if (sts->depth) { in report_trace() 167 sts->depth--; in report_trace() 172 return sts->depth != 0; in report_trace() 176 const struct pt_regs *regs, unsigned int depth, void *ssp) in fiq_debugger_dump_stacktrace() 180 sts.depth = depth; in fiq_debugger_dump_stacktrace() 175 fiq_debugger_dump_stacktrace(struct fiq_debugger_output *output, const struct pt_regs *regs, unsigned int depth, void *ssp) fiq_debugger_dump_stacktrace() argument
|
/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/common/src/ |
H A D | schema_object.cpp | 539 for (uint32_t depth = 0; depth < SchemaConstant::SCHEMA_FEILD_PATH_DEPTH_MAX; depth++) { in ParseCheckSchemaDefine() 543 LOGE("[Schema][ParseDefine] Internal Error: GetSubFieldPathAndType Fail, Depth=%" PRIu32, depth); in ParseCheckSchemaDefine() 557 schemaDefine_[depth][FieldPath(++(subField.first.begin()), subField.first.end())] = attribute; in ParseCheckSchemaDefine() 561 // Deal with the nestpath and check depth limitation in ParseCheckSchemaDefine() 562 if (depth == (SchemaConstant::SCHEMA_FEILD_PATH_DEPTH_MAX - 1)) { // Minus 1 to be the boundary in ParseCheckSchemaDefine() 563 LOGE("[Schema][ParseDefine] node is INTERNAL_FIELD_OBJECT but reach schema depth limitation."); in ParseCheckSchemaDefine() 697 LOGE("[Schema][ParseEachIndex] Root not indexable or path depth exceed limit."); in ParseCheckEachIndexFromStringArray() 724 uint32_t depth in CheckFieldPathIndexableThenSave() local 1131 uint32_t depth = eachLackingPath.size() - 1; // Depth count from zero AmendValueIfNeed() local [all...] |
/foundation/graphic/graphic_3d/lume/metaobject/src/property/ |
H A D | dependencies.cpp | 46 // save dependencies only once per property/depth in AddDependency() 48 if (b.depth == depth_ && b.property == prop) { in AddDependency() 61 if (v.depth == depth_) { in GetImmediateDependencies() 73 if (v.depth >= depth_ && v.property.get() == p) { in HasDependency()
|
/foundation/arkui/ace_engine/frameworks/core/common/ |
H A D | event_dump.h | 32 void Dump(std::list<std::pair<int32_t, std::string>>& dumpList, int32_t depth) const; 49 void Dump(std::list<std::pair<int32_t, std::string>>& dumpList, int32_t depth) const; 83 void Dump(std::list<std::pair<int32_t, std::string>>& dumpList, int32_t depth, int32_t startNumber = 0) const; 85 void Dump(std::unique_ptr<JsonValue>& json, int32_t depth, int32_t startNumber = 0) const;
|
/foundation/graphic/graphic_3d/lume/Lume_3D/api/3d/util/ |
H A D | intf_mesh_util.h | 41 * @param depth Depth of the cube (in z dimension). 44 CORE_NS::Entity material, float width, float height, float depth) = 0; 51 * @param depth Depth of the plane (in z dimension). 54 const CORE_NS::IEcs& ecs, BASE_NS::string_view name, CORE_NS::Entity material, float width, float depth) = 0; 105 * @param depth Depth of the cube (in z dimension). 108 float width, float height, float depth) = 0; 115 * @param depth Depth of the plane (in z dimension). 118 const CORE_NS::IEcs& ecs, BASE_NS::string_view name, CORE_NS::Entity material, float width, float depth) = 0;
|
/device/soc/rockchip/common/kernel/drivers/gpu/arm/mali400/mali/common/ |
H A D | mali_scheduler.c | 115 job_queue_gp.depth = 0; in mali_scheduler_initialize() 120 job_queue_pp.depth = 0; in mali_scheduler_initialize() 211 MALI_DEBUG_ASSERT(0 < job_queue_pp.depth); in mali_scheduler_job_physical_head_count() 278 MALI_DEBUG_ASSERT(0 < job_queue_pp.depth); in mali_scheduler_job_pp_next() 323 MALI_DEBUG_ASSERT(0 < job_queue_gp.depth); in mali_scheduler_job_gp_get() 324 MALI_DEBUG_ASSERT(job_queue_gp.big_job_num <= job_queue_gp.depth); in mali_scheduler_job_gp_get() 338 job_queue_gp.depth--; in mali_scheduler_job_gp_get() 363 MALI_DEBUG_ASSERT(0 < job_queue_pp.depth); in mali_scheduler_job_pp_physical_peek() 381 MALI_DEBUG_ASSERT(0 < job_queue_pp.depth); in mali_scheduler_job_pp_physical_peek() 404 MALI_DEBUG_ASSERT(0 < job_queue_pp.depth); in mali_scheduler_job_pp_virtual_peek() [all...] |
/device/soc/rockchip/common/vendor/drivers/gpu/arm/mali400/mali/common/ |
H A D | mali_scheduler.c | 113 job_queue_gp.depth = 0; in mali_scheduler_initialize() 118 job_queue_pp.depth = 0; in mali_scheduler_initialize() 203 MALI_DEBUG_ASSERT(job_queue_pp.depth > 0); in mali_scheduler_job_physical_head_count() 267 MALI_DEBUG_ASSERT(job_queue_pp.depth > 0); in mali_scheduler_job_pp_next() 311 MALI_DEBUG_ASSERT(job_queue_gp.depth > 0); in mali_scheduler_job_gp_get() 312 MALI_DEBUG_ASSERT(job_queue_gp.big_job_num <= job_queue_gp.depth); in mali_scheduler_job_gp_get() 326 job_queue_gp.depth--; in mali_scheduler_job_gp_get() 351 MALI_DEBUG_ASSERT(job_queue_pp.depth > 0); in mali_scheduler_job_pp_physical_peek() 367 MALI_DEBUG_ASSERT(job_queue_pp.depth > 0); in mali_scheduler_job_pp_physical_peek() 389 MALI_DEBUG_ASSERT(job_queue_pp.depth > in mali_scheduler_job_pp_virtual_peek() [all...] |
/foundation/arkui/ace_engine/frameworks/core/components/xcomponent/ |
H A D | rosen_render_xcomponent.cpp | 61 void RosenRenderXComponent::DumpTree(int32_t depth) in DumpTree() argument 69 DumpLog::GetInstance().Print(depth, AceType::TypeName(this), children.size()); in DumpTree() 73 item->DumpTree(depth + 1); in DumpTree()
|
/foundation/communication/bluetooth_service/services/bluetooth/service/src/util/ |
H A D | state_machine.cpp | 95 int depth = 0; in GetStateDepth() local 98 depth++; in GetStateDepth() 102 return depth; in GetStateDepth()
|
/device/soc/hisilicon/hi3516dv300/sdk_linux/drv/mpp/component/hifb/drv/hi3516cv500/ |
H A D | hifb_graphic_drv.c | 404 hi_u16 depth; in graphic_drv_set_gfx_stride() local 411 depth = pitch >> 4; in graphic_drv_set_gfx_stride() 412 if (hal_graphic_set_gfx_stride(layer, depth) == HI_FALSE) { in graphic_drv_set_gfx_stride() 1015 if (data128->depth < 32) { /* 32 max depth */ in vo_drv_push128() 1016 if ((data128->depth + bit_len) <= 32) { /* 32 bit len */ in vo_drv_push128() 1017 data128->data0 = (coef_data << data128->depth) | data128->data0; in vo_drv_push128() 1019 data128->data0 = (coef_data << data128->depth) | data128->data0; in vo_drv_push128() 1020 data128->data1 = coef_data >> (32 - data128->depth % 32); /* 32 depth dat in vo_drv_push128() [all...] |
/foundation/arkui/ace_engine/frameworks/core/components_v2/tabs/ |
H A D | tabs_helper.h | 376 int depth = 4, const std::string& shift = "") in DumpComponents() 378 if (depth == 0) { in DumpComponents() 389 DumpComponents(single->GetChild(), "", depth -1, shift + " "); in DumpComponents() 394 DumpComponents(child, "", depth -1, shift + " "); in DumpComponents() 402 const std::string& header = "", int depth = 4, const std::string& shift = "") in DumpElements() 404 if (depth == 0) { in DumpElements() 417 TabsHelper::DumpElements(child, "", depth -1, shift + " "); in DumpElements()
|
/foundation/graphic/graphic_3d/3d_widget_adapter/include/data_type/geometry/ |
H A D | cube.h | 24 Cube(std::string name, float width, float height, float depth, Vec3& position) : Geometry(name, position), in Cube() argument 25 width_(width), height_(height), depth_(depth) {}; in Cube()
|
/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/jsview/ |
H A D | js_state_mgmt_profiler.cpp | 110 void JSStateMgmtProfiler::ProfileBlock::Report(int32_t depth) const in Report() 122 ss << std::left << std::string(depth, ' '); in Report() 124 ss << std::setw(nameAdjustWidth - static_cast<int32_t>(name_.size()) - depth); in Report() 134 childrenBlocks->Report(depth + 1); in Report()
|
/foundation/arkui/ace_engine/test/tools/event_tree_to_graph/src/beans/ |
H A D | event_node.py | 29 # frameNodeId: 84, type: PanRecognizer, depth: 1, id: 0xf3d6bfc0, parentId: 0xf063eed0, customInfo: direction: 3, 34 depth = '' variable in EventNode 62 # frameNodeId: 84, type: TouchEventActuator, depth: 0, id: 0xf072b240, parentId: 0x0 68 self.depth = get_value_as_int(frame_node_str, get_sample_key(event_procedure_keyword, 'depth'), 69 get_sample_separator_count(event_procedure_keyword, 'depth')) 94 if (self.frameNodeId is None or self.type is None or self.depth is None or self.address is None or 129 result_str = ' frameNodeId: ' + str(self.frameNodeId) + ', type: ' + self.type + ', depth: ' + str( 130 self.depth) + ', id: ' + self.address + ', parentId: ' + self.parentId
|