Github User Fetcher 1.0.0
C Application with Server and GUI
Loading...
Searching...
No Matches
duktape-1.8.0/src-separate/duk_hstring_misc.c
Go to the documentation of this file.
1/*
2 * Misc support functions
3 */
4
5#include "duk_internal.h"
6
8 duk_uint32_t boff;
9 const duk_uint8_t *p, *p_start, *p_end;
11
12 /* Caller must check character offset to be inside the string. */
13 DUK_ASSERT(thr != NULL);
14 DUK_ASSERT(h != NULL);
15 DUK_ASSERT_DISABLE(pos >= 0); /* unsigned */
17
18 boff = duk_heap_strcache_offset_char2byte(thr, h, (duk_uint32_t) pos);
19 DUK_DDD(DUK_DDDPRINT("charCodeAt: pos=%ld -> boff=%ld, str=%!O",
20 (long) pos, (long) boff, (duk_heaphdr *) h));
21 DUK_ASSERT_DISABLE(boff >= 0);
23
24 p_start = DUK_HSTRING_GET_DATA(h);
25 p_end = p_start + DUK_HSTRING_GET_BYTELEN(h);
26 p = p_start + boff;
27 DUK_DDD(DUK_DDDPRINT("p_start=%p, p_end=%p, p=%p",
28 (const void *) p_start, (const void *) p_end,
29 (const void *) p));
30
31 /* This may throw an error though not for valid E5 strings. */
32 cp = duk_unicode_decode_xutf8_checked(thr, &p, p_start, p_end);
33 return cp;
34}
35
36#if !defined(DUK_USE_HSTRING_CLEN)
38 if (DUK_HSTRING_HAS_ASCII(h)) {
39 /* Most practical strings will go here. */
41 } else {
43 }
44}
45#endif /* !DUK_USE_HSTRING_CLEN */
duk_uint_fast32_t duk_uint_t
#define DUK_HSTRING_HAS_ASCII(x)
#define DUK_HSTRING_GET_DATA(x)
DUK_INTERNAL_DECL duk_size_t duk_unicode_unvalidated_utf8_length(const duk_uint8_t *data, duk_size_t blen)
#define DUK_HSTRING_GET_CHARLEN(x)
#define DUK_ASSERT_DISABLE(x)
DUK_INTERNAL_DECL duk_uint_fast32_t duk_heap_strcache_offset_char2byte(duk_hthread *thr, duk_hstring *h, duk_uint_fast32_t char_offset)
#define DUK_HSTRING_GET_BYTELEN(x)
DUK_INTERNAL_DECL duk_ucodepoint_t duk_unicode_decode_xutf8_checked(duk_hthread *thr, const duk_uint8_t **ptr, const duk_uint8_t *ptr_start, const duk_uint8_t *ptr_end)
DUK_INTERNAL_DECL duk_size_t duk_hstring_get_charlen(duk_hstring *h)
DUK_INTERNAL duk_ucodepoint_t duk_hstring_char_code_at_raw(duk_hthread *thr, duk_hstring *h, duk_uint_t pos)
#define NULL
Definition gmacros.h:924