Searched refs:dbuf_put (Results 1 – 7 of 7) sorted by relevance
/AliOS-Things-master/components/amp/engine/quickjs_engine/quickjs/ |
A D | cutils.h | 249 int dbuf_put(DynBuf *s, const uint8_t *data, size_t len); 255 return dbuf_put(s, (uint8_t *)&val, 2); in dbuf_put_u16() 259 return dbuf_put(s, (uint8_t *)&val, 4); in dbuf_put_u32() 263 return dbuf_put(s, (uint8_t *)&val, 8); in dbuf_put_u64()
|
A D | cutils.c | 137 int dbuf_put(DynBuf *s, const uint8_t *data, size_t len) in dbuf_put() function 161 return dbuf_put(s, &c, 1); in dbuf_putc() 166 return dbuf_put(s, (const uint8_t *)str, strlen(str)); in dbuf_putstr() 181 return dbuf_put(s, (uint8_t *)buf, len); in dbuf_printf()
|
A D | libregexp.c | 1322 dbuf_put(&s->group_names, (uint8_t *)s->u.tmp_buf, in re_parse_term() 1890 dbuf_put(&s->byte_code, s->group_names.buf, s->group_names.size); in lre_compile()
|
A D | quickjs-libc.c | 181 dbuf_put(&dbuf, p, fmt - p); in js_printf_internal() 267 dbuf_put(&dbuf, cbuf, len); in js_printf_internal() 1328 dbuf_put(data_buf, (uint8_t *)buf, len); in js_std_urlGet()
|
A D | quickjs.c | 25848 dbuf_put(bc, bc->buf + pos_next, chunk_size); in js_parse_for_in_of() 26227 dbuf_put(bc, bc->buf + pos_cont, chunk_size); in js_parse_statement_or_decl() 30427 dbuf_put(&bc_out, bc_buf + pos, len); in resolve_variables() 30554 dbuf_put(&bc_out, bc_buf + pos, len); in resolve_variables() 30574 dbuf_put(&bc_out, bc_buf + pos, len); in resolve_variables() 31588 dbuf_put(&bc_out, bc_buf + pos, len); in resolve_labels() 33330 dbuf_put(&s->dbuf, (uint8_t*)&v, sizeof(v)); in bc_put_u64() 33501 dbuf_put(&s->dbuf, bc_buf, bc_len); in JS_WriteFunctionBytecode() 33518 dbuf_put(&s->dbuf, p->u.str8, p->len); in JS_WriteString() 33733 dbuf_put(&s->dbuf, b->debug.pc2line_buf, b->debug.pc2line_len); in JS_WriteFunctionTag() [all …]
|
A D | libbf.c | 3684 dbuf_put(s, (uint8_t *)(buf + buf_pos), l); in output_digits()
|
/AliOS-Things-master/components/amp/engine/quickjs_engine/addons/libc/ |
A D | quickjs_libc.c | 168 dbuf_put(&dbuf, p, fmt - p); in js_printf_internal() 268 dbuf_put(&dbuf, cbuf, len); in js_printf_internal() 1493 dbuf_put(data_buf, (uint8_t *)buf, len); in js_std_urlGet()
|
Completed in 132 milliseconds