Lines Matching refs:pymalloc
7 --without-pymalloc.
20 memory leaks, you will need to configure python --without-pymalloc.
25 to the system malloc. Note: configuring python --without-pymalloc
29 about 5 times longer to run --without-pymalloc.
45 PyMalloc when configuring python by adding the --without-pymalloc option.
52 --without-pymalloc usually increases the usefulness of other tools.
67 time, regardless of how many memory areas are under pymalloc's
70 The memory pymalloc manages itself is in one or more "arenas",
72 The base address of each arena is saved by pymalloc
77 Given an arbitrary address, pymalloc computes the pool base
80 vector of arena base addresses pymalloc maintains, then
81 pymalloc knows for certain that this address is not under
82 pymalloc's control. Otherwise the index is in bounds, and
83 pymalloc compares
89 the arbitrary address pymalloc is investigating
91 pymalloc controls this arbitrary address if and only if it lies
94 It doesn't matter whether the memory pymalloc reads up ("the
96 whatever trash gets read up will lead pymalloc to conclude
102 pymalloc's free/realloc entry points, so its speed is critical