Home
last modified time | relevance | path

Searched refs:cables (Results 1 – 25 of 1441) sorted by relevance

12345678910>>...58

/dports/sysutils/nut/nut-2.7.4/docs/
H A DMakefile.am26 CABLES_DEPS = cables/apc-rs500-serial.txt \
27 cables/apc.txt cables/ge-imv-victron.txt cables/imv.txt \
28 cables/mgeups.txt cables/powerware.txt cables/repotec.txt \
29 cables/sms.txt
31 CABLES_IMAGES = images/cables/73-0724.png images/cables/940-0024C.jpg \
32 images/cables/belkin-f6cx-rkm-xu-cable.jpg images/cables/Lansafecable.jpg \
33 images/cables/mac-940-0024C.png images/cables/mge-66049.png \
34 images/cables/mge-db9-rj12.jpg images/cables/mge-db9-rj45.jpg \
35 images/cables/mge-usb-rj45.jpg \
36 images/cables/SOLA-330.png
[all …]
H A DMakefile.in404 CABLES_DEPS = cables/apc-rs500-serial.txt \
405 cables/apc.txt cables/ge-imv-victron.txt cables/imv.txt \
406 cables/mgeups.txt cables/powerware.txt cables/repotec.txt \
407 cables/sms.txt
409 CABLES_IMAGES = images/cables/73-0724.png images/cables/940-0024C.jpg \
410 images/cables/belkin-f6cx-rkm-xu-cable.jpg images/cables/Lansafecable.jpg \
411 images/cables/mac-940-0024C.png images/cables/mge-66049.png \
412 images/cables/mge-db9-rj12.jpg images/cables/mge-db9-rj45.jpg \
413 images/cables/mge-usb-rj45.jpg \
414 images/cables/SOLA-330.png
[all …]
/dports/games/knetwalk/knetwalk-21.12.3/src/
H A Dabstractgrid.cpp177 Directions dir = cell->cables(); in initializeGrid()
379 Directions dirs = cell->cables(); in solutionCount()
452 Directions cables = cell->cables(); in movesDoneArePossible() local
464 if (cables & Left) { in movesDoneArePossible()
473 if (cables & Right) { in movesDoneArePossible()
479 if (cables & Up) { in movesDoneArePossible()
485 if (cables & Down) { in movesDoneArePossible()
504 Directions oldCables = cell->cables(); in hasUnneededCables()
567 if ((cell->cables() & Up) && ucell != 0 && in updateConnections()
577 if ((cell->cables() & Down) && dcell != 0 && in updateConnections()
[all …]
H A Dgameview.cpp68 QString code = getCableCode(grid->cellAt(i)->cables()); in startNewGame()
142 QString code = getCableCode(grid->cellAt(index)->cables()); in updateSprite()
158 if (grid->cellAt(i)->cables() != None && !grid->cellAt(i)->isConnected()) { in checkCompleted()
178 QString code = QLatin1String("con") + getCableCode(grid->cellAt(i)->cables()); in solve()
195 QString GameView::getCableCode(int cables) in getCableCode() argument
212 return directionNames[cables]; in getCableCode()
/dports/games/xlennart/xlennart-1.1.1/
H A DNetwork.c18 static Cable **cables; variable
35 if (cables != NULL) { in Network_setup()
37 if (cables[i] != NULL) in Network_setup()
38 free(cables[i]); in Network_setup()
39 free(cables); in Network_setup()
51 cables = xalloc(ncables * sizeof(Cable *)); in Network_setup()
53 Cable_setup(&cables[i]); in Network_setup()
61 Cable_draw(cables[i]); in Network_draw()
70 Cable_update(cables[i]); in Network_update()
95 return cables[index]; in Network_get_cable()
/dports/games/xbill/xbill-2.1/
H A DNetwork.c18 static Cable **cables; variable
35 if (cables != NULL) { in Network_setup()
37 if (cables[i] != NULL) in Network_setup()
38 free(cables[i]); in Network_setup()
39 free(cables); in Network_setup()
51 cables = xalloc(ncables * sizeof(Cable *)); in Network_setup()
53 Cable_setup(&cables[i]); in Network_setup()
61 Cable_draw(cables[i]); in Network_draw()
70 Cable_update(cables[i]); in Network_update()
95 return cables[index]; in Network_get_cable()
/dports/sysutils/nut-devel/nut-9e6a5ab2/docs/
H A DMakefile.am35 cables/apc.txt cables/ge-imv-victron.txt cables/imv.txt \
36 cables/mgeups.txt cables/powerware.txt cables/repotec.txt \
37 cables/sms.txt
39 CABLES_IMAGES = images/cables/73-0724.png images/cables/940-0024C.jpg \
40 images/cables/belkin-f6cx-rkm-xu-cable.jpg images/cables/Lansafecable.jpg \
41 images/cables/mac-940-0024C.png images/cables/mge-66049.png \
42 images/cables/mge-db9-rj12.jpg images/cables/mge-db9-rj45.jpg \
60 cables.html \
67 cables.chunked \
74 cables.pdf \
[all …]
/dports/emulators/dps8m/dps8m-572f79bb4f0f84a8b16c3892c894c2b9ed64b458/src/dps8/
H A Ddps8_cable.c136 struct cables_s * cables = NULL; variable
1028 & cables->tape_to_mtp[mt_unit_idx], in cable_mtp()
1082 & cables->dsk_to_ctlr[dsk_unit_idx], in cable_ipc()
1190 & cables->rdr_to_urp[unit_idx], in cable_urp()
1210 & cables->pun_to_urp[unit_idx], in cable_urp()
1230 & cables->prt_to_urp[unit_idx], in cable_urp()
1294 memset (cables, 0, sizeof (struct cables_s)); in cable_init()
1456 if (! cables) in sysCableInit()
1459 cables = (struct cables_s *) create_shm ("cables", in sysCableInit()
1464 if (cables == NULL) in sysCableInit()
[all …]
H A Ddps8_cable.h253 extern struct cables_s * cables;
262 (cables->iom_to_ctlr[iom_unit_idx][chan].ctlr_unit_idx)
267 (cables->iom_to_ctlr[iom_unit_idx][chan].in_use)
272 (cables->cpu_to_scu[cpu_unit_idx][cpu_port_num].scu_unit_idx)
277 (cables->cpu_to_scu[cpu_unit_idx][cpu_port_num].in_use)
H A Ddps8_disk.c443 uint ctlr_unit_idx = cables->dsk_to_ctlr[dsk_unit_idx].ctlr_unit_idx; in signal_disk_ready()
461 if (cables->msp_to_iom[ctlr_unit_idx][ctlr_port_num].in_use) in signal_disk_ready()
473 if (cables->ipc_to_iom[ctlr_unit_idx][ctlr_port_num].in_use) in signal_disk_ready()
494 if (cables->msp_to_iom[ctlr_unit_idx][ctlr_port_num].in_use) { in signal_disk_ready()
497 uint dev_code = cables->dsk_to_ctlr[dsk_unit_idx].dev_code; in signal_disk_ready()
503 if (cables->ipc_to_iom[ctlr_unit_idx][ctlr_port_num].in_use) { in signal_disk_ready()
506 uint dev_code = cables->dsk_to_ctlr[dsk_unit_idx].dev_code; in signal_disk_ready()
1122 if (cables->iom_to_ctlr[iom_unit_idx][chan].ctlr_type == CTLR_T_IPC) in read_configuration()
1123 dev_p = cables->ipc_to_dsk[ctlr_unit_idx]; in read_configuration()
1125 dev_p = cables->msp_to_dsk[ctlr_unit_idx]; in read_configuration()
[all …]
/dports/net-mgmt/netdot/Netdot-netdot-1.0.7/htdocs/cable_plant/
H A Dcable_plant_horizontal.mhtml18 my (@closets, @cables);
26 map { push(@cables, $_) } $closet->horizontalcables;
28 print "cables is <pre>", Dumper(@cables), "</pre><br>" if $DEBUG;
33 % if (scalar(@cables) > $MAX_SELECTION) {
60 <% scalar(@cables) %> row(s) returned.
62 % if (scalar(@cables) && scalar(@cables) <= $MAX_SELECTION) {
70 @sorted_cables = sort { $a->$cable_sort cmp $b->$cable_sort } @cables;
72 @sorted_cables = sort { $a->type->name cmp $b->type->name } @cables;
74 @sorted_cables = sort { $a->closet->name cmp $b->closet->name } @cables;
H A Dcable_plant_backbone.mhtml24 my @cables = ();
29 @cables = BackboneCable->search_like(name=>$backbone_srch);
39 map { push (@cables, $_) } (BackboneCable->search(start_closet=>$c_id),
48 @cables = BackboneCable->search_by_site(site1=>$start_id, site2=>$end_id);
57 @cables = BackboneCable->search_by_site(site1=>$start_id);
65 % if (scalar(@cables) > $MAX_SELECTION) {
93 <% scalar(@cables) %> row(s) returned.
95 % if (scalar(@cables) && scalar(@cables) <= $MAX_SELECTION) {
101 @sorted_cables = sort { $a->$cable_sort cmp $b->$cable_sort } @cables;
103 @sorted_cables = sort { $a->type->name cmp $b->type->name } @cables;
[all …]
/dports/science/simbody/simbody-Simbody-3.7/Simbody/src/
H A DCablePath_Impl.h385 Impl() : referenceCount(0), cables(0) {} in Impl()
386 Impl(CableTrackerSubsystem& cables) in Impl() argument
387 : referenceCount(0), cables(&cables) {} in Impl()
477 { return cables->getZ(state)[integratedLengthDotIx]; } in getIntegratedLengthDot()
480 { cables->updZ(state)[integratedLengthDotIx] = value; } in setIntegratedLengthDot()
485 (cables->getDiscreteVariable(state, posEntryIx)); } in getPrevPosEntry()
488 (cables->updDiscreteVariable(state, posEntryIx)); } in updPrevPosEntry()
492 (cables->getDiscreteVariable(state, velEntryIx)); } in getPrevVelEntry()
495 (cables->updDiscreteVariable(state, velEntryIx)); } in updPrevVelEntry()
521 { if (cables) cables->invalidateSubsystemTopologyCache(); } in invalidateTopology()
[all …]
/dports/net-mgmt/netdisco-mibs/netdisco-mibs-4.010/extreme/
H A Dextreme-cable.mib222 "Specifies whether pairA pairB cables are swapped"
238 "Specifies the polarity of pairA cables"
246 "Specifies the distance of Fault in the pairA cables"
254 "Specifies the length of the pairA cables"
279 "Specifies the polarity of pairB cables"
287 "Specifies the distance of Fault in the pairB cables"
295 "Specifies the length of the pairB cables"
320 "Specifies the polarity of pairC cables"
336 "Specifies the length of the pairC cables"
361 "Specifies the polarity of pairD cables"
[all …]
/dports/net-mgmt/observium/observium/mibs/extreme/
H A DEXTREME-CABLE-MIB209 "Specifies whether pairA pairB cables are swapped"
225 "Specifies the polarity of pairA cables"
233 "Specifies the distance of Fault in the pairA cables"
241 "Specifies the length of the pairA cables"
266 "Specifies the polarity of pairB cables"
274 "Specifies the distance of Fault in the pairB cables"
282 "Specifies the length of the pairB cables"
307 "Specifies the polarity of pairC cables"
323 "Specifies the length of the pairC cables"
348 "Specifies the polarity of pairD cables"
[all …]
/dports/comms/tilp2/tilp2-1.18/src/
H A Dtilp_device.c66 int **cables = NULL; in tilp_device_probe_usb() local
71 err = ticables_probing_do(&cables, 5, PROBE_USB | PROBE_FIRST); in tilp_device_probe_usb()
74 ticables_probing_finish(&cables); in tilp_device_probe_usb()
79 *port = found_port(cables[CABLE_USB]); in tilp_device_probe_usb()
111 *port = found_port(cables[CABLE_SLV]); in tilp_device_probe_usb()
141 ticables_probing_finish(&cables); in tilp_device_probe_usb()
/dports/science/chrono/chrono-7.0.1/doxygen/documentation/tutorials/fea/
H A Ddemo_FEA_cables.md1 Introduction to FEA cables (demo_FEA_cables.cpp) {#tutorial_demo_FEA_cables}
7 to create basic FEA cables, that fall and swing under the effect of gravity.
8 Some rigid bodies (boxes) are connected to the cables.
/dports/multimedia/libv4l/linux-5.13-rc2/Documentation/ABI/testing/
H A Dsysfs-class-extcon11 port. An external connector may have multiple cables
13 accessory cables have such capability. For example,
16 video, and USB cables attached simultaneously.
18 If there are cables mutually exclusive with each other,
52 cables attached and HDMI and EAR_JACK cables detached.
/dports/multimedia/v4l-utils/linux-5.13-rc2/Documentation/ABI/testing/
H A Dsysfs-class-extcon11 port. An external connector may have multiple cables
13 accessory cables have such capability. For example,
16 video, and USB cables attached simultaneously.
18 If there are cables mutually exclusive with each other,
52 cables attached and HDMI and EAR_JACK cables detached.
/dports/multimedia/v4l_compat/linux-5.13-rc2/Documentation/ABI/testing/
H A Dsysfs-class-extcon11 port. An external connector may have multiple cables
13 accessory cables have such capability. For example,
16 video, and USB cables attached simultaneously.
18 If there are cables mutually exclusive with each other,
52 cables attached and HDMI and EAR_JACK cables detached.
/dports/sysutils/ansible/ansible-4.7.0/ansible_collections/netbox/netbox/plugins/module_utils/
H A Dnetbox_dcim.py142 cables = [
150 if len(cables) == 0:
152 elif len(cables) == 1:
153 self.nb_object = cables[0]
/dports/multimedia/v4l_compat/linux-5.13-rc2/drivers/net/plip/
H A DKconfig20 with "null printer" or "Turbo Laplink" cables which can transmit 4
21 bits at a time (mode 0) or with special PLIP cables, to be used on
23 time (mode 1); you can find the wiring of these cables in
24 <file:Documentation/networking/plip.rst>. The cables can be up to
/dports/multimedia/v4l-utils/linux-5.13-rc2/drivers/net/plip/
H A DKconfig20 with "null printer" or "Turbo Laplink" cables which can transmit 4
21 bits at a time (mode 0) or with special PLIP cables, to be used on
23 time (mode 1); you can find the wiring of these cables in
24 <file:Documentation/networking/plip.rst>. The cables can be up to
/dports/multimedia/libv4l/linux-5.13-rc2/drivers/net/plip/
H A DKconfig20 with "null printer" or "Turbo Laplink" cables which can transmit 4
21 bits at a time (mode 0) or with special PLIP cables, to be used on
23 time (mode 1); you can find the wiring of these cables in
24 <file:Documentation/networking/plip.rst>. The cables can be up to
/dports/devel/papilio-loader/Papilio-Loader-dd111c4/xc3sprog/trunk/
H A Dcablelist.cmk3 configure_file(${CABLELIST_DIR}/cables.h.in cables.h)

12345678910>>...58