Searched defs:JSString (Results 1 – 1 of 1) sorted by relevance
228 typedef struct JSString JSString; typedef505 struct JSString { struct506 JSRefCountHeader header; /* must come first, 32-bit */507 uint32_t len : 31;508 uint8_t is_wide_char : 1; /* 0 = 8 bits, 1 = 16 bits characters */512 uint32_t hash : 30;513 uint8_t atom_type : 2; /* != 0 if atom, JS_ATOM_TYPE_x */514 uint32_t hash_next; /* atom_index for JS_ATOM_TYPE_SYMBOL */516 struct list_head link; /* string list */518 union {[all …]
Completed in 128 milliseconds