Home
last modified time | relevance | path

Searched refs:ncode (Results 1 – 14 of 14) sorted by relevance

/openbsd-src/gnu/usr.bin/perl/cpan/Compress-Raw-Zlib/zlib-src/
H A Dinflate.h115 unsigned ncode; /* number of code length code lengths */ member
H A Dinfback.c352 state->ncode = BITS(4) + 4; in inflateBack()
365 while (state->have < state->ncode) { in inflateBack()
H A Dinflate.c904 state->ncode = BITS(4) + 4; in inflate()
918 while (state->have < state->ncode) { in inflate()
/openbsd-src/sys/lib/libz/
H A Dinflate.h115 unsigned ncode; /* number of code length code lengths */ member
H A Dinfback.c360 state->ncode = BITS(4) + 4; in inflateBack()
377 while (state->have < state->ncode) { in inflateBack()
H A Dinflate.c936 state->ncode = BITS(4) + 4; in inflate()
954 while (state->have < state->ncode) { in inflate()
/openbsd-src/lib/libz/
H A Dinflate.h115 unsigned ncode; /* number of code length code lengths */ member
H A Dinfback.c360 state->ncode = BITS(4) + 4; in inflateBack()
377 while (state->have < state->ncode) { in inflateBack()
H A Dinflate.c937 state->ncode = BITS(4) + 4; in inflate()
955 while (state->have < state->ncode) { in inflate()
/openbsd-src/gnu/usr.bin/perl/cpan/Pod-Simple/t/
H A Dfake-closers.t11 "=over\n\nblock\n\n=cut\n\ncode\n\n=pod\n\n=back",
/openbsd-src/gnu/usr.bin/gcc/gcc/
H A Dsimplify-rtx.c1791 enum rtx_code ncode = PLUS; local
1795 ncode = MINUS;
1802 tem = simplify_binary_operation (ncode, mode, lhs, rhs);
1810 && GET_CODE (XEXP (tem, 0)) == ncode
/openbsd-src/gnu/gcc/gcc/config/ia64/
H A Dia64.c1560 enum rtx_code ncode; in ia64_expand_compare() local
1568 case EQ: magic = QCMP_EQ; ncode = NE; break; in ia64_expand_compare()
1569 case NE: magic = QCMP_EQ; ncode = EQ; break; in ia64_expand_compare()
1571 case UNORDERED: magic = QCMP_UNORD; ncode = NE; break; in ia64_expand_compare()
1572 case ORDERED: magic = QCMP_UNORD; ncode = EQ; break; in ia64_expand_compare()
1575 case LT: magic = QCMP_LT |QCMP_INV; ncode = NE; break; in ia64_expand_compare()
1576 case LE: magic = QCMP_LT|QCMP_EQ|QCMP_INV; ncode = NE; break; in ia64_expand_compare()
1577 case GT: magic = QCMP_GT |QCMP_INV; ncode = NE; break; in ia64_expand_compare()
1578 case GE: magic = QCMP_GT|QCMP_EQ|QCMP_INV; ncode = NE; break; in ia64_expand_compare()
1592 gen_rtx_fmt_ee (ncode, BImode, in ia64_expand_compare()
/openbsd-src/gnu/gcc/gcc/
H A Dsimplify-rtx.c3375 enum rtx_code ncode = PLUS; in simplify_plus_minus() local
3379 ncode = MINUS; in simplify_plus_minus()
3393 tem = simplify_binary_operation (ncode, mode, tem_lhs, tem_rhs); in simplify_plus_minus()
3399 tem = simplify_binary_operation (ncode, mode, lhs, rhs); in simplify_plus_minus()
3407 && GET_CODE (XEXP (tem, 0)) == ncode in simplify_plus_minus()
/openbsd-src/gnu/usr.bin/perl/
H A Dregcomp.c507 S_alloc_code_blocks(pTHX_ int ncode) in S_alloc_code_blocks()
511 cbs->count = ncode; in S_alloc_code_blocks()
514 if (ncode) in S_alloc_code_blocks()
515 Newx(cbs->cb, ncode, struct reg_code_block); in S_alloc_code_blocks()
1449 int ncode = 0; in Perl_re_op_compile()
1453 ncode++; /* count of DO blocks */ in Perl_re_op_compile()
1455 if (ncode) in Perl_re_op_compile()
1456 pRExC_state->code_blocks = S_alloc_code_blocks(aTHX_ ncode); in Perl_re_op_compile()
506 S_alloc_code_blocks(pTHX_ int ncode) S_alloc_code_blocks() argument
1320 int ncode = 0; Perl_re_op_compile() local