HomeSort by relevance Sort by last modified time
    Searched refs:PyCapsule_New (Results 1 - 25 of 53) sorted by null

1 2 3

  /external/tensorflow/tensorflow/compiler/xla/python/
custom_call_for_test.pyx 6 from cpython.pycapsule cimport PyCapsule_New
19 cpu_custom_call_targets[fn_name] = PyCapsule_New(fn, name, NULL)
  /external/libxml2/python/
types.c 234 ret = PyCapsule_New((void *) doc, (char *) "xmlDocPtr", NULL);
250 ret = PyCapsule_New((void *) node, (char *) "xmlNodePtr", NULL);
266 ret = PyCapsule_New((void *) uri, (char *) "xmlURIPtr", NULL);
282 ret = PyCapsule_New((void *) ns, (char *) "xmlNsPtr", NULL);
298 ret = PyCapsule_New((void *) attr, (char *) "xmlAttrPtr", NULL);
314 ret = PyCapsule_New((void *) attr, (char *) "xmlAttributePtr", NULL);
330 ret = PyCapsule_New((void *) elem, (char *) "xmlElementPtr", NULL);
346 ret = PyCapsule_New((void *) ctxt, (char *) "xmlXPathContextPtr", NULL);
362 ret = PyCapsule_New((void *)ctxt, (char *)"xmlXPathParserContextPtr", NULL);
379 ret = PyCapsule_New((void *) ctxt, (char *) "xmlParserCtxtPtr", NULL)
    [all...]
libxml_wrap.h 38 #ifndef PyCapsule_New
39 #define PyCapsule_New PyCObject_FromVoidPtrAndDesc
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Include/
pycapsule.h 28 PyAPI_FUNC(PyObject *) PyCapsule_New(
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Include/
pycapsule.h 28 PyAPI_FUNC(PyObject *) PyCapsule_New(
  /external/python/cpython2/Include/
pycapsule.h 28 PyAPI_FUNC(PyObject *) PyCapsule_New(
  /external/python/cpython3/Include/
pycapsule.h 28 PyAPI_FUNC(PyObject *) PyCapsule_New(
  /external/python/cpython2/Doc/includes/
capsulethunk.h 27 #define PyCapsule_New(pointer, name, destructor) \
  /external/python/cpython3/Doc/includes/
capsulethunk.h 27 #define PyCapsule_New(pointer, name, destructor) \
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/
capsule.c 44 PyCapsule_New(void *pointer, const char *name, PyCapsule_Destructor destructor)
49 PyErr_SetString(PyExc_ValueError, "PyCapsule_New called with null pointer");
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/
capsule.c 44 PyCapsule_New(void *pointer, const char *name, PyCapsule_Destructor destructor)
49 PyErr_SetString(PyExc_ValueError, "PyCapsule_New called with null pointer");
  /external/python/cpython2/Objects/
capsule.c 44 PyCapsule_New(void *pointer, const char *name, PyCapsule_Destructor destructor)
49 PyErr_SetString(PyExc_ValueError, "PyCapsule_New called with null pointer");
  /external/python/cpython3/Objects/
capsule.c 44 PyCapsule_New(void *pointer, const char *name, PyCapsule_Destructor destructor)
49 PyErr_SetString(PyExc_ValueError, "PyCapsule_New called with null pointer");
  /external/python/cpython3/Modules/cjkcodecs/
cjkcodecs.h 288 codecobj = PyCapsule_New((void *)codec, PyMultibyteCodec_CAPSULE_NAME, NULL);
313 PyCapsule_New((void *)h, PyMultibyteCodec_CAPSULE_NAME, NULL));
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/cjkcodecs/
cjkcodecs.h 285 codecobj = PyCapsule_New((void *)codec, PyMultibyteCodec_CAPSULE_NAME, NULL);
310 PyCapsule_New((void *)h, PyMultibyteCodec_CAPSULE_NAME, NULL));
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/cjkcodecs/
cjkcodecs.h 285 codecobj = PyCapsule_New((void *)codec, PyMultibyteCodec_CAPSULE_NAME, NULL);
310 PyCapsule_New((void *)h, PyMultibyteCodec_CAPSULE_NAME, NULL));
  /external/python/cpython2/Modules/cjkcodecs/
cjkcodecs.h 285 codecobj = PyCapsule_New((void *)codec, PyMultibyteCodec_CAPSULE_NAME, NULL);
310 PyCapsule_New((void *)h, PyMultibyteCodec_CAPSULE_NAME, NULL));
  /external/tensorflow/tensorflow/python/
pywrap_tfe.i 189 $result = PyCapsule_New($1, nullptr, TFE_DeleteContextCapsule);
  /external/python/cpython2/Modules/_ctypes/
ctypes.h 466 (PyCapsule_New(pointer, name, capsule_destructor_ ## name))
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/
cStringIO.c 769 v = PyCapsule_New(&CAPI, PycStringIO_CAPSULE_NAME, NULL);
unicodedata.c     [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
cStringIO.c 742 v = PyCapsule_New(&CAPI, PycStringIO_CAPSULE_NAME, NULL);
_testcapimodule.c     [all...]
  /external/python/cpython2/Modules/
cStringIO.c 769 v = PyCapsule_New(&CAPI, PycStringIO_CAPSULE_NAME, NULL);
  /external/python/cpython3/Modules/_ctypes/
callproc.c 163 errobj = PyCapsule_New(space, CTYPES_CAPSULE_NAME_PYMEM, pymem_destructor);
696 pa->keep = PyCapsule_New(pa->value.p, CTYPES_CAPSULE_NAME_PYMEM, pymem_destructor);
    [all...]

Completed in 1272 milliseconds

1 2 3