Searched refs:start_p (Results 1 – 3 of 3) sorted by relevance
/external/python/cpython2/Modules/ |
D | mmapmodule.c | 273 const char *p, *start_p, *end_p; in mmap_gfind() local 290 start_p = self->data + start; in mmap_gfind() 293 for (p = (reverse ? end_p - len : start_p); in mmap_gfind() 294 (p >= start_p) && (p + len <= end_p); p += sign) { in mmap_gfind()
|
D | _bsddb.c | 1852 DBT *start_p = NULL, *stop_p = NULL; in DB_compact() local 1874 start_p = &start; in DB_compact() 1881 err = self->db->compact(self->db, txn, start_p, stop_p, &c_data, in DB_compact()
|
/external/python/cpython3/Modules/ |
D | mmapmodule.c | 277 const char *p, *start_p, *end_p; in mmap_gfind() local 296 start_p = self->data + start; in mmap_gfind() 299 for (p = (reverse ? end_p - len : start_p); in mmap_gfind() 300 (p >= start_p) && (p + len <= end_p); p += sign) { in mmap_gfind()
|