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

/haiku/src/add-ons/kernel/partitioning_systems/session/
H A Dsession.cpp53 Disc *disc = new(std::nothrow) Disc(fd); local
54 if (disc != NULL && disc->InitCheck() == B_OK) {
57 if (disc->GetSession(1) != NULL)
61 *cookie = static_cast<void*>(disc);
63 delete disc;
78 Disc *disc = static_cast<Disc*>(cookie); local
86 for (int i = 0; (session = disc->GetSession(i)); i++) {
/haiku/docs/interface_guidelines/docbook-css/
H A Dstyles.css386 list-style-type: disc;
423 list-style-type: disc;
440 list-style-type: disc;
/haiku/src/add-ons/kernel/file_systems/ntfs/libntfs/
H A Drunlist.c292 BOOL disc = FALSE; /* Discontinuity between @dst and @src */ local
302 /* disc => Discontinuity between the end of @dst and the start of @src.
306 disc = (src[0].vcn > 0);
316 disc = (src[0].vcn > dst[loc - 1].vcn + merged_length);
322 dst = ntfs_rl_realloc(dst, dsize, dsize + ssize - left + disc);
337 * If "disc", then @dst and @src don't meet and we need an extra run to fill the gap.
339 marker = loc + ssize - left + disc;
343 ntfs_rl_mc(dst, loc + disc, src, left, ssize - left);
352 if (disc) {

Completed in 82 milliseconds