HomeSort by relevance Sort by last modified time
    Searched refs:_PyObject (Results 1 - 2 of 2) sorted by null

  /external/libchrome/third_party/jinja2/
debug.py 318 class _PyObject(ctypes.Structure):
320 _PyObject._fields_ = [
322 ('ob_type', ctypes.POINTER(_PyObject))
327 class _PyObject(ctypes.Structure):
329 _PyObject._fields_ = [
330 ('_ob_next', ctypes.POINTER(_PyObject)),
331 ('_ob_prev', ctypes.POINTER(_PyObject)),
333 ('ob_type', ctypes.POINTER(_PyObject))
336 class _Traceback(_PyObject):
340 ('tb_frame', ctypes.POINTER(_PyObject)),
    [all...]
  /external/python/cpython3/Objects/
obmalloc.c 209 static PyMemAllocatorEx _PyObject = PYDBGOBJ_ALLOC;
213 static PyMemAllocatorEx _PyObject = PYOBJ_ALLOC;
331 pymemallocator_eq(&_PyObject, &malloc_alloc))
338 pymemallocator_eq(&_PyObject, &pymalloc))
350 pymemallocator_eq(&_PyObject, &dbg_obj))
396 return (_PyObject.malloc == _PyMem_DebugMalloc);
406 return (_PyObject.malloc == _PyObject_Malloc);
444 if (_PyObject.malloc == _PyMem_DebugMalloc) {
474 case PYMEM_DOMAIN_OBJ: *allocator = _PyObject; break;
492 case PYMEM_DOMAIN_OBJ: _PyObject = *allocator; break
    [all...]

Completed in 87 milliseconds