Searched refs:nvals (Results 1 - 25 of 30) sorted by relevance

12

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/flac-1.2.1/src/libFLAC/include/private/
H A Dbitreader.h79 FLAC__bool FLAC__bitreader_skip_byte_block_aligned_no_crc(FLAC__BitReader *br, unsigned nvals); /* WATCHOUT: does not CRC the read data! */
80 FLAC__bool FLAC__bitreader_read_byte_block_aligned_no_crc(FLAC__BitReader *br, FLAC__byte *val, unsigned nvals); /* WATCHOUT: does not CRC the read data! */
83 FLAC__bool FLAC__bitreader_read_rice_signed_block(FLAC__BitReader *br, int vals[], unsigned nvals, unsigned parameter);
87 FLAC__bool FLAC__bitreader_read_rice_signed_block_asm_ia32_bswap(FLAC__BitReader *br, int vals[], unsigned nvals, unsigned parameter);
H A Dbitwriter.h86 FLAC__bool FLAC__bitwriter_write_byte_block(FLAC__BitWriter *bw, const FLAC__byte vals[], unsigned nvals);
94 FLAC__bool FLAC__bitwriter_write_rice_signed_block(FLAC__BitWriter *bw, const FLAC__int32 *vals, unsigned nvals, unsigned parameter);
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/net/netfilter/
H A Dxt_u32.c22 unsigned int nvals; local
77 nvals = ct->nvalues;
78 for (i = 0; i < nvals; ++i)
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/flac-1.2.1/src/libFLAC/
H A Dbitreader.c606 FLAC__bool FLAC__bitreader_skip_byte_block_aligned_no_crc(FLAC__BitReader *br, unsigned nvals) argument
615 while(nvals && br->consumed_bits) { /* i.e. run until we read 'nvals' bytes or we hit the end of the head word */
618 nvals--;
620 if(0 == nvals)
623 while(nvals >= FLAC__BYTES_PER_WORD) {
626 nvals -= FLAC__BYTES_PER_WORD;
632 while(nvals) {
635 nvals--;
641 FLAC__bool FLAC__bitreader_read_byte_block_aligned_no_crc(FLAC__BitReader *br, FLAC__byte *val, unsigned nvals) argument
807 FLAC__bitreader_read_rice_signed_block(FLAC__BitReader *br, int vals[], unsigned nvals, unsigned parameter) argument
[all...]
H A Dbitwriter.c416 FLaC__INLINE FLAC__bool FLAC__bitwriter_write_byte_block(FLAC__BitWriter *bw, const FLAC__byte vals[], unsigned nvals) argument
421 for(i = 0; i < nvals; i++) {
541 FLAC__bool FLAC__bitwriter_write_rice_signed_block(FLAC__BitWriter *bw, const FLAC__int32 *vals, unsigned nvals, unsigned parameter) argument
556 while(nvals) {
576 if(bw->capacity <= bw->words && nvals > 1 && !bitwriter_grow_(bw, 1)) {
652 nvals--;
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iptables-1.4.12.1/extensions/
H A Dlibxt_length.c30 if (cb->nvals >= 2)
H A Dlibxt_tcpmss.c30 if (cb->nvals == 2)
H A Dlibipt_ah.c29 if (cb->nvals == 1)
H A Dlibxt_esp.c29 if (cb->nvals == 1)
H A Dlibip6t_ah.c38 if (cb->nvals == 1)
H A Dlibip6t_frag.c51 if (cb->nvals == 1)
H A Dlibxt_NFQUEUE.c71 if (cb->nvals != 2)
H A Dlibxt_connbytes.c41 if (cb->nvals == 2)
H A Dlibxt_conntrack.c381 if (cb->nvals >= 2)
449 if (cb->nvals >= 2)
457 info->origsrc_port_high = cb->val.port_range[cb->nvals >= 2];
464 info->origdst_port_high = cb->val.port_range[cb->nvals >= 2];
471 info->replsrc_port_high = cb->val.port_range[cb->nvals >= 2];
478 info->repldst_port_high = cb->val.port_range[cb->nvals >= 2];
/netgear-R7000-V1.0.7.12_1.2.5/src/router/iptables-1.4.12/src/extensions/
H A Dlibxt_length.c30 if (cb->nvals >= 2)
H A Dlibxt_tcpmss.c30 if (cb->nvals == 2)
H A Dlibipt_ah.c29 if (cb->nvals == 1)
H A Dlibxt_esp.c29 if (cb->nvals == 1)
H A Dlibip6t_ah.c38 if (cb->nvals == 1)
H A Dlibip6t_frag.c51 if (cb->nvals == 1)
H A Dlibxt_NFQUEUE.c71 if (cb->nvals != 2)
H A Dlibxt_connbytes.c41 if (cb->nvals == 2)
H A Dlibxt_conntrack.c388 if (cb->nvals >= 2)
456 if (cb->nvals >= 2)
464 info->origsrc_port_high = cb->val.port_range[cb->nvals >= 2];
471 info->origdst_port_high = cb->val.port_range[cb->nvals >= 2];
478 info->replsrc_port_high = cb->val.port_range[cb->nvals >= 2];
485 info->repldst_port_high = cb->val.port_range[cb->nvals >= 2];
/netgear-R7000-V1.0.7.12_1.2.5/src/router/iptables-1.4.12/src/libxtables/
H A Dxtoptions.c238 if (cb->nvals >= ARRAY_SIZE(cb->val.u32_range))
241 cb->val.u8_range[cb->nvals] = value;
243 cb->val.u16_range[cb->nvals] = value;
245 cb->val.u32_range[cb->nvals] = value;
247 cb->val.u64_range[cb->nvals] = value;
301 cb->nvals = 0;
303 if (cb->nvals == maxiter)
310 value = (cb->nvals == 1) ? lmax : 0;
324 ++cb->nvals;
636 cb->nvals
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iptables-1.4.12.1/iptables/
H A Dxtoptions.c238 if (cb->nvals >= ARRAY_SIZE(cb->val.u32_range))
241 cb->val.u8_range[cb->nvals] = value;
243 cb->val.u16_range[cb->nvals] = value;
245 cb->val.u32_range[cb->nvals] = value;
247 cb->val.u64_range[cb->nvals] = value;
301 cb->nvals = 0;
303 if (cb->nvals == maxiter)
310 value = (cb->nvals == 1) ? lmax : 0;
324 ++cb->nvals;
636 cb->nvals
[all...]

Completed in 207 milliseconds

12