Searched refs:is_fixed (Results 1 – 8 of 8) sorted by relevance
/AliOS-Things-master/components/py_engine/engine/py/ |
A D | map.c | 78 map->is_fixed = 0; in mp_map_init() 86 map->is_fixed = 1; in mp_map_init_fixed_table() 93 if (!map->is_fixed) { in mp_map_deinit() 100 if (!map->is_fixed) { in mp_map_clear() 106 map->is_fixed = 0; in mp_map_clear() 137 assert(!map->is_fixed || lookup_kind == MP_MAP_LOOKUP); in mp_map_lookup()
|
A D | moduerrno.c | 75 .is_fixed = 1,
|
A D | objdict.c | 40 .is_fixed = 1, 231 if (dict->map.is_fixed) { in mp_ensure_not_fixed() 255 other->map.is_fixed = 0; in mp_obj_dict_copy()
|
A D | objmodule.c | 79 if (dict->map.is_fixed) { in module_attr()
|
A D | objtype.c | 597 dest_dict->map.is_fixed = 1; in mp_obj_instance_load_attr() 1021 if (dict->map.is_fixed) { in type_attr() 1026 dict_copy->map.is_fixed = 1; in type_attr() 1061 if (locals_map->is_fixed) { in type_attr()
|
A D | obj.h | 360 .is_fixed = 1, \ 372 .is_fixed = 1, \ 410 size_t is_fixed : 1; // if set, table is fixed/read-only and can't be modified member
|
/AliOS-Things-master/components/amp/engine/quickjs_engine/quickjs/ |
A D | quickjs.c | 11163 BOOL is_fixed) in js_ecvt() argument 11168 if (!is_fixed) { in js_ecvt() 11307 BOOL is_fixed; in js_dtoa1() local 11309 is_fixed = ((flags & 3) == JS_DTOA_FIXED_FORMAT); in js_dtoa1() 11310 if (is_fixed) { in js_dtoa1() 11316 k = js_ecvt(d, n_digits, &decpt, &sign, buf1, is_fixed); in js_dtoa1()
|
/AliOS-Things-master/components/amp/engine/duktape_engine/duktape/ |
A D | duktape.c | 93203 duk_small_int_t is_fixed; /* if 1, doing a fixed format output (not free format) */ member 93568 if (nc_ctx->is_fixed == 0) { 93633 if (nc_ctx->is_fixed) { 93826 if (nc_ctx->is_fixed) { 93843 (long) nc_ctx->is_fixed, (long) digits, (long) nc_ctx->abs_pos)); 94194 nc_ctx->is_fixed = 1; 94205 nc_ctx->is_fixed = 0; 94215 if (nc_ctx->is_fixed) { 94770 nc_ctx->is_fixed = 1;
|
Completed in 339 milliseconds