HomeSort by relevance Sort by last modified time
    Searched full:nvals (Results 1 - 25 of 25) sorted by null

  /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/valgrind/main/VEX/test/
test-amd64.h 141 #define NVALS 57
143 static unsigned int val[NVALS]
216 for (i = 0; i < NVALS; i++)
217 for (j = 0; j < NVALS; j++)
221 #undef NVALS
test-i386.h 147 #define NVALS 57
149 static unsigned int val[NVALS]
197 for (i = 0; i < NVALS; i++)
198 for (j = 0; j < NVALS; j++)
202 #undef NVALS
  /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)
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_frag.c 51 if (cb->nvals == 1)
libxt_NFQUEUE.c 71 if (cb->nvals != 2)
libxt_connbytes.c 41 if (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/valgrind/main/none/tests/x86/
x86locked.c 144 #define NVALS 57
146 static unsigned int val[NVALS]
169 #define NVALS 27
171 static unsigned int val[NVALS]
212 for (v1 = 0; v1 < NVALS; v1++) { \
213 for (v2 = 0; v2 < NVALS; v2++) { \
300 for (v2 = 0; v2 < NVALS; v2++) { \
402 for (v2 = 0; v2 < NVALS; v2++) { \
  /external/valgrind/main/none/tests/amd64/
amd64locked.c 144 #define NVALS 76
146 static ULong val[NVALS]
178 #define NVALS 36
180 static ULong val[NVALS]
227 for (v1 = 0; v1 < NVALS; v1++) { \
228 for (v2 = 0; v2 < NVALS; v2++) { \
322 for (v2 = 0; v2 < NVALS; v2++) { \
438 for (v2 = 0; v2 < NVALS; v2++) { \
  /external/flac/libFLAC/ia32/
bitreader_asm.nasm 47 ; void FLAC__bool FLAC__bitreader_read_rice_signed_block(FLAC__BitReader *br, int vals[], unsigned nvals, unsigned parameter)
62 ;; [esp + 12] unsigned nvals
65 mov eax, [esp + 12] ; if(nvals == 0)
78 ;; [esp + 32] unsigned nvals
546 sub dword [esp + 32], byte 1 ; --nvals;
547 jz .finished ; if(nvals == 0) /* jump to finish */
stream_encoder_asm.nasm 44 ; void FLAC__bool FLAC__bitreader_read_rice_signed_block(FLAC__BitReader *br, int vals[], unsigned nvals, unsigned parameter)
  /external/iptables/include/
xtables.h 143 * @nvals: number of results in uXX_multi
152 uint8_t nvals; member in struct:xt_option_call
xtables.h.in 143 * @nvals: number of results in uXX_multi
152 uint8_t nvals;
  /ndk/sources/host-tools/nawk-20071023/
lib.c 358 { /* nvals remain intact */

Completed in 1113 milliseconds