Lines Matching defs:fmt
1236 const char *fmt = (*pfmt)++; /* May be backed out of later */
1237 switch (*fmt) {
1306 const char *fmt;
1313 fmt = PyBytes_AS_STRING(self->s_format);
1314 if (strlen(fmt) != (size_t)PyBytes_GET_SIZE(self->s_format)) {
1320 f = whichtable(&fmt);
1322 s = fmt;
1389 s = fmt;
2089 "Struct(fmt) --> compiled struct object\n"
2125 cache_struct_converter(PyObject *module, PyObject *fmt, PyStructObject **ptr)
2130 if (fmt == NULL) {
2142 s_object = PyDict_GetItemWithError(state->cache, fmt);
2152 s_object = PyObject_CallOneArg(state->PyStructType, fmt);
2157 if (PyDict_SetItem(state->cache, fmt, s_object) == -1)