Lines Matching refs:items
214 if ((le64toh(o->object.size) - offsetof(EntryObject, items)) % sizeof(EntryItem) != 0) {
217 offsetof(EntryObject, items),
222 if ((le64toh(o->object.size) - offsetof(EntryObject, items)) / sizeof(EntryItem) <= 0) {
224 "Invalid number items in entry: %"PRIu64,
225 (le64toh(o->object.size) - offsetof(EntryObject, items)) / sizeof(EntryItem));
251 if (o->entry.items[i].object_offset == 0 ||
252 !VALID64(o->entry.items[i].object_offset)) {
256 o->entry.items[i].object_offset);
265 if ((le64toh(o->object.size) - offsetof(HashTableObject, items)) % sizeof(HashItem) != 0 ||
266 (le64toh(o->object.size) - offsetof(HashTableObject, items)) / sizeof(HashItem) <= 0) {
275 if (o->hash_table.items[i].head_hash_offset != 0 &&
276 !VALID64(le64toh(o->hash_table.items[i].head_hash_offset))) {
281 le64toh(o->hash_table.items[i].head_hash_offset));
284 if (o->hash_table.items[i].tail_hash_offset != 0 &&
285 !VALID64(le64toh(o->hash_table.items[i].tail_hash_offset))) {
290 le64toh(o->hash_table.items[i].tail_hash_offset));
294 if ((o->hash_table.items[i].head_hash_offset != 0) !=
295 (o->hash_table.items[i].tail_hash_offset != 0)) {
300 le64toh(o->hash_table.items[i].head_hash_offset),
301 le64toh(o->hash_table.items[i].tail_hash_offset));
309 if ((le64toh(o->object.size) - offsetof(EntryArrayObject, items)) % sizeof(le64_t) != 0 ||
310 (le64toh(o->object.size) - offsetof(EntryArrayObject, items)) / sizeof(le64_t) <= 0) {
325 if (le64toh(o->entry_array.items[i]) != 0 &&
326 !VALID64(le64toh(o->entry_array.items[i]))) {
330 le64toh(o->entry_array.items[i]));
429 if (le64toh(o->entry.items[i].object_offset) == data_p) {
457 if (entry_p <= le64toh(o->entry_array.items[u-1])) {
466 if (le64toh(o->entry_array.items[z]) == entry_p)
472 if (entry_p < le64toh(o->entry_array.items[z]))
550 q = le64toh(o->entry_array.items[j]);
695 q = le64toh(o->entry.items[i].object_offset);
696 h = le64toh(o->entry.items[i].hash);
774 p = le64toh(o->entry_array.items[j]);
1004 if (le64toh(f->header->data_hash_table_offset) != p + offsetof(HashTableObject, items) ||
1005 le64toh(f->header->data_hash_table_size) != le64toh(o->object.size) - offsetof(HashTableObject, items)) {
1021 if (le64toh(f->header->field_hash_table_offset) != p + offsetof(HashTableObject, items) ||
1022 le64toh(f->header->field_hash_table_size) != le64toh(o->object.size) - offsetof(HashTableObject, items)) {