Home
last modified time | relevance | path

Searched refs:port_value (Results 1 – 25 of 334) sorted by relevance

12345678910>>...14

/dports/emulators/mess/mame-mame0226/src/mame/machine/
H A Dcarpolo.cpp207 uint8_t port_value = m_in[0]->read(); in timer_tick() local
229 port_value = m_dial[player]->read(); in timer_tick()
247 port_value = m_pedals->read(); in timer_tick()
251 m_ttl74153_1k->i0a_w(BIT(port_value, 0) | BIT(port_value, 1)); in timer_tick()
252 m_ttl74153_1k->i1a_w(BIT(port_value, 2) | BIT(port_value, 3)); in timer_tick()
253 m_ttl74153_1k->i2a_w(BIT(port_value, 4) | BIT(port_value, 5)); in timer_tick()
254 m_ttl74153_1k->i3a_w(BIT(port_value, 6) | BIT(port_value, 7)); in timer_tick()
255 m_ttl74153_1k->i0b_w(BIT(port_value, 1)); in timer_tick()
256 m_ttl74153_1k->i1b_w(BIT(port_value, 3)); in timer_tick()
257 m_ttl74153_1k->i2b_w(BIT(port_value, 5)); in timer_tick()
[all …]
/dports/emulators/mame/mame-mame0226/src/mame/machine/
H A Dcarpolo.cpp207 uint8_t port_value = m_in[0]->read(); in timer_tick() local
229 port_value = m_dial[player]->read(); in timer_tick()
247 port_value = m_pedals->read(); in timer_tick()
251 m_ttl74153_1k->i0a_w(BIT(port_value, 0) | BIT(port_value, 1)); in timer_tick()
252 m_ttl74153_1k->i1a_w(BIT(port_value, 2) | BIT(port_value, 3)); in timer_tick()
253 m_ttl74153_1k->i2a_w(BIT(port_value, 4) | BIT(port_value, 5)); in timer_tick()
254 m_ttl74153_1k->i3a_w(BIT(port_value, 6) | BIT(port_value, 7)); in timer_tick()
255 m_ttl74153_1k->i0b_w(BIT(port_value, 1)); in timer_tick()
256 m_ttl74153_1k->i1b_w(BIT(port_value, 3)); in timer_tick()
257 m_ttl74153_1k->i2b_w(BIT(port_value, 5)); in timer_tick()
[all …]
/dports/audio/gsequencer/gsequencer-3.10.4/ags/audio/
H A Dags_port.c457 port->port_value.ags_port_double = 0.0; in ags_port_init()
1132 new_value = port->port_value.ags_port_float; in ags_port_real_safe_read()
1141 port->port_value.ags_port_double, in ags_port_real_safe_read()
1144 new_value = port->port_value.ags_port_double; in ags_port_real_safe_read()
1152 data = port->port_value.ags_port_pointer; in ags_port_real_safe_read()
1154 data = port->port_value.ags_port_object; in ags_port_real_safe_read()
1167 data = port->port_value.ags_port_object; in ags_port_real_safe_read()
1268 data = port->port_value.ags_port_pointer; in ags_port_safe_read_raw()
1270 data = port->port_value.ags_port_object; in ags_port_safe_read_raw()
1390 port->port_value.ags_port_object = data; in ags_port_real_safe_write()
[all …]
/dports/devel/android-tools-fastboot/platform_system_core-platform-tools-29.0.5/adb/
H A Dsocket_spec.cpp83 int port_value; in parse_tcp_socket_spec() local
90 if (port_value < 0 || port_value > 65535) { in parse_tcp_socket_spec()
96 port_value = DEFAULT_ADB_LOCAL_TRANSPORT_PORT; in parse_tcp_socket_spec()
104 if (port_value == -1) { in parse_tcp_socket_spec()
116 *port = port_value; in parse_tcp_socket_spec()
157 int port_value = port ? *port : 0; in socket_spec_connect() local
177 *port = port_value; in socket_spec_connect()
186 unsigned int port_value = port ? *port : 0; in socket_spec_connect() local
206 if (port_value == 0) { in socket_spec_connect()
218 addr.svm_port = port_value; in socket_spec_connect()
[all …]
/dports/graphics/sane-backends/sane-backends-1.0.32/backend/
H A Dplustek-pp_scan.h109 #define _OUTB_CTRL(pSD,port_value) _OPF(port_value,pSD->IO.pbControlPort) argument
110 #define _OUTB_DATA(pSD,port_value) _OPF(port_value,pSD->IO.pbSppDataPort) argument
111 #define _OUTB_ECTL(pSD,port_value) _OPF(port_value,(pSD->IO.portBase+0x402)) argument
121 #define _OUTB_CTRL(pSD,port_value) sanei_pp_outb_ctrl(pSD->pardev, port_value) argument
122 #define _OUTB_DATA(pSD,port_value) sanei_pp_outb_data(pSD->pardev, port_value) argument
123 #define _OUTB_ECTL(pSD,port_value) argument
/dports/games/libretro-mame2003/mame2003-libretro-4358db4/src/machine/
H A Dcarpolo_machine.c230 data8_t port_value; in INTERRUPT_GEN() local
242 port_value = readinputport(0); in INTERRUPT_GEN()
244 TTL7474_clock_w(TTL7474_2S_1, port_value & 0x01); in INTERRUPT_GEN()
245 TTL7474_clock_w(TTL7474_2S_2, port_value & 0x02); in INTERRUPT_GEN()
262 port_value = readinputport(2 + player); in INTERRUPT_GEN()
264 if (port_value != last_wheel_value[player]) in INTERRUPT_GEN()
269 last_wheel_value[player] = port_value; in INTERRUPT_GEN()
283 port_value = readinputport(6); in INTERRUPT_GEN()
289 if (port_value & 0x01) in INTERRUPT_GEN()
294 else if (port_value & 0x02) in INTERRUPT_GEN()
[all …]
/dports/games/libretro-mame2003_plus/mame2003-plus-libretro-17e9889/src/machine/
H A Dcarpolo_machine.c230 data8_t port_value; in INTERRUPT_GEN() local
242 port_value = readinputport(0); in INTERRUPT_GEN()
244 TTL7474_clock_w(TTL7474_2S_1, port_value & 0x01); in INTERRUPT_GEN()
245 TTL7474_clock_w(TTL7474_2S_2, port_value & 0x02); in INTERRUPT_GEN()
262 port_value = readinputport(2 + player); in INTERRUPT_GEN()
264 if (port_value != last_wheel_value[player]) in INTERRUPT_GEN()
269 last_wheel_value[player] = port_value; in INTERRUPT_GEN()
283 port_value = readinputport(6); in INTERRUPT_GEN()
289 if (port_value & 0x01) in INTERRUPT_GEN()
294 else if (port_value & 0x02) in INTERRUPT_GEN()
[all …]
/dports/devel/android-tools-adb/platform_system_core-android-9.0.0_r3/adb/
H A Dsocket_spec.cpp75 int port_value; in parse_tcp_socket_spec() local
79 if (android::base::ParseInt(&spec[4], &port_value)) { in parse_tcp_socket_spec()
82 if (port_value < 0 || port_value > 65535) { in parse_tcp_socket_spec()
83 *error = StringPrintf("bad port number '%d'", port_value); in parse_tcp_socket_spec()
88 port_value = -1; in parse_tcp_socket_spec()
92 if (!android::base::ParseNetAddress(addr, &hostname_value, &port_value, nullptr, error)) { in parse_tcp_socket_spec()
96 if (port_value == -1) { in parse_tcp_socket_spec()
107 *port = port_value; in parse_tcp_socket_spec()
/dports/lang/sdcc/sdcc-4.0.0/sim/ucsim/s51.src/
H A Dport.cc104 cfg->set(port_value, prev & cell_in->get()); in init()
119 uc->vars->add(v= new cl_var(pn+chars("value"), cfg, port_value, in init()
120 cfg_help(port_value))); in init()
143 case port_value: return (char*)"Value of the port (int, RO)"; in cfg_help()
176 if ((port_pins & nv) != cfg->get(port_value)) in write()
177 cfg->write(port_value, port_pins & nv); in write()
189 if ((port_pins & nv) != cfg->get(port_value)) in write()
190 cfg->write(port_value, port_pins & nv); in write()
229 case port_value: in conf_op()
252 if ((port_pins & ep.prev_value) != cfg->get(port_value)) in set_pin()
[all …]
/dports/sysutils/istio/istio-1.6.7/mixer/test/client/env/
H A Denvoy_conf.go33 port_value: {{.Ports.AdminPort}}
42 port_value: {{.Ports.BackendPort}}
49 port_value: {{.Ports.ServerProxyPort}}
57 port_value: {{.Ports.MixerPort}}
69 port_value: {{.Ports.ServerProxyPort}}
102 port_value: {{.Ports.ClientProxyPort}}
132 port_value: {{.Ports.TCPProxyPort}}
/dports/audio/gsequencer/gsequencer-3.10.4/ags/test/audio/
H A Dags_port_test.c78 port->port_value.ags_port_boolean = FALSE; in ags_port_test_safe_read()
91 port->port_value.ags_port_boolean = TRUE; in ags_port_test_safe_read()
111 port->port_value.ags_port_uint = 0; in ags_port_test_safe_read()
124 port->port_value.ags_port_uint = G_MAXUINT64; in ags_port_test_safe_read()
144 port->port_value.ags_port_double = 0.0; in ags_port_test_safe_read()
157 port->port_value.ags_port_double = 1.0; in ags_port_test_safe_read()
/dports/sysutils/istio/istio-1.6.7/mixer/test/client/tracing_header/
H A Dtracing_header_test.go30 port_value: {{.Ports.AdminPort}}
48 port_value: {{.Ports.BackendPort}}
56 port_value: {{.Ports.MixerPort}}
69 port_value: 9411
75 port_value: {{.Ports.ServerProxyPort}}
/dports/sysutils/istio/istio-1.6.7/security/pkg/nodeagent/test/testdata/
H A Dbootstrap.yaml6 port_value: {{.Ports.AdminPort}}
17 port_value: {{.Ports.BackendPort}}
25 port_value: {{.Ports.ServerProxyPort}}
61 port_value: {{.Ports.ClientProxyPort}}
84 port_value: {{.Ports.ServerProxyPort}}
/dports/net-mgmt/prometheus2/prometheus-2.30.3/vendor/github.com/envoyproxy/go-control-plane/examples/dyplomat/terraform/apps/
H A Denvoysidecar.yaml6 port_value: 8081
12 port_value: 8000
37 port_value: 8001
76 port_value: 8080
92 port_value: 8080
/dports/www/gohugo/hugo-0.91.2/vendor/github.com/envoyproxy/go-control-plane/examples/dyplomat/terraform/apps/
H A Denvoysidecar.yaml6 port_value: 8081
12 port_value: 8000
37 port_value: 8001
76 port_value: 8080
92 port_value: 8080
/dports/www/tusd/tusd-1.8.0/vendor/github.com/envoyproxy/go-control-plane/examples/dyplomat/terraform/apps/
H A Denvoysidecar.yaml6 port_value: 8081
12 port_value: 8000
37 port_value: 8001
76 port_value: 8080
92 port_value: 8080
/dports/net/grpcurl/grpcurl-1.8.5/vendor/github.com/envoyproxy/go-control-plane/examples/dyplomat/terraform/apps/
H A Denvoysidecar.yaml6 port_value: 8081
12 port_value: 8000
37 port_value: 8001
76 port_value: 8080
92 port_value: 8080
/dports/comms/uhd/uhd-90ce6062b6b5df2eddeee723777be85108e4e7c7/mpm/python/usrp_mpm/
H A Dethdispatch.py76 def set_vita_port(self, port_value=None, port_idx=None, bridge_en=False): argument
82 port_value = port_value or self.DEFAULT_VITA_PORT[port_idx]
89 self.poke32(port_reg_addr, port_value)
90 self.log.debug("Setting RFNOC UDP port to `{}'".format(port_value))
/dports/www/grafana8/grafana-8.3.6/vendor/github.com/cortexproject/cortex/docs/operations/
H A Drequests-mirroring-envoy.yaml5 socket_address: { address: 0.0.0.0, port_value: 9901 }
11 socket_address: { address: 0.0.0.0, port_value: 9900 }
43 hosts: [{ socket_address: { address: cortex-primary, port_value: 80 }}]
48 hosts: [{ socket_address: { address: cortex-secondary, port_value: 80 }}]
/dports/sysutils/istio/istio-1.6.7/mixer/test/client/dynamic_attribute/
H A Ddynamic_attribute_test.go42 port_value: {{.Ports.AdminPort}}
61 port_value: {{.Ports.DiscoveryPort}}
73 port_value: {{.Ports.MixerPort}}
79 port_value: {{.Ports.ServerProxyPort}}
111 port_value: {{.Ports.TCPProxyPort}}
/dports/audio/gsequencer/gsequencer-3.10.4/ags/audio/fx/
H A Dags_fx_analyse_channel.c206 fx_analyse_channel->frequency->port_value.ags_port_double_ptr = ags_stream_alloc(buffer_size, in ags_fx_analyse_channel_init()
215 …fx_analyse_channel->frequency->port_value.ags_port_double_ptr[i] = (double) i * (double) correctio… in ags_fx_analyse_channel_init()
230 fx_analyse_channel->magnitude->port_value.ags_port_double_ptr = ags_stream_alloc(buffer_size, in ags_fx_analyse_channel_init()
482 frequency->port_value.ags_port_double_ptr[i] = (double) i * (double) correction; in ags_fx_analyse_channel_notify_samplerate_callback()
538 ags_stream_free(frequency->port_value.ags_port_double_ptr); in ags_fx_analyse_channel_notify_buffer_size_callback()
541 frequency->port_value.ags_port_double_ptr = ags_stream_alloc(buffer_size, in ags_fx_analyse_channel_notify_buffer_size_callback()
544 frequency->port_value.ags_port_double_ptr = NULL; in ags_fx_analyse_channel_notify_buffer_size_callback()
548 frequency->port_value.ags_port_double_ptr[i] = (double) i * (double) correction; in ags_fx_analyse_channel_notify_buffer_size_callback()
564 ags_stream_free(fx_analyse_channel->magnitude->port_value.ags_port_double_ptr); in ags_fx_analyse_channel_notify_buffer_size_callback()
567 fx_analyse_channel->magnitude->port_value.ags_port_double_ptr = ags_stream_alloc(buffer_size, in ags_fx_analyse_channel_notify_buffer_size_callback()
[all …]
/dports/sysutils/gomplate/gomplate-3.9.0/vendor/github.com/hashicorp/consul/command/connect/envoy/testdata/
H A Dingress-gateway-without-register.golden7 "port_value": 19000
30 "port_value": 8502
44 "port_value": 19000
56 "port_value": 7777
H A Dingress-gateway-register-without-service-with-proxy-id.golden7 "port_value": 19000
30 "port_value": 8502
44 "port_value": 19000
56 "port_value": 7777
H A Dingress-gateway-address-specified.golden7 "port_value": 19000
30 "port_value": 8502
44 "port_value": 19000
56 "port_value": 7777
H A Dingress-gateway-no-auto-register.golden7 "port_value": 19000
30 "port_value": 8502
44 "port_value": 19000
56 "port_value": 7777

12345678910>>...14