Lines Matching refs:entry

74 /* n_data was the first entry we added after the initial file format design */
77 /* How many entries to keep in the entry array chain cache at max */
630 /* We estimate that we need 1 hash table entry per 768 bytes
810 /* Only entry in the hash table is easy */
915 /* If there's no data hash table, then there's no entry. */
1178 return (le64toh(o->object.size) - offsetof(Object, entry.items)) / sizeof(EntryItem);
1310 p = le64toh(o->entry.items[i].object_offset);
1339 /* Link up the entry itself */
1347 /* log_debug("=> %s seqnr=%"PRIu64" n_entries=%"PRIu64, f->path, o->entry.seqnum, f->header->n_entries); */
1350 f->header->head_entry_realtime = o->entry.realtime;
1352 f->header->tail_entry_realtime = o->entry.realtime;
1353 f->header->tail_entry_monotonic = o->entry.monotonic;
1385 osize = offsetof(Object, entry.items) + (n_items * sizeof(EntryItem));
1391 o->entry.seqnum = htole64(journal_file_entry_seqnum(f, seqnum));
1392 memcpy(o->entry.items, items, n_items * sizeof(EntryItem));
1393 o->entry.realtime = htole64(ts->realtime);
1394 o->entry.monotonic = htole64(ts->monotonic);
1395 o->entry.xor_hash = htole64(xor_hash);
1396 o->entry.boot_id = f->header->boot_id;
1960 see if in the actual array there is a matching entry, and
2024 if (le64toh(o->entry.seqnum) == needle)
2026 else if (le64toh(o->entry.seqnum) < needle)
2061 if (le64toh(o->entry.realtime) == needle)
2063 else if (le64toh(o->entry.realtime) < needle)
2098 if (le64toh(o->entry.monotonic) == needle)
2100 else if (le64toh(o->entry.monotonic) < needle)
2160 f->current_seqnum = le64toh(o->entry.seqnum);
2161 f->current_realtime = le64toh(o->entry.realtime);
2162 f->current_monotonic = le64toh(o->entry.monotonic);
2163 f->current_boot_id = o->entry.boot_id;
2164 f->current_xor_hash = le64toh(o->entry.xor_hash);
2274 log_debug("%s: entry array corrupted at entry %"PRIu64,
2405 /* And now, continue seeking until we find an entry that
2540 le64toh(o->entry.seqnum),
2541 le64toh(o->entry.monotonic),
2542 le64toh(o->entry.realtime));
3027 ts.monotonic = le64toh(o->entry.monotonic);
3028 ts.realtime = le64toh(o->entry.realtime);
3041 q = le64toh(o->entry.items[i].object_offset);
3042 le_hash = o->entry.items[i].hash;
3245 *from = le64toh(o->entry.monotonic);
3261 *to = le64toh(o->entry.monotonic);