Lines Matching defs:table
1594 /* Return a dictionary corresponding to the POSIX environment table */
9052 #define HAVE_TIMES /* mandatory, for the method table */
11609 conv_confname(PyObject *arg, int *valuep, struct constdef *table,
11620 /* look up the value in the table using a binary search */
11636 cmp = strcmp(confname, table[mid].name);
11642 *valuep = table[mid].value;
12565 * Sorting the table at runtime ensures that the table is properly ordered
12582 setup_confname_table(struct constdef *table, size_t tablesize,
12588 qsort(table, tablesize, sizeof(struct constdef), cmp_constdefs);
12594 PyObject *o = PyLong_FromLong(table[i].value);
12595 if (o == NULL || PyDict_SetItemString(d, table[i].name, o) == -1) {