Home
last modified time | relevance | path

Searched refs:structobj (Results 1 – 3 of 3) sorted by relevance

/third_party/python/Modules/
D_testbuffer.c304 PyObject *structobj, *pack_into; in pack_from_list() local
315 structobj = PyObject_CallFunctionObjArgs(Struct, format, NULL); in pack_from_list()
316 if (structobj == NULL) in pack_from_list()
320 nmemb = get_nmemb(structobj); in pack_from_list()
323 pack_into = PyObject_GetAttrString(structobj, "pack_into"); in pack_from_list()
325 Py_DECREF(structobj); in pack_from_list()
333 Py_DECREF(structobj); in pack_from_list()
388 Py_DECREF(structobj); in pack_from_list()
397 PyObject *structobj = NULL, *pack_into = NULL, *args = NULL; in pack_single() local
409 structobj = PyObject_CallFunctionObjArgs(Struct, format, NULL); in pack_single()
[all …]
/third_party/python/Objects/
Dmemoryobject.c1963 PyObject *structobj = NULL; in struct_get_unpacker() local
1984 structobj = PyObject_CallOneArg(Struct, format); in struct_get_unpacker()
1985 if (structobj == NULL) in struct_get_unpacker()
1988 x->unpack_from = PyObject_GetAttrString(structobj, "unpack_from"); in struct_get_unpacker()
2007 Py_XDECREF(structobj); in struct_get_unpacker()
/third_party/flatbuffers/include/flatbuffers/
Dflatbuffers.h2101 template<typename T> Offset<const T *> CreateStruct(const T &structobj) {
2104 buf_.push_small(structobj);