Home
last modified time | relevance | path

Searched refs:proot (Results 1 – 2 of 2) sorted by relevance

/OK3568_Linux_fs/external/security/rk_tee_user/v2/ta/vector_util/
H A Dc_tree.c260 static void _c_rb_tree_rotate_left(_base_ptr val, _base_ptr * proot) in _c_rb_tree_rotate_left() argument
268 if(val == *proot) in _c_rb_tree_rotate_left()
269 *proot = wal; in _c_rb_tree_rotate_left()
278 static void _c_rb_tree_rotate_right(_base_ptr val, _base_ptr * proot) in _c_rb_tree_rotate_right() argument
286 if(val == *proot) in _c_rb_tree_rotate_right()
287 *proot = wal; in _c_rb_tree_rotate_right()
296 void _c_rb_tree_rebalance(_base_ptr val, _base_ptr * proot) in _c_rb_tree_rebalance() argument
299 while(val != *proot && val->_A_parent->_A_color == _S_c_rb_tree_red) in _c_rb_tree_rebalance()
316 _c_rb_tree_rotate_left(val, proot); in _c_rb_tree_rebalance()
320 _c_rb_tree_rotate_right(val->_A_parent->_A_parent, proot); in _c_rb_tree_rebalance()
[all …]
/OK3568_Linux_fs/external/camera_engine_rkaiq/rkaiq/iq_parser/
H A DRkAiqCalibParser.cpp1412 XMLElement* proot = doc.RootElement(); in doParse() local
1413 std::string tagname(proot->Name()); in doParse()
1426 XMLElement* pheader = proot->FirstChildElement(TAG_NAME(CALIB_HEADER_TAG_ID)); in doParse()
1437 XMLElement* psensor = proot->FirstChildElement(TAG_NAME(CALIB_SENSOR_TAG_ID)); in doParse()
1448 XMLElement* psystem = proot->FirstChildElement(TAG_NAME(CALIB_SYSTEM_TAG_ID)); in doParse()
1460 XMLElement* pexpset = proot->FirstChildElement(TAG_NAME(CALIB_EXPSET_TAG_ID)); in doParse()
1471 XMLElement* pmodule = proot->FirstChildElement(TAG_NAME(CALIB_MODULEINFO_TAG_ID)); in doParse()
1512 XMLElement* proot = doc.RootElement(); in doGenerate() local
1513 std::string tagname(proot->Name()); in doGenerate()
1525 XMLElement* pheader = proot->FirstChildElement(TAG_NAME(CALIB_HEADER_TAG_ID)); in doGenerate()
[all …]