Home
last modified time | relevance | path

Searched refs:ihp (Results 1 – 25 of 487) sorted by relevance

12345678910>>...20

/dports/science/elk/elk-7.2.42/src/
H A Dgetwfpw.f90108 do ihp=i,nhk(jspn,ik)
109 if (done(ihp)) cycle
115 done(ihp)=.true.
119 do ihp=i,nhk(jspn,ik)
120 if (.not.done(ihp)) then
121 i=ihp
141 do ihp=1,nhk(1,ik)
158 wfpw(ihp,1,:)=0.d0
164 do ihp=1,nhk(1,ik)
165 z1=wfpw(ihp,1,ist)
[all …]
H A Dgenwfpw.f9067 do ihp=1,nhp(jspn)
69 t1=abs(vhpc(1,ihp,jspn)-vgpc(1,igp,jspn)) &
70 +abs(vhpc(2,ihp,jspn)-vgpc(2,igp,jspn)) &
71 +abs(vhpc(3,ihp,jspn)-vgpc(3,igp,jspn))
75 wfpw(ihp,ispn,ist)=wfgp(igp,ispn,ist)
160 do ihp=1,nhp(jspn)
162 call genylmv(lmaxo,vhpc(:,ihp,jspn),ylm)
169 t1=hpc(ihp,jspn)*rcmt(irc,is)
176 z3=t0*conjg(sfachp(ihp,ias,jspn))
202 wfpw(ihp,ispn,ist)=wfpw(ihp,ispn,ist)+z3*zsm
/dports/multimedia/v4l_compat/linux-5.13-rc2/drivers/sh/intc/
H A Dchip.c133 struct intc_handle_int *ihp; in intc_set_priority() local
138 ihp = intc_find_irq(d->prio, d->nr_prio, irq); in intc_set_priority()
139 if (ihp) { in intc_set_priority()
140 if (prio >= (1 << _INTC_WIDTH(ihp->handle))) in intc_set_priority()
150 if (_INTC_FN(ihp->handle) != REG_FN_ERR) in intc_set_priority()
151 _intc_enable(data, ihp->handle); in intc_set_priority()
179 struct intc_handle_int *ihp; in intc_set_type() local
187 ihp = intc_find_irq(d->sense, d->nr_sense, irq); in intc_set_type()
188 if (ihp) { in intc_set_type()
190 if (value >= (1 << _INTC_WIDTH(ihp->handle))) in intc_set_type()
[all …]
/dports/multimedia/libv4l/linux-5.13-rc2/drivers/sh/intc/
H A Dchip.c133 struct intc_handle_int *ihp; in intc_set_priority() local
138 ihp = intc_find_irq(d->prio, d->nr_prio, irq); in intc_set_priority()
139 if (ihp) { in intc_set_priority()
140 if (prio >= (1 << _INTC_WIDTH(ihp->handle))) in intc_set_priority()
150 if (_INTC_FN(ihp->handle) != REG_FN_ERR) in intc_set_priority()
151 _intc_enable(data, ihp->handle); in intc_set_priority()
179 struct intc_handle_int *ihp; in intc_set_type() local
187 ihp = intc_find_irq(d->sense, d->nr_sense, irq); in intc_set_type()
188 if (ihp) { in intc_set_type()
190 if (value >= (1 << _INTC_WIDTH(ihp->handle))) in intc_set_type()
[all …]
/dports/multimedia/v4l-utils/linux-5.13-rc2/drivers/sh/intc/
H A Dchip.c133 struct intc_handle_int *ihp; in intc_set_priority() local
138 ihp = intc_find_irq(d->prio, d->nr_prio, irq); in intc_set_priority()
139 if (ihp) { in intc_set_priority()
140 if (prio >= (1 << _INTC_WIDTH(ihp->handle))) in intc_set_priority()
150 if (_INTC_FN(ihp->handle) != REG_FN_ERR) in intc_set_priority()
151 _intc_enable(data, ihp->handle); in intc_set_priority()
179 struct intc_handle_int *ihp; in intc_set_type() local
187 ihp = intc_find_irq(d->sense, d->nr_sense, irq); in intc_set_type()
188 if (ihp) { in intc_set_type()
190 if (value >= (1 << _INTC_WIDTH(ihp->handle))) in intc_set_type()
[all …]
/dports/misc/rump/buildrump.sh-b914579/src/sys/dev/pci/
H A Dpci_stub.c72 pci_intr_handle_t *ihp; in default_pci_intr_alloc() local
77 ihp = kmem_alloc(sizeof(*ihp), KM_SLEEP); in default_pci_intr_alloc()
78 if (ihp == NULL) in default_pci_intr_alloc()
81 if (pci_intr_map(pa, ihp)) { in default_pci_intr_alloc()
82 kmem_free(ihp, sizeof(*ihp)); in default_pci_intr_alloc()
86 ihps[0] = ihp; in default_pci_intr_alloc()
/dports/dns/bind-tools/bind-9.16.27/lib/isc/
H A Dhp.c149 isc_hp_clear_one(isc_hp_t *hp, int ihp) { in isc_hp_clear_one() argument
150 atomic_store_release(&hp->hp[tid()][ihp], 0); in isc_hp_clear_one()
154 isc_hp_protect(isc_hp_t *hp, int ihp, atomic_uintptr_t *atom) { in isc_hp_protect() argument
158 atomic_store(&hp->hp[tid()][ihp], ret); in isc_hp_protect()
165 isc_hp_protect_ptr(isc_hp_t *hp, int ihp, atomic_uintptr_t ptr) { in isc_hp_protect_ptr() argument
166 atomic_store(&hp->hp[tid()][ihp], atomic_load(&ptr)); in isc_hp_protect_ptr()
171 isc_hp_protect_release(isc_hp_t *hp, int ihp, atomic_uintptr_t ptr) { in isc_hp_protect_release() argument
172 atomic_store_release(&hp->hp[tid()][ihp], atomic_load(&ptr)); in isc_hp_protect_release()
190 for (int ihp = hp->max_hps - 1; ihp >= 0; ihp--) { in isc_hp_retire() local
191 if (atomic_load(&hp->hp[itid][ihp]) == obj) { in isc_hp_retire()
/dports/dns/bind916/bind-9.16.27/lib/isc/
H A Dhp.c149 isc_hp_clear_one(isc_hp_t *hp, int ihp) { in isc_hp_clear_one() argument
150 atomic_store_release(&hp->hp[tid()][ihp], 0); in isc_hp_clear_one()
154 isc_hp_protect(isc_hp_t *hp, int ihp, atomic_uintptr_t *atom) { in isc_hp_protect() argument
158 atomic_store(&hp->hp[tid()][ihp], ret); in isc_hp_protect()
165 isc_hp_protect_ptr(isc_hp_t *hp, int ihp, atomic_uintptr_t ptr) { in isc_hp_protect_ptr() argument
166 atomic_store(&hp->hp[tid()][ihp], atomic_load(&ptr)); in isc_hp_protect_ptr()
171 isc_hp_protect_release(isc_hp_t *hp, int ihp, atomic_uintptr_t ptr) { in isc_hp_protect_release() argument
172 atomic_store_release(&hp->hp[tid()][ihp], atomic_load(&ptr)); in isc_hp_protect_release()
190 for (int ihp = hp->max_hps - 1; ihp >= 0; ihp--) { in isc_hp_retire() local
191 if (atomic_load(&hp->hp[itid][ihp]) == obj) { in isc_hp_retire()
/dports/dns/samba-nsupdate/bind-9.16.5/lib/isc/
H A Dhp.c158 isc_hp_clear_one(isc_hp_t *hp, int ihp) { in isc_hp_clear_one() argument
159 atomic_store_release(&hp->hp[tid()][ihp], 0); in isc_hp_clear_one()
163 isc_hp_protect(isc_hp_t *hp, int ihp, atomic_uintptr_t *atom) { in isc_hp_protect() argument
167 atomic_store(&hp->hp[tid()][ihp], ret); in isc_hp_protect()
174 isc_hp_protect_ptr(isc_hp_t *hp, int ihp, atomic_uintptr_t ptr) { in isc_hp_protect_ptr() argument
175 atomic_store(&hp->hp[tid()][ihp], atomic_load(&ptr)); in isc_hp_protect_ptr()
180 isc_hp_protect_release(isc_hp_t *hp, int ihp, atomic_uintptr_t ptr) { in isc_hp_protect_release() argument
181 atomic_store_release(&hp->hp[tid()][ihp], atomic_load(&ptr)); in isc_hp_protect_release()
199 for (int ihp = hp->max_hps - 1; ihp >= 0; ihp--) { in isc_hp_retire() local
200 if (atomic_load(&hp->hp[itid][ihp]) == obj) { in isc_hp_retire()
/dports/dns/bind9-devel/bind9-e112afa15668bd3b1baed59df2d21e01b46da15e/lib/isc/
H A Dhp.c150 isc_hp_clear_one(isc_hp_t *hp, int ihp) { in isc_hp_clear_one() argument
151 atomic_store_release(&hp->hp[tid()][ihp], 0); in isc_hp_clear_one()
155 isc_hp_protect(isc_hp_t *hp, int ihp, atomic_uintptr_t *atom) { in isc_hp_protect() argument
159 atomic_store(&hp->hp[tid()][ihp], ret); in isc_hp_protect()
166 isc_hp_protect_ptr(isc_hp_t *hp, int ihp, atomic_uintptr_t ptr) { in isc_hp_protect_ptr() argument
167 atomic_store(&hp->hp[tid()][ihp], atomic_load(&ptr)); in isc_hp_protect_ptr()
172 isc_hp_protect_release(isc_hp_t *hp, int ihp, atomic_uintptr_t ptr) { in isc_hp_protect_release() argument
173 atomic_store_release(&hp->hp[tid()][ihp], atomic_load(&ptr)); in isc_hp_protect_release()
191 for (int ihp = hp->max_hps - 1; ihp >= 0; ihp--) { in isc_hp_retire() local
192 if (atomic_load(&hp->hp[itid][ihp]) == obj) { in isc_hp_retire()
/dports/net-mgmt/bosun/bosun-0.9.0-preview/vendor/github.com/Azure/azure-sdk-for-go/services/iothub/mgmt/2017-01-19/devices/
H A Dmodels.go678 if ihp.IPFilterRules != nil {
681 if ihp.ProvisioningState != nil {
684 if ihp.HostName != nil {
687 if ihp.EventHubEndpoints != nil {
690 if ihp.Routing != nil {
691 objectMap["routing"] = ihp.Routing
693 if ihp.StorageEndpoints != nil {
696 if ihp.MessagingEndpoints != nil {
702 if ihp.CloudToDevice != nil {
705 if ihp.Comments != nil {
[all …]
/dports/sysutils/docker-registry/distribution-2.7.1/vendor/github.com/Azure/azure-sdk-for-go/azure-sdk-for-go-16.2.1/services/iothub/mgmt/2017-01-19/devices/
H A Dmodels.go678 if ihp.IPFilterRules != nil {
681 if ihp.ProvisioningState != nil {
684 if ihp.HostName != nil {
687 if ihp.EventHubEndpoints != nil {
690 if ihp.Routing != nil {
691 objectMap["routing"] = ihp.Routing
693 if ihp.StorageEndpoints != nil {
696 if ihp.MessagingEndpoints != nil {
702 if ihp.CloudToDevice != nil {
705 if ihp.Comments != nil {
[all …]
/dports/net-mgmt/bosun/bosun-0.9.0-preview/vendor/github.com/Azure/azure-sdk-for-go/services/iothub/mgmt/2016-02-03/devices/
H A Dmodels.go642 if ihp.AuthorizationPolicies != nil {
645 if ihp.IPFilterRules != nil {
648 if ihp.ProvisioningState != nil {
651 if ihp.HostName != nil {
652 objectMap["hostName"] = ihp.HostName
654 if ihp.EventHubEndpoints != nil {
657 if ihp.StorageEndpoints != nil {
660 if ihp.MessagingEndpoints != nil {
666 if ihp.CloudToDevice != nil {
669 if ihp.Comments != nil {
[all …]
/dports/sysutils/docker-registry/distribution-2.7.1/vendor/github.com/Azure/azure-sdk-for-go/azure-sdk-for-go-16.2.1/services/iothub/mgmt/2016-02-03/devices/
H A Dmodels.go642 if ihp.AuthorizationPolicies != nil {
645 if ihp.IPFilterRules != nil {
648 if ihp.ProvisioningState != nil {
651 if ihp.HostName != nil {
652 objectMap["hostName"] = ihp.HostName
654 if ihp.EventHubEndpoints != nil {
657 if ihp.StorageEndpoints != nil {
660 if ihp.MessagingEndpoints != nil {
666 if ihp.CloudToDevice != nil {
669 if ihp.Comments != nil {
[all …]
/dports/dns/bind-tools/bind-9.16.27/lib/isc/include/isc/
H A Dhp.h100 isc_hp_clear_one(isc_hp_t *hp, int ihp);
108 isc_hp_protect(isc_hp_t *hp, int ihp, atomic_uintptr_t *atom);
117 isc_hp_protect_ptr(isc_hp_t *hp, int ihp, atomic_uintptr_t ptr);
126 isc_hp_protect_release(isc_hp_t *hp, int ihp, atomic_uintptr_t ptr);
/dports/dns/bind916/bind-9.16.27/lib/isc/include/isc/
H A Dhp.h100 isc_hp_clear_one(isc_hp_t *hp, int ihp);
108 isc_hp_protect(isc_hp_t *hp, int ihp, atomic_uintptr_t *atom);
117 isc_hp_protect_ptr(isc_hp_t *hp, int ihp, atomic_uintptr_t ptr);
126 isc_hp_protect_release(isc_hp_t *hp, int ihp, atomic_uintptr_t ptr);
/dports/dns/samba-nsupdate/bind-9.16.5/lib/isc/include/isc/
H A Dhp.h98 isc_hp_clear_one(isc_hp_t *hp, int ihp);
106 isc_hp_protect(isc_hp_t *hp, int ihp, atomic_uintptr_t *atom);
115 isc_hp_protect_ptr(isc_hp_t *hp, int ihp, atomic_uintptr_t ptr);
124 isc_hp_protect_release(isc_hp_t *hp, int ihp, atomic_uintptr_t ptr);
/dports/dns/bind9-devel/bind9-e112afa15668bd3b1baed59df2d21e01b46da15e/lib/isc/include/isc/
H A Dhp.h100 isc_hp_clear_one(isc_hp_t *hp, int ihp);
108 isc_hp_protect(isc_hp_t *hp, int ihp, atomic_uintptr_t *atom);
117 isc_hp_protect_ptr(isc_hp_t *hp, int ihp, atomic_uintptr_t ptr);
126 isc_hp_protect_release(isc_hp_t *hp, int ihp, atomic_uintptr_t ptr);
/dports/net-mgmt/bosun/bosun-0.9.0-preview/vendor/github.com/Azure/azure-sdk-for-go/services/iothub/mgmt/2018-01-22/devices/
H A Dmodels.go765 if ihp.IPFilterRules != nil {
768 if ihp.ProvisioningState != nil {
771 if ihp.State != nil {
772 objectMap["state"] = ihp.State
774 if ihp.HostName != nil {
777 if ihp.EventHubEndpoints != nil {
780 if ihp.Routing != nil {
783 if ihp.StorageEndpoints != nil {
792 if ihp.CloudToDevice != nil {
795 if ihp.Comments != nil {
[all …]
/dports/sysutils/freeipmi/freeipmi-1.6.8/ipmi-config/
H A Dipmi-config-category-core-lan-conf-section.c1650 assert (ihp); in _get_ipv4_header_parameters()
1699 ihp->time_to_live = val; in _get_ipv4_header_parameters()
1709 ihp->flags = val; in _get_ipv4_header_parameters()
1719 ihp->type_of_service = val; in _get_ipv4_header_parameters()
1729 ihp->precedence = val; in _get_ipv4_header_parameters()
1749 assert (ihp); in _set_ipv4_header_parameters()
1802 struct ipv4_header_parameters ihp; in ipv4_header_time_to_live_checkout() local
1825 struct ipv4_header_parameters ihp; in ipv4_header_time_to_live_commit() local
1846 struct ipv4_header_parameters ihp; in ipv4_header_flags_checkout() local
1869 struct ipv4_header_parameters ihp; in ipv4_header_flags_commit() local
[all …]
/dports/sysutils/docker-registry/distribution-2.7.1/vendor/github.com/Azure/azure-sdk-for-go/azure-sdk-for-go-16.2.1/services/iothub/mgmt/2018-01-22/devices/
H A Dmodels.go765 if ihp.IPFilterRules != nil {
768 if ihp.ProvisioningState != nil {
771 if ihp.State != nil {
772 objectMap["state"] = ihp.State
774 if ihp.HostName != nil {
777 if ihp.EventHubEndpoints != nil {
780 if ihp.Routing != nil {
783 if ihp.StorageEndpoints != nil {
792 if ihp.CloudToDevice != nil {
795 if ihp.Comments != nil {
[all …]
/dports/sysutils/docker-registry/distribution-2.7.1/vendor/github.com/Azure/azure-sdk-for-go/azure-sdk-for-go-16.2.1/services/iothub/mgmt/2018-04-01/devices/
H A Dmodels.go773 if ihp.IPFilterRules != nil {
776 if ihp.ProvisioningState != nil {
779 if ihp.State != nil {
780 objectMap["state"] = ihp.State
782 if ihp.HostName != nil {
785 if ihp.EventHubEndpoints != nil {
788 if ihp.Routing != nil {
791 if ihp.StorageEndpoints != nil {
800 if ihp.CloudToDevice != nil {
803 if ihp.Comments != nil {
[all …]
/dports/net-mgmt/bosun/bosun-0.9.0-preview/vendor/github.com/Azure/azure-sdk-for-go/services/iothub/mgmt/2017-07-01/devices/
H A Dmodels.go760 if ihp.IPFilterRules != nil {
763 if ihp.ProvisioningState != nil {
766 if ihp.HostName != nil {
769 if ihp.EventHubEndpoints != nil {
772 if ihp.Routing != nil {
773 objectMap["routing"] = ihp.Routing
775 if ihp.StorageEndpoints != nil {
778 if ihp.MessagingEndpoints != nil {
784 if ihp.CloudToDevice != nil {
787 if ihp.Comments != nil {
[all …]
/dports/sysutils/docker-registry/distribution-2.7.1/vendor/github.com/Azure/azure-sdk-for-go/azure-sdk-for-go-16.2.1/services/iothub/mgmt/2017-07-01/devices/
H A Dmodels.go760 if ihp.IPFilterRules != nil {
763 if ihp.ProvisioningState != nil {
766 if ihp.HostName != nil {
769 if ihp.EventHubEndpoints != nil {
772 if ihp.Routing != nil {
773 objectMap["routing"] = ihp.Routing
775 if ihp.StorageEndpoints != nil {
778 if ihp.MessagingEndpoints != nil {
784 if ihp.CloudToDevice != nil {
787 if ihp.Comments != nil {
[all …]
/dports/net-mgmt/bosun/bosun-0.9.0-preview/vendor/github.com/Azure/azure-sdk-for-go/services/iothub/mgmt/2018-04-01/devices/
H A Dmodels.go942 if ihp.IPFilterRules != nil {
945 if ihp.ProvisioningState != nil {
948 if ihp.State != nil {
949 objectMap["state"] = ihp.State
951 if ihp.HostName != nil {
954 if ihp.EventHubEndpoints != nil {
957 if ihp.Routing != nil {
960 if ihp.StorageEndpoints != nil {
969 if ihp.CloudToDevice != nil {
972 if ihp.Comments != nil {
[all …]

12345678910>>...20