Lines Matching defs:offset
83 "unpack_from($self, /, buffer, offset=0)\n"
90 "The buffer\'s size in bytes, starting at position offset, must be\n"
100 Py_ssize_t offset);
106 static const char * const _keywords[] = {"buffer", "offset", NULL};
111 Py_ssize_t offset = 0;
137 offset = ival;
140 return_value = Struct_unpack_from_impl(self, &buffer, offset);
268 "unpack_from($module, format, /, buffer, offset=0)\n"
273 "The buffer\'s size, minus offset, must be at least calcsize(format).\n"
282 Py_buffer *buffer, Py_ssize_t offset);
288 static const char * const _keywords[] = {"", "buffer", "offset", NULL};
294 Py_ssize_t offset = 0;
323 offset = ival;
326 return_value = unpack_from_impl(module, s_object, &buffer, offset);