OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:g_heads
(Results
1 - 1
of
1
) sorted by null
/external/toybox/toys/pending/
fdisk.c
86
static long g_cylinders,
g_heads
, g_sectors, g_sect_size;
variable
104
if (dos_flag && (start / (g_sectors *
g_heads
) > 1023))
105
start =
g_heads
* g_sectors * ONE_K - 1;
108
p->head = start %
g_heads
;
109
start /=
g_heads
;
113
if (dos_flag && (end / (g_sectors *
g_heads
) > 1023))
114
end =
g_heads
* g_sectors * ONE_K - 1;
117
p->end_head = end %
g_heads
;
118
end /=
g_heads
;
125
if (
g_heads
&& g_sectors && g_cylinders
[
all
...]
Completed in 167 milliseconds