Lines Matching defs:offsets

47  * limit file offsets stored in the indexes.
120 /* global file offsets (item index is the array index) within the
123 apr_uint64_t *offsets;
154 /* offsets of the pages / cluster descriptions within the index file */
155 apr_off_t *offsets;
346 /* Create and open a packed number stream reading from offsets START to
798 /* collect the item offsets and sub-item value for the current revision */
1072 /* correct the page description offsets */
1342 result->offsets = apr_pcalloc(result_pool, result->entry_count
1343 * sizeof(*result->offsets));
1345 /* read all page entries (offsets in rev file and container sub-items) */
1351 result->offsets[i] = last_value - 1;
1486 const apr_uint64_t *offsets,
1499 baton->offset = offsets[baton->page_offset];
1517 const apr_uint64_t *offsets
1518 = svn_temp_deserializer__ptr(page, (const void *const *)&page->offsets);
1521 return l2p_page_get_entry(baton, page, offsets, result_pool);
1586 SVN_ERR(l2p_page_get_entry(&page_baton, page, page->offsets,
1844 * For file offsets and sizes, this is a given as we use them to describe
2021 /* "unused" (and usually non-existent) section to cover the offsets
2218 result->offsets
2219 = apr_pcalloc(result_pool, (result->page_count + 1) * sizeof(*result->offsets));
2221 /* read page sizes and derive page description offsets from them */
2222 result->offsets[0] = 0;
2226 result->offsets[i+1] = result->offsets[i] + (apr_off_t)value;
2232 result->offsets[i] += offset;
2284 const apr_off_t *offsets)
2293 baton->start_offset = offsets[baton->page_no];
2294 baton->next_offset = offsets[baton->page_no + 1];
2301 baton->start_offset = offsets[baton->page_no];
2302 baton->next_offset = offsets[baton->page_no];
2323 const apr_off_t *offsets
2325 (const void *const *)&header->offsets);
2328 p2l_page_info_copy(baton, header, offsets);
2363 p2l_page_info_copy(baton, header, header->offsets);
3334 apr_size_t of_table_size = page->entry_count * sizeof(*page->offsets);
3342 /* offsets and sub_items arrays */
3344 (const void * const *)&page->offsets,
3365 svn_temp_deserializer__resolve(page, (void**)&page->offsets);
3382 apr_size_t table_size = (header->page_count + 1) * sizeof(*header->offsets);
3390 /* offsets array */
3392 (const void * const *)&header->offsets,
3413 svn_temp_deserializer__resolve(header, (void**)&header->offsets);