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