Searched refs:v_len (Results 1 – 2 of 2) sorted by relevance
/AliOS-Things-master/components/amp/engine/quickjs_engine/quickjs/ |
A D | libunicode.c | 944 uint32_t c, c1, b, n, v, v_len, i, type; in unicode_script() local 1015 v_len = *p++; in unicode_script() 1017 if (v_len != 0) { in unicode_script() 1022 for(i = 0; i < v_len; i++) { in unicode_script() 1030 p += v_len; in unicode_script()
|
A D | quickjs.c | 39779 int i, len, v_len, pos, start, stop, ret, inc; in js_string_indexOf() local 39792 v_len = p1->len; in js_string_indexOf() 39794 pos = len - v_len; in js_string_indexOf() 39816 stop = len - v_len; in js_string_indexOf() 39820 if (len >= v_len && inc * (stop - start) >= 0) { in js_string_indexOf() 39822 if (!string_cmp(p, p1, i, 0, v_len)) { in js_string_indexOf() 39847 int i, len, v_len, pos, start, stop, ret; in js_string_includes() local 39866 v_len = p1->len; in js_string_includes() 39872 len -= v_len; in js_string_includes() 39882 pos -= v_len; in js_string_includes() [all …]
|
Completed in 116 milliseconds