Lines Matching refs:pymalloc
19 memory leaks, you will need to configure python --without-pymalloc.
24 to the system malloc. Note: configuring python --without-pymalloc
28 about 5 times longer to run --without-pymalloc.
44 PyMalloc when configuring python by adding the --without-pymalloc option.
62 time, regardless of how many memory areas are under pymalloc's
65 The memory pymalloc manages itself is in one or more "arenas",
67 The base address of each arena is saved by pymalloc
72 Given an arbitrary address, pymalloc computes the pool base
75 vector of arena base addresses pymalloc maintains, then
76 pymalloc knows for certain that this address is not under
77 pymalloc's control. Otherwise the index is in bounds, and
78 pymalloc compares
84 the arbitrary address pymalloc is investigating
86 pymalloc controls this arbitrary address if and only if it lies
89 It doesn't matter whether the memory pymalloc reads up ("the
91 whatever trash gets read up will lead pymalloc to conclude
97 pymalloc's free/realloc entry points, so its speed is critical