Home
last modified time | relevance | path

Searched refs:nlr (Results 1 – 25 of 542) sorted by relevance

12345678910>>...22

/dports/math/sisl/SISL-SISL-4.6.0-44-g9114631/src/
H A Ds1926.c68 int nlr;
159 nn = nur + nlr;
214 if (nlr > 0)
215 for (ll = 0; ll < nlr; ll++)
217 wli = w3[ii * nlr + ll];
270 for (ll = 0; ll < nlr; ll++)
272 wli = w3[ii * nlr + ll];
289 wii = w3[ii * nlr + mur];
297 w3[jj * nlr + mur] /= wii;
300 wli = w3[ii * nlr + ll];
[all …]
H A Ds1927.c56 double *w3, int nlr, double *ex[], double *ey, int *jstat) in s1927() argument
59 s1927 (w1, nur, ik, ed, w2, nrc, w3, nlr, ex, ey, jstat) in s1927()
67 int nlr;
138 if (nur < 1 || ik < 1 || nrc < 0 || nlr < 0)
140 nn = nur + nlr;
183 wii = w3[ii * nlr + mur];
190 sum -= w3[jj * nlr + mur] * ((*ex)[jj]);
202 sum -= w3[jj * nlr + mur] * ((*ex)[jj]);
/dports/audio/rhvoice/RHVoice-1.2.4/src/scripts/hts/data/scripts/
H A Dwindow.pl97 $nlr = ( $size - 1 ) / 2;
105 for ( $k = -$nlr ; $k <= $nlr ; $k++ ) {
106 if ( $chkbound[ $k + $nlr + 1 ] == 1 ) {
123 for ( $k = -$nlr ; $k <= $nlr ; $k++ ) {
125 …$transformed[ $t * $nwin * $dim + $dim * ( $i - 1 ) + $j ] += $win[ $k + $nlr + 1 ] * $original[$j…
128 …$transformed[ $t * $nwin * $dim + $dim * ( $i - 1 ) + $j ] += $win[ $k + $nlr + 1 ] * $original[ (…
131 …$transformed[ $t * $nwin * $dim + $dim * ( $i - 1 ) + $j ] += $win[ $k + $nlr + 1 ] * $original[ (…
/dports/lang/micropython/micropython-1.17/py/
H A Dnlr.c33 unsigned int nlr_push_tail(nlr_buf_t *nlr) asm ("nlr_push_tail");
36 __attribute__((used)) unsigned int nlr_push_tail(nlr_buf_t *nlr);
40 unsigned int nlr_push_tail(nlr_buf_t *nlr) { in nlr_push_tail() argument
42 nlr->prev = *top; in nlr_push_tail()
43 MP_NLR_SAVE_PYSTACK(nlr); in nlr_push_tail()
44 *top = nlr; in nlr_push_tail()
H A Druntime_utils.c31 nlr_buf_t nlr; in mp_call_function_1_protected() local
32 if (nlr_push(&nlr) == 0) { in mp_call_function_1_protected()
37 mp_obj_print_exception(&mp_plat_print, MP_OBJ_FROM_PTR(nlr.ret_val)); in mp_call_function_1_protected()
43 nlr_buf_t nlr; in mp_call_function_2_protected() local
44 if (nlr_push(&nlr) == 0) { in mp_call_function_2_protected()
49 mp_obj_print_exception(&mp_plat_print, MP_OBJ_FROM_PTR(nlr.ret_val)); in mp_call_function_2_protected()
H A Dnlrx86.c37 unsigned int nlr_push_tail(nlr_buf_t *nlr) asm ("nlr_push_tail");
39 __attribute__((used)) unsigned int nlr_push_tail(nlr_buf_t *nlr);
58 unsigned int nlr_push(nlr_buf_t *nlr) { in nlr_push() argument
59 (void)nlr; in nlr_push()
H A Dobjgetitemiter.c40 nlr_buf_t nlr; in it_iternext() local
41 if (nlr_push(&nlr) == 0) { in it_iternext()
49 mp_obj_type_t *t = (mp_obj_type_t *)((mp_obj_base_t *)nlr.ret_val)->type; in it_iternext()
54 nlr_jump(nlr.ret_val); in it_iternext()
H A Dnlrpowerpc.c35 unsigned int nlr_push(nlr_buf_t *nlr) { in nlr_push() argument
72 : "r" (&nlr->regs), "r" (nlr) in nlr_push()
H A Dnlrx64.c36 __attribute__((used)) unsigned int nlr_push_tail(nlr_buf_t *nlr);
38 unsigned int nlr_push(nlr_buf_t *nlr) { in nlr_push() argument
39 (void)nlr; in nlr_push()
/dports/lang/micropython/micropython-1.17/extmod/
H A Duos_dupterm.c47 nlr_buf_t nlr; in mp_uos_deactivate() local
48 if (nlr_push(&nlr) == 0) { in mp_uos_deactivate()
74 nlr_buf_t nlr; in mp_uos_dupterm_poll() local
75 if (nlr_push(&nlr) == 0) { in mp_uos_dupterm_poll()
115 nlr_buf_t nlr; in mp_uos_dupterm_rx_chr() local
116 if (nlr_push(&nlr) == 0) { in mp_uos_dupterm_rx_chr()
142 …activate(idx, "dupterm: Exception in read() method, deactivating: ", MP_OBJ_FROM_PTR(nlr.ret_val)); in mp_uos_dupterm_rx_chr()
165 nlr_buf_t nlr; in mp_uos_dupterm_tx_strn() local
166 if (nlr_push(&nlr) == 0) { in mp_uos_dupterm_tx_strn()
170 …ctivate(idx, "dupterm: Exception in write() method, deactivating: ", MP_OBJ_FROM_PTR(nlr.ret_val)); in mp_uos_dupterm_tx_strn()
/dports/lang/micropython/micropython-1.17/ports/javascript/
H A Dmain.c45 nlr_buf_t nlr; in do_str() local
46 if (nlr_push(&nlr) == 0) { in do_str()
55 if (mp_obj_is_subclass_fast(mp_obj_get_type((mp_obj_t)nlr.ret_val), &mp_type_SystemExit)) { in do_str()
56 mp_obj_t exit_val = mp_obj_exception_get_value(MP_OBJ_FROM_PTR(nlr.ret_val)); in do_str()
66 mp_obj_print_exception(&mp_plat_print, (mp_obj_t)nlr.ret_val); in do_str()
/dports/www/grafana8/grafana-8.3.6/vendor/github.com/Azure/azure-sdk-for-go/services/notificationhubs/mgmt/2014-09-01/notificationhubs/
H A Dmodels.go458 return nlr.Value == nil || len(*nlr.Value) == 0
463 return nlr.NextLink != nil && len(*nlr.NextLink) != 0
469 if !nlr.hasNextLink() {
481 nlr NamespaceListResult member
498 next, err := page.fn(ctx, page.nlr)
502 page.nlr = next
519 return !page.nlr.IsEmpty()
524 return page.nlr
529 if page.nlr.IsEmpty() {
532 return *page.nlr.Value
[all …]
/dports/www/grafana8/azure-sdk-for-go-sdk-azcore-v0.19.0/services/notificationhubs/mgmt/2014-09-01/notificationhubs/
H A Dmodels.go458 return nlr.Value == nil || len(*nlr.Value) == 0
463 return nlr.NextLink != nil && len(*nlr.NextLink) != 0
469 if !nlr.hasNextLink() {
481 nlr NamespaceListResult member
498 next, err := page.fn(ctx, page.nlr)
502 page.nlr = next
519 return !page.nlr.IsEmpty()
524 return page.nlr
529 if page.nlr.IsEmpty() {
532 return *page.nlr.Value
[all …]
/dports/security/vault/vault-1.8.2/vendor/github.com/Azure/azure-sdk-for-go/services/notificationhubs/mgmt/2014-09-01/notificationhubs/
H A Dmodels.go469 return nlr.Value == nil || len(*nlr.Value) == 0
474 return nlr.NextLink != nil && len(*nlr.NextLink) != 0
480 if !nlr.hasNextLink() {
492 nlr NamespaceListResult member
509 next, err := page.fn(ctx, page.nlr)
513 page.nlr = next
530 return !page.nlr.IsEmpty()
535 return page.nlr
540 if page.nlr.IsEmpty() {
543 return *page.nlr.Value
[all …]
/dports/net-mgmt/prometheus2/prometheus-2.30.3/vendor/github.com/Azure/azure-sdk-for-go/services/notificationhubs/mgmt/2014-09-01/notificationhubs/
H A Dmodels.go458 return nlr.Value == nil || len(*nlr.Value) == 0
463 return nlr.NextLink != nil && len(*nlr.NextLink) != 0
469 if !nlr.hasNextLink() {
481 nlr NamespaceListResult member
498 next, err := page.fn(ctx, page.nlr)
502 page.nlr = next
519 return !page.nlr.IsEmpty()
524 return page.nlr
529 if page.nlr.IsEmpty() {
532 return *page.nlr.Value
[all …]
/dports/www/grafana8/azure-sdk-for-go-sdk-azidentity-v0.10.0/services/notificationhubs/mgmt/2014-09-01/notificationhubs/
H A Dmodels.go458 return nlr.Value == nil || len(*nlr.Value) == 0
463 return nlr.NextLink != nil && len(*nlr.NextLink) != 0
469 if !nlr.hasNextLink() {
481 nlr NamespaceListResult member
498 next, err := page.fn(ctx, page.nlr)
502 page.nlr = next
519 return !page.nlr.IsEmpty()
524 return page.nlr
529 if page.nlr.IsEmpty() {
532 return *page.nlr.Value
[all …]
/dports/www/grafana8/azure-sdk-for-go-sdk-internal-v0.7.0/services/notificationhubs/mgmt/2014-09-01/notificationhubs/
H A Dmodels.go458 return nlr.Value == nil || len(*nlr.Value) == 0
463 return nlr.NextLink != nil && len(*nlr.NextLink) != 0
469 if !nlr.hasNextLink() {
481 nlr NamespaceListResult member
498 next, err := page.fn(ctx, page.nlr)
502 page.nlr = next
519 return !page.nlr.IsEmpty()
524 return page.nlr
529 if page.nlr.IsEmpty() {
532 return *page.nlr.Value
[all …]
/dports/sysutils/restic/restic-0.12.1/vendor/github.com/Azure/azure-sdk-for-go/services/notificationhubs/mgmt/2014-09-01/notificationhubs/
H A Dmodels.go458 return nlr.Value == nil || len(*nlr.Value) == 0
463 return nlr.NextLink != nil && len(*nlr.NextLink) != 0
469 if !nlr.hasNextLink() {
481 nlr NamespaceListResult member
498 next, err := page.fn(ctx, page.nlr)
502 page.nlr = next
519 return !page.nlr.IsEmpty()
524 return page.nlr
529 if page.nlr.IsEmpty() {
532 return *page.nlr.Value
[all …]
/dports/sysutils/terraform/terraform-1.0.11/vendor/github.com/Azure/azure-sdk-for-go/services/notificationhubs/mgmt/2014-09-01/notificationhubs/
H A Dmodels.go469 return nlr.Value == nil || len(*nlr.Value) == 0
474 return nlr.NextLink != nil && len(*nlr.NextLink) != 0
480 if !nlr.hasNextLink() {
492 nlr NamespaceListResult member
509 next, err := page.fn(ctx, page.nlr)
513 page.nlr = next
530 return !page.nlr.IsEmpty()
535 return page.nlr
540 if page.nlr.IsEmpty() {
543 return *page.nlr.Value
[all …]
/dports/lang/micropython/micropython-1.17/ports/unix/
H A Dcoverage.c246 nlr_buf_t nlr; in extra_coverage() local
247 if (nlr_push(&nlr) == 0) { in extra_coverage()
251 mp_obj_print_exception(&mp_plat_print, MP_OBJ_FROM_PTR(nlr.ret_val)); in extra_coverage()
255 if (nlr_push(&nlr) == 0) { in extra_coverage()
259 mp_obj_print_exception(&mp_plat_print, MP_OBJ_FROM_PTR(nlr.ret_val)); in extra_coverage()
389 nlr_buf_t nlr; in extra_coverage() local
390 if (nlr_push(&nlr) == 0) { in extra_coverage()
398 if (nlr_push(&nlr) == 0) { in extra_coverage()
494 nlr_buf_t nlr; in extra_coverage() local
495 if (nlr_push(&nlr) == 0) { in extra_coverage()
[all …]
/dports/net-mgmt/bosun/bosun-0.9.0-preview/vendor/github.com/Azure/azure-sdk-for-go/services/notificationhubs/mgmt/2014-09-01/notificationhubs/
H A Dmodels.go416 func (nlr NamespaceListResult) IsEmpty() bool {
417 return nlr.Value == nil || len(*nlr.Value) == 0
423 if nlr.NextLink == nil || len(to.String(nlr.NextLink)) < 1 {
429 autorest.WithBaseURL(to.String(nlr.NextLink)))
435 nlr NamespaceListResult member
441 next, err := page.fn(page.nlr)
445 page.nlr = next
451 return !page.nlr.IsEmpty()
456 return page.nlr
461 if page.nlr.IsEmpty() {
[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/notificationhubs/mgmt/2014-09-01/notificationhubs/
H A Dmodels.go416 func (nlr NamespaceListResult) IsEmpty() bool {
417 return nlr.Value == nil || len(*nlr.Value) == 0
423 if nlr.NextLink == nil || len(to.String(nlr.NextLink)) < 1 {
429 autorest.WithBaseURL(to.String(nlr.NextLink)))
435 nlr NamespaceListResult member
441 next, err := page.fn(page.nlr)
445 page.nlr = next
451 return !page.nlr.IsEmpty()
456 return page.nlr
461 if page.nlr.IsEmpty() {
[all …]
/dports/lang/micropython/micropython-1.17/ports/nrf/
H A Dmain.c93 nlr_buf_t nlr; in do_str() local
94 if (nlr_push(&nlr) == 0) { in do_str()
102 mp_obj_print_exception(&mp_plat_print, (mp_obj_t)nlr.ret_val); in do_str()
111 nlr_buf_t nlr; in vfs_mount_and_chdir() local
113 if (nlr_push(&nlr) == 0) { in vfs_mount_and_chdir()
120 mp_obj_base_t *exc = nlr.ret_val; in vfs_mount_and_chdir()
/dports/lang/micropython/micropython-1.17/examples/embedding/
H A Dhello-embed.c39 nlr_buf_t nlr; in execute_from_str() local
40 if (nlr_push(&nlr) == 0) { in execute_from_str()
50 return (mp_obj_t)nlr.ret_val; in execute_from_str()
/dports/lang/micropython/micropython-1.17/ports/bare-arm/
H A Dmain.c43 nlr_buf_t nlr; in do_str() local
44 if (nlr_push(&nlr) == 0) { in do_str()
54 mp_obj_print_exception(&mp_plat_print, (mp_obj_t)nlr.ret_val); in do_str()

12345678910>>...22