Lines Matching defs:value
188 the value is valid, and if so, free the resource
189 and set the member value to an invalid value so
441 char value;
444 if (!PyArg_ParseTuple(args, "b:write_byte", &value))
452 self->data[self->pos++] = value;
1051 mmap_ass_subscript(mmap_object *self, PyObject *item, PyObject *value)
1071 if (value == NULL) {
1076 if (!PyIndex_Check(value)) {
1078 "mmap item value must be an int");
1081 v = PyNumber_AsSsize_t(value, PyExc_TypeError);
1086 "mmap item value must be "
1102 if (value == NULL) {
1107 if (PyObject_GetBuffer(value, &vbuf, PyBUF_SIMPLE) < 0)
1165 The default value is MAP_SHARED.\n\
1484 0, /* access - ignored due to options value */
1495 /* low might just happen to have the value INVALID_FILE_SIZE;