Searched refs:id2 (Results 1 – 5 of 5) sorted by relevance
/AliOS-Things-master/components/py_engine/engine/py/ |
A D | scope.c | 141 id_info_t *id2 = scope_find(s, id->qst); in scope_check_to_close_over() local 142 if (id2 != NULL) { in scope_check_to_close_over() 143 …if (id2->kind == ID_INFO_KIND_LOCAL || id2->kind == ID_INFO_KIND_CELL || id2->kind == ID_INFO_KIND… in scope_check_to_close_over()
|
A D | compile.c | 627 id_info_t *id2 = &this_scope->id_info[j]; in close_over_variables_etc() local 628 if (id2->kind == ID_INFO_KIND_FREE && id->qst == id2->qst) { in close_over_variables_etc() 1229 qstr id2 = MP_PARSE_NODE_LEAF_ARG(pns3->nodes[0]); // should be id in compile_import_from() local 1230 EMIT_ARG(load_const_str, id2); in compile_import_from() 1240 qstr id2 = MP_PARSE_NODE_LEAF_ARG(pns3->nodes[0]); // should be id in compile_import_from() local 1241 EMIT_ARG(import, id2, MP_EMIT_IMPORT_FROM); in compile_import_from() 1243 compile_store_id(comp, id2); in compile_import_from() 3473 id_info_t *id2 = &scope->id_info[j]; in scope_compute_things() local 3474 if (id2->kind == ID_INFO_KIND_FREE && id->qst == id2->qst) { in scope_compute_things() 3475 assert(!(id2->flags & ID_FLAG_IS_PARAM)); // free vars should not be params in scope_compute_things() [all …]
|
/AliOS-Things-master/components/freetype/src/base/ |
A D | ftmac.c | 200 ATSFontRef id2 = ats_font_id - 1; in FT_GetFileRef_From_Mac_ATS_Name() local 204 while ( id2 > 0 ) in FT_GetFileRef_From_Mac_ATS_Name() 206 if ( noErr != FT_ATSFontGetFileReference( id2, &ref2 ) ) in FT_GetFileRef_From_Mac_ATS_Name() 211 id2 --; in FT_GetFileRef_From_Mac_ATS_Name() 213 *face_index = ats_font_id - ( id2 + 1 ); in FT_GetFileRef_From_Mac_ATS_Name()
|
/AliOS-Things-master/components/littlefs/src/littlefs-v220/ |
A D | lfs.c | 299 #define LFS_MKTAG_IF_ELSE(cond, type1, id1, size1, type2, id2, size2) \ argument 300 ((cond) ? LFS_MKTAG(type1, id1, size1) : LFS_MKTAG(type2, id2, size2))
|
/AliOS-Things-master/components/py_engine/engine/lib/littlefs/ |
A D | lfs2.c | 298 #define LFS2_MKTAG_IF_ELSE(cond, type1, id1, size1, type2, id2, size2) \ argument 299 ((cond) ? LFS2_MKTAG(type1, id1, size1) : LFS2_MKTAG(type2, id2, size2))
|
Completed in 40 milliseconds