Searched refs:new_len (Results 1 – 7 of 7) sorted by relevance
/AliOS-Things-master/components/lwip/lwip2.0.0/core/ |
A D | pbuf.c | 560 pbuf_realloc(struct pbuf *p, u16_t new_len) in pbuf_realloc() argument 573 if (new_len >= p->tot_len) { in pbuf_realloc() 580 grow = new_len - p->tot_len; in pbuf_realloc() 583 rem_len = new_len; in pbuf_realloc()
|
/AliOS-Things-master/components/littlevgl/src/lv_misc/ |
A D | lv_txt.c | 314 uint32_t new_len = ins_len + old_len; in lv_txt_ins() local 319 for(i = new_len; i >= pos + ins_len; i--) { in lv_txt_ins()
|
/AliOS-Things-master/components/linkkit/wifi_provision/smartconfig/ |
A D | awss_smartconfig.c | 789 int try_to_replace_same_pos(int tods, int pos, int new_len) in try_to_replace_same_pos() argument 799 if (pkg_len(i) == new_len) { in try_to_replace_same_pos() 806 pkg_len(pos) = new_len; in try_to_replace_same_pos()
|
/AliOS-Things-master/components/py_engine/engine/py/ |
A D | objstr.c | 1648 GET_STR_DATA_LEN(args[2], new, new_len); in str_replace() 1672 memcpy(data, new, new_len); in str_replace() 1674 replaced_str_index += new_len; in str_replace() 1688 memcpy(data + replaced_str_index, new, new_len); in str_replace() 1690 replaced_str_index += new_len; in str_replace()
|
/AliOS-Things-master/components/littlevgl/src/lv_objx/ |
A D | lv_label.c | 761 uint32_t new_len = ins_len + old_len; in lv_label_ins_text() local 762 ext->text = lv_mem_realloc(ext->text, new_len + 1); in lv_label_ins_text()
|
/AliOS-Things-master/components/amp/engine/quickjs_engine/quickjs/ |
A D | quickjs.c | 3616 if (new_len > JS_STRING_LEN_MAX) { in string_buffer_realloc() 8217 uint32_t new_len, array_len; in add_fast_array_element() local 8220 new_len = p->u.array.count + 1; in add_fast_array_element() 8225 if (new_len > array_len) { in add_fast_array_element() 8248 p->u.array.u.values[new_len - 1] = val; in add_fast_array_element() 8249 p->u.array.count = new_len; in add_fast_array_element() 50639 int64_t len, start, end, new_len; in js_array_buffer_slice() local 50657 new_len = max_int64(end - start, 0); in js_array_buffer_slice() 51009 int new_len; in js_typed_array_create() local 51017 if (new_len < 0) in js_typed_array_create() [all …]
|
/AliOS-Things-master/components/amp/engine/duktape_engine/duktape/ |
A D | duktape.c | 30695 duk_size_t new_len; in duk__concat_and_join_helper() local 30706 len = new_len; in duk__concat_and_join_helper() 64875 new_len = idx + 1; 65780 while (i > new_len) { 65786 *out_result_len = new_len; 65802 target_len = new_len; 65823 if (arr_idx < new_len) { 65911 duk_uint32_t new_len; local 65953 if (new_len >= old_len) { 65955 a->length = new_len; [all …]
|
Completed in 352 milliseconds