| /OK3568_Linux_fs/external/security/rk_tee_user/v2/ta/vector_util/ |
| H A D | c_tree.c | 74 static void _A_iterator_increment(c_piterator thiz) in _A_iterator_increment() argument 76 if(((_base_ptr)(thiz->_i))->_A_right) in _A_iterator_increment() 78 thiz->_i = ((_base_ptr)(thiz->_i))->_A_right; in _A_iterator_increment() 79 while(((_base_ptr)(thiz->_i))->_A_left) in _A_iterator_increment() 80 thiz->_i = ((_base_ptr)(thiz->_i))->_A_left; in _A_iterator_increment() 84 _base_ptr val = ((_base_ptr)(thiz->_i))->_A_parent; in _A_iterator_increment() 85 while(((_base_ptr)(thiz->_i)) == val->_A_right) in _A_iterator_increment() 87 thiz->_i = val; in _A_iterator_increment() 90 if(((_base_ptr)(thiz->_i))->_A_right != val) in _A_iterator_increment() 91 thiz->_i = val; in _A_iterator_increment() [all …]
|
| H A D | c_vector.c | 74 static c_iterator _c_vector_iterator_assign(c_piterator thiz, const c_piterator val) in _c_vector_iterator_assign() argument 76 if(thiz != val) in _c_vector_iterator_assign() 77 thiz->_i = val->_i; in _c_vector_iterator_assign() 78 return *thiz; in _c_vector_iterator_assign() 81 static value_type _c_vector_iterator_ref(c_piterator thiz) in _c_vector_iterator_ref() argument 83 return *(pnode_t)thiz->_i; in _c_vector_iterator_ref() 86 static value_type _c_vector_iterator_ref_assign(c_piterator thiz, const value_type val) in _c_vector_iterator_ref_assign() argument 88 return *(pnode_t)thiz->_i = val; in _c_vector_iterator_ref_assign() 91 static c_iterator _c_vector_iterator_inc(c_piterator thiz) in _c_vector_iterator_inc() argument 93 pnode_t pn = thiz->_i; in _c_vector_iterator_inc() [all …]
|
| H A D | c_map.c | 55 void __c_map(c_pmap thiz, COMPARER keycmp) in __c_map() argument 60 thiz->_l = ptree; in __c_map() 63 void __c_pam(c_pmap thiz) in __c_pam() argument 65 __c_eert_br((c_prb_tree)thiz->_l); in __c_pam() 66 __c_free(thiz->_l); in __c_pam() 69 c_pmap c_map_assign(c_pmap thiz, const c_pmap M) in c_map_assign() argument 71 c_rb_tree_assign((c_prb_tree)thiz->_l, (c_prb_tree)M->_l); in c_map_assign() 72 return thiz; in c_map_assign() 75 c_iterator c_map_begin(c_pmap thiz) in c_map_begin() argument 77 return c_rb_tree_begin((c_prb_tree)thiz->_l); in c_map_begin() [all …]
|
| H A D | c_iterator.c | 57 static c_iterator _c_array_iterator_assign(c_piterator thiz, const c_piterator val) in _c_array_iterator_assign() argument 59 if(thiz != val) in _c_array_iterator_assign() 60 thiz->_i = val->_i; in _c_array_iterator_assign() 61 return *thiz; in _c_array_iterator_assign() 64 static value_type _c_array_iterator_ref(c_piterator thiz) in _c_array_iterator_ref() argument 66 return *(pp_t)thiz->_i; in _c_array_iterator_ref() 69 static value_type _c_array_iterator_ref_assign(c_piterator thiz, const value_type val) in _c_array_iterator_ref_assign() argument 71 return *(pp_t)thiz->_i = val; in _c_array_iterator_ref_assign() 74 static c_iterator _c_array_iterator_inc(c_piterator thiz) in _c_array_iterator_inc() argument 76 pp_t p = thiz->_i; in _c_array_iterator_inc() [all …]
|
| H A D | c_vector.h | 96 void __c_vector(c_pvector thiz, COMPARER pcmp); 97 void __c_rotcev(c_pvector thiz); 98 c_iterator c_vector_begin(c_pvector thiz); 99 c_iterator c_vector_end(c_pvector thiz); 100 c_reverse_iterator c_vector_rbegin(c_pvector thiz); 101 c_reverse_iterator c_vector_rend(c_pvector thiz); 102 size_type c_vector_size(c_pvector thiz); 103 size_type c_vector_max_size(c_pvector thiz); 104 size_type c_vector_capacity(c_pvector thiz); 105 c_bool c_vector_empty(c_pvector thiz); [all …]
|
| H A D | c_tree.h | 124 void __c_rb_tree(c_prb_tree thiz, COMPARER pcmp); 125 void __c_eert_br(c_prb_tree thiz); 126 c_prb_tree c_rb_tree_assign(c_prb_tree thiz, const c_prb_tree T); 127 c_iterator c_rb_tree_begin(c_prb_tree thiz); 128 c_iterator c_rb_tree_end(c_prb_tree thiz); 129 c_reverse_iterator c_rb_tree_rbegin(c_prb_tree thiz); 130 c_reverse_iterator c_rb_tree_rend(c_prb_tree thiz); 131 c_bool c_rb_tree_empty(c_prb_tree thiz); 132 size_type c_rb_tree_size(c_prb_tree thiz); 133 size_type c_rb_tree_max_size(c_prb_tree thiz); [all …]
|
| H A D | c_map.h | 94 void __c_map(c_pmap thiz, COMPARER keycmp); 95 void __c_pam(c_pmap thiz); 96 c_pmap c_map_assign(c_pmap thiz, const c_pmap M); 97 c_iterator c_map_begin(c_pmap thiz); 98 c_iterator c_map_end(c_pmap thiz); 99 c_reverse_iterator c_map_rbegin(c_pmap thiz); 100 c_reverse_iterator c_map_rend(c_pmap thiz); 101 c_bool c_map_empty(c_pmap thiz); 102 size_type c_map_size(c_pmap thiz); 103 size_type c_map_max_size(c_pmap thiz); [all …]
|
| H A D | c_iterator.h | 112 c_iterator (* assign)(c_piterator thiz, const c_piterator val); 113 value_type (* ref)(c_piterator thiz); 114 value_type (* ref_assign)(c_piterator thiz, const value_type val); 115 c_iterator (* inc)(c_piterator thiz); 116 c_iterator (* inc_n)(c_piterator thiz, difference_type n); 117 c_iterator (* dec)(c_piterator thiz); 118 c_iterator (* dec_n)(c_piterator thiz, difference_type n); 119 difference_type (* diff)(c_piterator thiz, const c_piterator val); 120 value_type (* at)(c_piterator thiz, difference_type n); 121 c_iterator (* positive_n)(c_piterator thiz, difference_type n); [all …]
|
| H A D | c_function.c | 56 static c_bool _c_unary_negate_impl(c_unary_predicate * thiz, value_type val) in _c_unary_negate_impl() argument 58 return !((UNARY_PREDICATE)(thiz->_l))(val); in _c_unary_negate_impl() 69 static c_bool _c_binary_negate_impl(c_binary_predicate * thiz, value_type val1, value_type val2) in _c_binary_negate_impl() argument 71 return !((BINARY_PREDICATE)(thiz->_l))(val1, val2); in _c_binary_negate_impl() 82 static value_type _c_identity_impl(c_unary_function * thiz, value_type val) in _c_identity_impl() argument 95 static value_type _c_select1st_impl(c_unary_function * thiz, value_type val) in _c_select1st_impl() argument 108 static value_type _c_select1stptr_impl(c_unary_function * thiz, value_type val) in _c_select1stptr_impl() argument 121 static c_bool _c_unary_adapt_impl(c_unary_predicate * thiz, value_type val) in _c_unary_adapt_impl() argument 123 return ((UNARY_PREDICATE)(thiz->_l))(val); in _c_unary_adapt_impl() 134 static c_bool _c_binary_adapt_impl(c_binary_predicate * thiz, value_type val1, value_type val2) in _c_binary_adapt_impl() argument [all …]
|
| H A D | c_function.h | 89 value_type (*O)(c_unary_function * thiz, value_type val); 95 value_type (*O)(c_binary_function * thiz, value_type val1, value_type val2); 104 c_bool (*O)(c_unary_predicate * thiz, value_type val); 110 c_bool (*O)(c_binary_predicate * thiz, value_type val1, value_type val2);
|
| /OK3568_Linux_fs/external/rockit/tgi/sdk/include/ |
| H A D | rt_log.h | 73 #define RT_LOG_CONSTRUCT_IN(thiz) RT_LOGD_IF(LOG_FLAG, "%s(%p) construct", __FUNCTION__, thiz) argument 74 #define RT_LOG_CONSTRUCT_DONE(thiz) RT_LOGD_IF(LOG_FLAG, "%s(%p) construct ok", __FUNCTION__, thiz) argument 75 #define RT_LOG_DESTRUCT_IN(thiz) RT_LOGD_IF(LOG_FLAG, "%s(%p) destructor", __FUNCTION__, thiz) argument 76 #define RT_LOG_DESTRUCT_DONE(thiz) RT_LOGD_IF(LOG_FLAG, "%s(%p) destructor ok", __FUNCTION__, thi… argument
|
| /OK3568_Linux_fs/u-boot/drivers/mtd/nand/raw/ |
| H A D | stm32_fmc2_nand.c | 139 u8 thiz; member 197 pmem |= FMC2_PMEM_MEMHIZ(timings->thiz); in stm32_fmc2_timings_init() 203 patt |= FMC2_PATT_ATTHIZ(timings->thiz); in stm32_fmc2_timings_init() 630 int tar, tclr, thiz, twait, tset_mem, tset_att, thold_mem, thold_att; in stm32_fmc2_calc_timings() local 646 tims->thiz = FMC2_THIZ; in stm32_fmc2_calc_timings() 647 thiz = (tims->thiz + 1) * hclkp; in stm32_fmc2_calc_timings() 677 if (twait > thiz && (sdrt->tDS_min > twait - thiz) && in stm32_fmc2_calc_timings() 678 (tset_mem < sdrt->tDS_min - (twait - thiz))) in stm32_fmc2_calc_timings() 679 tset_mem = sdrt->tDS_min - (twait - thiz); in stm32_fmc2_calc_timings() 726 if (twait > thiz && (sdrt->tDS_min > twait - thiz) && in stm32_fmc2_calc_timings() [all …]
|
| /OK3568_Linux_fs/kernel/drivers/mtd/nand/raw/ |
| H A D | fsmc_nand.c | 108 u8 thiz; member 266 u32 tclr, tar, thiz, thold, twait, tset; in fsmc_nand_setup() local 270 thiz = (tims->thiz & FSMC_THIZ_MASK) << FSMC_THIZ_SHIFT; in fsmc_nand_setup() 279 writel_relaxed(thiz | thold | twait | tset, host->regs_va + COMM); in fsmc_nand_setup() 280 writel_relaxed(thiz | thold | twait | tset, host->regs_va + ATTRIB); in fsmc_nand_setup() 289 u32 thiz, thold, twait, tset, twait_min; in fsmc_calc_timings() local 301 thiz = sdrt->tCS_min - sdrt->tWP_min; in fsmc_calc_timings() 302 tims->thiz = DIV_ROUND_UP(thiz / 1000, hclkn); in fsmc_calc_timings()
|
| H A D | stm32_fmc2_nand.c | 224 u8 thiz; member 296 pmem |= FIELD_PREP(FMC2_PMEM_MEMHIZ, timings->thiz); in stm32_fmc2_nfc_timings_init() 303 patt |= FIELD_PREP(FMC2_PATT_ATTHIZ, timings->thiz); in stm32_fmc2_nfc_timings_init() 1397 unsigned long timing, tar, tclr, thiz, twait; in stm32_fmc2_nfc_calc_timings() local 1408 tims->thiz = FMC2_THIZ; in stm32_fmc2_nfc_calc_timings() 1409 thiz = (tims->thiz + 1) * hclkp; in stm32_fmc2_nfc_calc_timings() 1432 if (twait > thiz && (sdrt->tDS_min > twait - thiz) && in stm32_fmc2_nfc_calc_timings() 1433 (tset_mem < sdrt->tDS_min - (twait - thiz))) in stm32_fmc2_nfc_calc_timings() 1434 tset_mem = sdrt->tDS_min - (twait - thiz); in stm32_fmc2_nfc_calc_timings() 1473 if (twait > thiz && (sdrt->tDS_min > twait - thiz) && in stm32_fmc2_nfc_calc_timings() [all …]
|
| /OK3568_Linux_fs/buildroot/package/directfb/ |
| H A D | 0005-add-missing-idivine-header.patch | 61 +DFBResult IDiVine_Construct( IDiVine *thiz ); 63 +void IDiVine_Destruct ( IDiVine *thiz );
|
| /OK3568_Linux_fs/external/rknpu2/examples/rknn_yolov5_android_apk_demo/app/src/main/cpp/ |
| H A D | native-lib.cc | 76 Java_com_rockchip_gpadc_demo_yolo_InferenceWrapper_native_1post_1process(JNIEnv *env, jobject thiz, in Java_com_rockchip_gpadc_demo_yolo_InferenceWrapper_native_1post_1process() argument
|