Home
last modified time | relevance | path

Searched refs:cyls (Results 1 – 25 of 475) sorted by relevance

12345678910>>...19

/dports/cad/ldview/ldview-4.4/TestModels/Primitives/
H A DCyls.dat4 1 1 0 0 0 1 0 0 0 1 0 0 0 1 4-4cyls.dat
6 1 4 0 0 0 1 0 0 0 1 0 0 0 1 4-4cyls.dat
9 1 1 0 2 0 1 0 0 0 1 0 0 0 1 2-4cyls.dat
11 1 4 0 2 0 1 0 0 0 1 0 0 0 1 2-4cyls.dat
14 1 1 0 4 0 1 0 0 0 1 0 0 0 1 3-8cyls.dat
16 1 4 0 4 0 1 0 0 0 1 0 0 0 1 3-8cyls.dat
19 1 1 0 5 0 1 0 0 0 1 0 0 0 1 1-4cyls.dat
21 1 4 0 5 0 1 0 0 0 1 0 0 0 1 1-4cyls.dat
24 1 1 0 6 0 1 0 0 0 1 0 0 0 1 1-8cyls.dat
26 1 4 0 6 0 1 0 0 0 1 0 0 0 1 1-8cyls.dat
/dports/emulators/fs-uae-launcher/fs-uae-launcher-3.0.5/amitools/fs/blkdev/
H A DDiskGeometry.py4 def __init__(self, cyls=0, heads=0, secs=0): argument
5 self.cyls = cyls
15 return self.cyls * self.heads * self.secs
36 self.cyls = c
59 self.cyls = c
113 cyls = (size / block_bytes) / (secs * heads)
114 geo_size = cyls * secs * heads * block_bytes
117 self.cyls = cyls
129 cyls = (size / block_bytes) / (secs * heads)
131 geo_size = cyls * secs * heads * block_bytes
[all …]
H A DBlockDevice.py8 def _set_geometry(self, cyls=80, heads=2, sectors=11, block_bytes=512, reserved=2, bootblocks=2): argument
9 self.cyls = cyls
16 self.num_tracks = self.cyls * self.heads
23 print("cylinders: ", self.cyls)
47 return DiskGeometry(self.cyls, self.heads, self.sectors)
49 return "chs=%d,%d,%d" % (self.cyls, self.heads, self.sectors)
51 return { 'chs' : "%d,%d,%d" % (self.cyls, self.heads, self.sectors) }
/dports/emulators/qemu-powernv/qemu-powernv-3.0.50/hw/block/
H A Dblock.c98 if (!conf->cyls && !conf->heads && !conf->secs) { in blkconf_geometry()
100 &conf->cyls, &conf->heads, &conf->secs, in blkconf_geometry()
103 *ptrans = hd_bios_chs_auto_trans(conf->cyls, conf->heads, conf->secs); in blkconf_geometry()
105 if (conf->cyls || conf->heads || conf->secs) { in blkconf_geometry()
106 if (conf->cyls < 1 || conf->cyls > cyls_max) { in blkconf_geometry()
/dports/emulators/hercules/hercules-3.13/
H A Ddasdcopy.c56 int cyls=-1, blks=-1; /* Size of output file */ in main() local
137 || strcmp(argv[0], "-cyls") == 0) && cyls < 0) in main()
139 if (argc < 2 || (cyls = atoi(argv[1])) < 0) in main()
253 if (cyls >= 0 && !(in & CKDMASK)) return syntax(pgm); in main()
276 if (cyls < 0) cyls = idev->ckdcyls; in main()
277 else if (cyls == 0) cyls = (idev->hnd->used)(idev); in main()
278 ckd = dasd_lookup (DASD_CKDDEV, NULL, idev->devtype, cyls); in main()
283 pgm, idev->devtype, cyls); in main()
288 if (cyls <= ckd->cyls && alt) cyls = ckd->cyls + ckd->altcyls; in main()
289 n = cyls * idev->ckdheads; in main()
[all …]
H A Ddasdconv.c260 U32 cyls; /* Device size (pri+alt cyls)*/ in open_input_image() local
338 case 0x01: dt=0x3330; cyls=411; alts=7; break; /* 3330 */ in open_input_image()
339 case 0x02: dt=0x3330; cyls=815; alts=7; break; /* 3330-11 */ in open_input_image()
340 case 0x03: dt=0x3340; cyls=351; alts=1; break; /* 3340-35 */ in open_input_image()
341 case 0x04: dt=0x3340; cyls=701; alts=1; break; /* 3340-70 */ in open_input_image()
342 case 0x05: dt=0x3350; cyls=562; alts=7; break; /* 3350 */ in open_input_image()
343 case 0x06: dt=0x3375; cyls=962; alts=3; break; /* 3375 */ in open_input_image()
344 case 0x08: dt=0x3380; cyls=888; alts=3; break; /* 3380-A,D,J*/ in open_input_image()
345 case 0x09: dt=0x3380; cyls=1774; alts=4; break; /* 3380-E */ in open_input_image()
346 case 0x0A: dt=0x3380; cyls=2660; alts=5; break; /* 3380-K */ in open_input_image()
[all …]
H A Ddasdtab.c252 && (U32)size <= (U32)(ckdtab[i].cyls + ckdtab[i].altcyls))) in dasd_lookup()
345 int cyls) in dasd_build_ckd_devchar() argument
349 if (cyls > ckd->cyls) altcyls = cyls - ckd->cyls; in dasd_build_ckd_devchar()
363 store_hw(devchar+12, cyls - altcyls); // Primary cylinders in dasd_build_ckd_devchar()
386 store_hw(devchar+28, cyls - altcyls); // Alternate cylinder & tracks in dasd_build_ckd_devchar()
/dports/emulators/qemu42/qemu-4.2.1/hw/block/
H A Dblock.c144 if (!conf->cyls && !conf->heads && !conf->secs) { in blkconf_geometry()
146 &conf->cyls, &conf->heads, &conf->secs, in blkconf_geometry()
149 *ptrans = hd_bios_chs_auto_trans(conf->cyls, conf->heads, conf->secs); in blkconf_geometry()
151 if (conf->cyls || conf->heads || conf->secs) { in blkconf_geometry()
152 if (conf->cyls < 1 || conf->cyls > cyls_max) { in blkconf_geometry()
/dports/emulators/qemu-utils/qemu-4.2.1/hw/block/
H A Dblock.c144 if (!conf->cyls && !conf->heads && !conf->secs) { in blkconf_geometry()
146 &conf->cyls, &conf->heads, &conf->secs, in blkconf_geometry()
149 *ptrans = hd_bios_chs_auto_trans(conf->cyls, conf->heads, conf->secs); in blkconf_geometry()
151 if (conf->cyls || conf->heads || conf->secs) { in blkconf_geometry()
152 if (conf->cyls < 1 || conf->cyls > cyls_max) { in blkconf_geometry()
/dports/emulators/qemu-cheri/qemu-0a323821042c36e21ea80e58b9545dfc3b0cb8ef/hw/block/
H A Dblock.c144 if (!conf->cyls && !conf->heads && !conf->secs) { in blkconf_geometry()
146 &conf->cyls, &conf->heads, &conf->secs, in blkconf_geometry()
149 *ptrans = hd_bios_chs_auto_trans(conf->cyls, conf->heads, conf->secs); in blkconf_geometry()
151 if (conf->cyls || conf->heads || conf->secs) { in blkconf_geometry()
152 if (conf->cyls < 1 || conf->cyls > cyls_max) { in blkconf_geometry()
/dports/emulators/qemu-guest-agent/qemu-5.0.1/hw/block/
H A Dblock.c144 if (!conf->cyls && !conf->heads && !conf->secs) { in blkconf_geometry()
146 &conf->cyls, &conf->heads, &conf->secs, in blkconf_geometry()
149 *ptrans = hd_bios_chs_auto_trans(conf->cyls, conf->heads, conf->secs); in blkconf_geometry()
151 if (conf->cyls || conf->heads || conf->secs) { in blkconf_geometry()
152 if (conf->cyls < 1 || conf->cyls > cyls_max) { in blkconf_geometry()
/dports/emulators/qemu60/qemu-6.0.0/hw/block/
H A Dblock.c182 if (!conf->cyls && !conf->heads && !conf->secs) { in blkconf_geometry()
184 &conf->cyls, &conf->heads, &conf->secs, in blkconf_geometry()
187 *ptrans = hd_bios_chs_auto_trans(conf->cyls, conf->heads, conf->secs); in blkconf_geometry()
189 if (conf->cyls || conf->heads || conf->secs) { in blkconf_geometry()
190 if (conf->cyls < 1 || conf->cyls > cyls_max) { in blkconf_geometry()
/dports/emulators/qemu5/qemu-5.2.0/hw/block/
H A Dblock.c182 if (!conf->cyls && !conf->heads && !conf->secs) { in blkconf_geometry()
184 &conf->cyls, &conf->heads, &conf->secs, in blkconf_geometry()
187 *ptrans = hd_bios_chs_auto_trans(conf->cyls, conf->heads, conf->secs); in blkconf_geometry()
189 if (conf->cyls || conf->heads || conf->secs) { in blkconf_geometry()
190 if (conf->cyls < 1 || conf->cyls > cyls_max) { in blkconf_geometry()
/dports/emulators/fs-uae-launcher/fs-uae-launcher-3.0.5/amitools/fs/block/rdb/
H A DRDBlock.py7 def __init__(self, cyls=0, heads=0, secs=0, argument
10 parking_zone = cyls
12 write_pre_comp = cyls
14 reduced_write = cyls
16 self.cyls = cyls
27 print(" cyls: %d" % self.cyls)
37 self.cyls = blk._get_long(16)
48 blk._put_long(16, self.cyls)
/dports/emulators/qemu/qemu-6.2.0/hw/block/
H A Dblock.c216 if (!conf->cyls && !conf->heads && !conf->secs) { in blkconf_geometry()
218 &conf->cyls, &conf->heads, &conf->secs, in blkconf_geometry()
221 *ptrans = hd_bios_chs_auto_trans(conf->cyls, conf->heads, conf->secs); in blkconf_geometry()
223 if (conf->cyls || conf->heads || conf->secs) { in blkconf_geometry()
224 if (conf->cyls < 1 || conf->cyls > cyls_max) { in blkconf_geometry()
/dports/emulators/qemu-devel/qemu-de8ed1055c2ce18c95f597eb10df360dcb534f99/hw/block/
H A Dblock.c216 if (!conf->cyls && !conf->heads && !conf->secs) { in blkconf_geometry()
218 &conf->cyls, &conf->heads, &conf->secs, in blkconf_geometry()
221 *ptrans = hd_bios_chs_auto_trans(conf->cyls, conf->heads, conf->secs); in blkconf_geometry()
223 if (conf->cyls || conf->heads || conf->secs) { in blkconf_geometry()
224 if (conf->cyls < 1 || conf->cyls > cyls_max) { in blkconf_geometry()
/dports/cad/netgen/netgen-6.2.2105/tutorials/
H A Dboxcyl.geo17 solid cyls = (cylinder (0.5, 0.75, 0; 0.5, 0.75, 2; 0.3)
24 solid main = box or cyls;
30 singular edge box cyls;
H A Dperiod.geo21 solid cyls =
24 solid matrix = cube and not cyls;
25 solid inner = cube and cyls;
/dports/cad/opencascade/opencascade-7.6.0/tests/boolean/removefeatures/
H A DC94 compound s_51 s_17 s_14 s_15 s_16 cyls
6 removefeatures result s cyls
10 CheckIsFeatureRemoved cyls {v e f}
H A DD14 …ound s_66 s_60 s_63 s_77 s_76 s_62 s_68 s_67 s_65 s_75 s_61 s_78 s_64 s_73 s_79 s_81 s_80 s_74 cyls
6 removefeatures result s cyls
10 CheckIsFeatureRemoved cyls {v e f}
/dports/emulators/qemu-powernv/qemu-powernv-3.0.50/include/hw/block/
H A Dblock.h28 uint32_t cyls, heads, secs; member
63 DEFINE_PROP_UINT32("cyls", _state, _conf.cyls, 0), \
87 int hd_bios_chs_auto_trans(uint32_t cyls, uint32_t heads, uint32_t secs);
/dports/cad/ldview/ldview-4.4/TestModels/BFC/
H A DCyls.dat4 1 1 0 0 0 1 0 0 0 1 0 0 0 1 4-4cyls.dat
7 1 4 0 0 0 1 0 0 0 1 0 0 0 1 4-4cyls.dat
/dports/emulators/qemu60/qemu-6.0.0/block/
H A Dvpc.c82 uint16_t cyls; member
302 be16_to_cpu(footer->cyls) * footer->heads * footer->secs_per_cyl; in vpc_open()
782 static int calculate_geometry(int64_t total_sectors, uint16_t *cyls, in calculate_geometry() argument
815 *cyls = cyls_times_heads / *heads; in calculate_geometry()
919 uint16_t cyls = 0; in calculate_rounded_image_size() local
936 cyls = VHD_CHS_MAX_C; in calculate_rounded_image_size()
946 if ((int64_t)cyls * heads * secs_per_cyl == VHD_MAX_GEOMETRY) { in calculate_rounded_image_size()
954 total_sectors = (int64_t) cyls * heads * secs_per_cyl; in calculate_rounded_image_size()
959 *out_cyls = cyls; in calculate_rounded_image_size()
975 uint16_t cyls = 0; in vpc_co_create() local
[all …]
/dports/emulators/qemu-devel/qemu-de8ed1055c2ce18c95f597eb10df360dcb534f99/block/
H A Dvpc.c82 uint16_t cyls; member
302 be16_to_cpu(footer->cyls) * footer->heads * footer->secs_per_cyl; in vpc_open()
782 static int calculate_geometry(int64_t total_sectors, uint16_t *cyls, in calculate_geometry() argument
815 *cyls = cyls_times_heads / *heads; in calculate_geometry()
919 uint16_t cyls = 0; in calculate_rounded_image_size() local
936 cyls = VHD_CHS_MAX_C; in calculate_rounded_image_size()
946 if ((int64_t)cyls * heads * secs_per_cyl == VHD_MAX_GEOMETRY) { in calculate_rounded_image_size()
954 total_sectors = (int64_t) cyls * heads * secs_per_cyl; in calculate_rounded_image_size()
959 *out_cyls = cyls; in calculate_rounded_image_size()
975 uint16_t cyls = 0; in vpc_co_create() local
[all …]
/dports/emulators/qemu42/qemu-4.2.1/block/
H A Dvpc.c84 uint16_t cyls; member
300 be16_to_cpu(footer->cyls) * footer->heads * footer->secs_per_cyl; in vpc_open()
788 static int calculate_geometry(int64_t total_sectors, uint16_t* cyls, in calculate_geometry() argument
821 *cyls = cyls_times_heads / *heads; in calculate_geometry()
923 uint16_t cyls = 0; in calculate_rounded_image_size() local
940 cyls = VHD_CHS_MAX_C; in calculate_rounded_image_size()
950 if ((int64_t)cyls * heads * secs_per_cyl == VHD_MAX_GEOMETRY) { in calculate_rounded_image_size()
958 total_sectors = (int64_t) cyls * heads * secs_per_cyl; in calculate_rounded_image_size()
963 *out_cyls = cyls; in calculate_rounded_image_size()
980 uint16_t cyls = 0; in vpc_co_create() local
[all …]

12345678910>>...19