mirror of https://github.com/svaarala/duktape.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
339 B
10 lines
339 B
define: DUK_USE_STRTAB_GROW_LIMIT
|
|
introduced: 2.1.0
|
|
default: 17 # 17/16 = 1.0625
|
|
tags:
|
|
- performance
|
|
- lowmemory
|
|
description: >
|
|
Grow top level strtable allocation when load factor reaches this value.
|
|
Expressed as a .4 fixed point; the load factor is computed as
|
|
floor((count / size) * 16.0), e.g. 32 means a load factor of 2.0.
|
|
|