Searched refs:dib (Results 1 - 3 of 3) sorted by relevance

/systemd/tools/
H A Dgdb-sd_dump_hashmaps.py59 dib = int(dib_raw_addr[i])
60 histogram[dib] = histogram.get(dib, 0) + 1
62 for dib in sorted(iter(histogram)):
63 if dib != 255:
64 print "%3d %8d %f%% of entries" % (dib, histogram[dib], 100.0*histogram[dib]/n_entries)
66 print "%3d %8d %f%% of slots" % (dib, histogram[dib], 100.
[all...]
/systemd/src/boot/efi/
H A Dsplash.c56 struct bmp_dib *dib; local
73 dib = (struct bmp_dib *)(bmp + sizeof(struct bmp_file));
74 if (dib->size < sizeof(struct bmp_dib))
77 switch (dib->depth) {
82 if (dib->compression != 0)
89 if (dib->compression != 0 && dib->compression != 3)
98 row_size = ((UINTN) dib->depth * dib->x + 31) / 32 * 4;
99 if (file->size - file->offset < dib
163 bmp_to_blt(EFI_GRAPHICS_OUTPUT_BLT_PIXEL *buf, struct bmp_dib *dib, struct bmp_map *map, UINT8 *pixmap) argument
258 struct bmp_dib *dib; local
[all...]
/systemd/src/basic/
H A Dhashmap.c415 static void bucket_set_dib(HashmapBase *h, unsigned idx, unsigned dib) { argument
416 dib_raw_ptr(h)[idx] = dib != DIB_FREE ? MIN(dib, DIB_RAW_OVERFLOW) : DIB_RAW_FREE;
496 unsigned left, right, prev, dib; local
538 dib = bucket_calculate_dib(h, left, dibs[left]);
539 assert(dib != 0);
541 bucket_set_dib(h, prev, dib - 1);
920 unsigned dib, distance; local
947 dib = bucket_calculate_dib(h, idx, raw_dib);
949 if (dib < distanc
1169 unsigned dib, distance; local
[all...]

Completed in 1583 milliseconds