/external/flac/libFLAC/include/private/ |
bitreader.h | 79 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);
|
bitwriter.h | 86 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);
|
/external/flac/libFLAC/ |
bitreader.c | 606 FLAC__bool FLAC__bitreader_skip_byte_block_aligned_no_crc(FLAC__BitReader *br, unsigned nvals) 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) [all...] |
bitwriter.c | 416 FLaC__INLINE FLAC__bool FLAC__bitwriter_write_byte_block(FLAC__BitWriter *bw, const FLAC__byte vals[], unsigned nvals) 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) 556 while(nvals) { 576 if(bw->capacity <= bw->words && nvals > 1 && !bitwriter_grow_(bw, 1)) { 652 nvals--;
|
stream_decoder.c | 170 FLAC__bool (*local_bitreader_read_rice_signed_block)(FLAC__BitReader *br, int vals[], unsigned nvals, unsigned parameter); [all...] |
/external/iptables/extensions/ |
libxt_length.c | 30 if (cb->nvals >= 2)
|
libxt_tcpmss.c | 30 if (cb->nvals == 2)
|
libipt_ah.c | 29 if (cb->nvals == 1)
|
libxt_esp.c | 29 if (cb->nvals == 1)
|
libip6t_ah.c | 38 if (cb->nvals == 1)
|
libip6t_frag.c | 51 if (cb->nvals == 1)
|
libxt_NFQUEUE.c | 71 if (cb->nvals != 2)
|
libxt_connbytes.c | 41 if (cb->nvals == 2)
|
libxt_conntrack.c | 350 if (cb->nvals >= 2) 418 if (cb->nvals >= 2) 426 info->origsrc_port_high = cb->val.port_range[cb->nvals >= 2]; 433 info->origdst_port_high = cb->val.port_range[cb->nvals >= 2]; 440 info->replsrc_port_high = cb->val.port_range[cb->nvals >= 2]; 447 info->repldst_port_high = cb->val.port_range[cb->nvals >= 2];
|
libip6t_rt.c | 114 if (cb->nvals == 1)
|
/external/iptables/iptables/ |
xtoptions.c | 238 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 = 0 [all...] |
/external/iptables/include/ |
xtables.h | 143 * @nvals: number of results in uXX_multi 152 uint8_t nvals; member in struct:xt_option_call
|