Lines Matching refs:compressed
91 static EcmaString *CreateLineString(const EcmaVM *vm, size_t length, bool compressed);
92 static EcmaString *CreateLineStringNoGC(const EcmaVM *vm, size_t length, bool compressed);
94 size_t length, bool compressed, MemSpaceType type);
96 …t JSHandle<EcmaString> &left, const JSHandle<EcmaString> &right, uint32_t length, bool compressed);
98 …size_t length, bool compressed, MemSpaceType type = MemSpaceType::SEMI_SPACE, uint32_t idOffset = …
102 uint32_t length, bool compressed);
138 void SetLength(uint32_t length, bool compressed = false)
142 SetMixLength((length << 2U) | (compressed ? STRING_COMPRESSED : STRING_UNCOMPRESSED));
743 static EcmaString *CreateLineString(const EcmaVM *vm, size_t length, bool compressed) in CreateLineString() argument
745 return EcmaString::CreateLineString(vm, length, compressed); in CreateLineString()
761 bool compressed, MemSpaceType type = MemSpaceType::SEMI_SPACE, uint32_t idOffset = 0)
763 return EcmaString::CreateConstantString(vm, utf8Data, length, compressed, type, idOffset);
779 uint32_t length, bool compressed) in CopyStringToOldSpace() argument
781 return EcmaString::CopyStringToOldSpace(vm, original, length, compressed); in CopyStringToOldSpace()