Searched refs:lookahead (Results 1 - 25 of 27) sorted by relevance

12

/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/flac-1.2.1/src/flac/
H A Dencode.h117 int flac__encode_aif(FILE *infile, off_t infilesize, const char *infilename, const char *outfilename, const FLAC__byte *lookahead, unsigned lookahead_length, wav_encode_options_t options, FLAC__bool is_aifc);
118 int flac__encode_wav(FILE *infile, off_t infilesize, const char *infilename, const char *outfilename, const FLAC__byte *lookahead, unsigned lookahead_length, wav_encode_options_t options);
119 int flac__encode_raw(FILE *infile, off_t infilesize, const char *infilename, const char *outfilename, const FLAC__byte *lookahead, unsigned lookahead_length, raw_encode_options_t options);
120 int flac__encode_flac(FILE *infile, off_t infilesize, const char *infilename, const char *outfilename, const FLAC__byte *lookahead, unsigned lookahead_length, flac_encode_options_t options, FLAC__bool input_is_ogg);
H A Dmain.c1623 FLAC__byte lookahead[12]; local
1667 if((lookahead_length = fread(lookahead, 1, 12, encode_infile)) < 12) {
1678 if(!strncmp((const char *)lookahead, "ID3", 3)) {
1682 else if(!strncmp((const char *)lookahead, "RIFF", 4) && !strncmp((const char *)lookahead+8, "WAVE", 4))
1684 else if(!strncmp((const char *)lookahead, "FORM", 4) && !strncmp((const char *)lookahead+8, "AIFF", 4))
1686 else if(!strncmp((const char *)lookahead, "FORM", 4) && !strncmp((const char *)lookahead+8, "AIFC", 4)) {
1690 else if(!memcmp(lookahead, FLAC__STREAM_SYNC_STRIN
[all...]
H A Dencode.c94 const FLAC__byte *lookahead; member in struct:__anon823
164 int flac__encode_aif(FILE *infile, off_t infilesize, const char *infilename, const char *outfilename, const FLAC__byte *lookahead, unsigned lookahead_length, wav_encode_options_t options, FLAC__bool is_aifc) argument
176 (void)lookahead; /* silence compiler warning about unused parameter */
212 /* lookahead[] already has "FORMxxxxAIFF", do sub-chunks */
609 int flac__encode_wav(FILE *infile, off_t infilesize, const char *infilename, const char *outfilename, const FLAC__byte *lookahead, unsigned lookahead_length, wav_encode_options_t options) argument
623 (void)lookahead;
660 * lookahead[] already has "RIFFxxxxWAVE", do sub-chunks
1164 int flac__encode_raw(FILE *infile, off_t infilesize, const char *infilename, const char *outfilename, const FLAC__byte *lookahead, unsigned lookahead_length, raw_encode_options_t options) argument
1257 lookahead += skip_bytes;
1297 memcpy(ucbuffer_, lookahead, lookahead_lengt
1432 flac__encode_flac(FILE *infile, off_t infilesize, const char *infilename, const char *outfilename, const FLAC__byte *lookahead, unsigned lookahead_length, flac_encode_options_t options, FLAC__bool input_is_ogg) argument
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/lib/zlib_deflate/
H A Ddeflate.c97 /* Minimum amount of lookahead, except at the end of the input file.
391 if (strm->avail_in != 0 || s->lookahead != 0 ||
528 s->lookahead = 0;
541 * OUT assertion: the match length is not greater than s->lookahead.
590 if ((uInt)nice_match > s->lookahead) nice_match = s->lookahead;
592 Assert((ulg)s->strstart <= s->window_size-MIN_LOOKAHEAD, "need lookahead");
612 * lookahead only every 4th comparison; the 128th check will be made
615 * to check more often for insufficient lookahead.
650 /* We check for insufficient lookahead onl
[all...]
H A Ddefutil.h134 uInt lookahead; /* number of valid bytes ahead in window */ member in struct:deflate_state
257 /* Minimum amount of lookahead, except at the end of the input file.
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/zlib-1.2.3/
H A Ddeflate.c114 /* Minimum amount of lookahead, except at the end of the input file.
344 * s->lookahead stays null, so s->ins_h will be recomputed at the next
786 if (strm->avail_in != 0 || s->lookahead != 0 ||
1002 s->lookahead = 0;
1021 * OUT assertion: the match length is not greater than s->lookahead.
1070 if ((uInt)nice_match > s->lookahead) nice_match = s->lookahead;
1072 Assert((ulg)s->strstart <= s->window_size-MIN_LOOKAHEAD, "need lookahead");
1080 * for insufficient lookahead only occur occasionally for performance
1083 * However the length of the match is limited to the lookahead, s
[all...]
H A Ddeflate.h158 uInt lookahead; /* number of valid bytes ahead in window */ member in struct:internal_state
272 /* Minimum amount of lookahead, except at the end of the input file.
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/zlib-1.2.3/
H A Ddeflate.c114 /* Minimum amount of lookahead, except at the end of the input file.
344 * s->lookahead stays null, so s->ins_h will be recomputed at the next
786 if (strm->avail_in != 0 || s->lookahead != 0 ||
1002 s->lookahead = 0;
1021 * OUT assertion: the match length is not greater than s->lookahead.
1070 if ((uInt)nice_match > s->lookahead) nice_match = s->lookahead;
1072 Assert((ulg)s->strstart <= s->window_size-MIN_LOOKAHEAD, "need lookahead");
1080 * for insufficient lookahead only occur occasionally for performance
1083 * However the length of the match is limited to the lookahead, s
[all...]
H A Ddeflate.h158 uInt lookahead; /* number of valid bytes ahead in window */ member in struct:internal_state
272 /* Minimum amount of lookahead, except at the end of the input file.
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/router/busybox-1.x/archival/
H A Dgzip.c116 /* Minimum amount of lookahead, except at the end of the input file.
262 unsigned lookahead; /* number of valid bytes ahead in window */ member in struct:globals
529 * Fill the window when the lookahead becomes insufficient.
530 * Updates strstart and lookahead, and sets eofile if end of input file.
531 * IN assertion: lookahead < MIN_LOOKAHEAD && strstart + lookahead > 0
539 unsigned more = WINDOW_SIZE - G1.lookahead - G1.strstart;
542 /* If the window is almost full and there is insufficient lookahead,
547 * and lookahead == 1 (input done one byte at time)
577 n = file_read(G1.window + G1.strstart + G1.lookahead, mor
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/i386/math-emu/
H A Dfpu_system.h49 #define FPU_lookahead (I387.soft.lookahead)
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/net/sk98lin/h/
H A Dskrlmt.h147 /* ----- RLMT lookahead result bits ----- */
240 Error: SK_RLMT_FAST_LOOKAHEAD no longer used. Use new macros for lookahead.
243 Error: SK_RLMT_SLOW_LOOKAHEAD no longer used. Use new macros for lookahead.
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/ppp-2.4.4/pppdump/
H A Dzlib.c279 uInt lookahead; /* number of valid bytes ahead in window */ member in struct:deflate_state
398 /* Minimum amount of lookahead, except at the end of the input file.
487 /* Minimum amount of lookahead, except at the end of the input file.
782 if (strm->avail_in != 0 || state->lookahead != 0 ||
918 s->lookahead = 0;
978 Assert((ulg)s->strstart <= s->window_size-MIN_LOOKAHEAD, "need lookahead");
998 * lookahead only every 4th comparison; the 128th check will be made
1001 * to check more often for insufficient lookahead.
1036 /* We check for insufficient lookahead only every 8th comparison;
1100 * Fill the window when the lookahead become
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/ppp-2.4.4/common/
H A Dzlib.c404 uInt lookahead; /* number of valid bytes ahead in window */ member in struct:deflate_state
518 /* Minimum amount of lookahead, except at the end of the input file.
648 /* Minimum amount of lookahead, except at the end of the input file.
852 * s->lookahead stays null, so s->ins_h will be recomputed at the next
1047 if (strm->avail_in != 0 || s->lookahead != 0 ||
1247 s->lookahead = 0;
1263 * OUT assertion: the match length is not greater than s->lookahead.
1312 if ((uInt)nice_match > s->lookahead) nice_match = s->lookahead;
1314 Assert((ulg)s->strstart <= s->window_size-MIN_LOOKAHEAD, "need lookahead");
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/asm-sh/
H A Dprocessor.h132 unsigned char lookahead; member in struct:sh_fpu_soft_struct
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/tools/misc/lzma_src/C/
H A DTypes.h177 void LookToRead_CreateVTable(CLookToRead *p, int lookahead);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/zlib-1.2.3/contrib/masm686/
H A Dmatch.asm177 ; if ((uInt)nice_match > s->lookahead) nice_match = s->lookahead;
389 ;/* if ((uInt)best_len <= s->lookahead) return (uInt)best_len; */
390 ;/* return s->lookahead; */
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/zlib-1.2.3/contrib/masm686/
H A Dmatch.asm177 ; if ((uInt)nice_match > s->lookahead) nice_match = s->lookahead;
389 ;/* if ((uInt)best_len <= s->lookahead) return (uInt)best_len; */
390 ;/* return s->lookahead; */
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/zlib-1.2.3/contrib/masmx64/
H A Dgvmat64.asm217 ;;; if ((uInt)nice_match > s->lookahead) nice_match = s->lookahead;
476 ;;; if ((uInt)best_len <= s->lookahead) return (uInt)best_len;
477 ;;; return s->lookahead;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/zlib-1.2.3/contrib/masmx64/
H A Dgvmat64.asm217 ;;; if ((uInt)nice_match > s->lookahead) nice_match = s->lookahead;
476 ;;; if ((uInt)best_len <= s->lookahead) return (uInt)best_len;
477 ;;; return s->lookahead;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/zlib-1.2.3/contrib/masmx86/
H A Dgvmat32.asm173 ; if ((uInt)nice_match > s->lookahead) nice_match = s->lookahead;
525 ; return min(best_len,s->lookahead)
728 ;;; if ((uInt)nice_match > s->lookahead) nice_match = s->lookahead;
921 ;;; if ((uInt)best_len <= s->lookahead) return (uInt)best_len;
922 ;;; return s->lookahead;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/zlib-1.2.3/contrib/masmx86/
H A Dgvmat32.asm173 ; if ((uInt)nice_match > s->lookahead) nice_match = s->lookahead;
525 ; return min(best_len,s->lookahead)
728 ;;; if ((uInt)nice_match > s->lookahead) nice_match = s->lookahead;
921 ;;; if ((uInt)best_len <= s->lookahead) return (uInt)best_len;
922 ;;; return s->lookahead;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/router/busybox-1.x/miscutils/
H A Dhdparm.c1066 static unsigned long lookahead; variable
1601 args[2] = lookahead ? 0xaa : 0x55;
1602 print_flag_on_off(get_lookahead, "drive read-lookahead", lookahead);
1959 if (c == 'A') parse_opts(&get_lookahead, &set_lookahead, &lookahead, 0, 1);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/asm-i386/
H A Dprocessor.h277 unsigned char ftop, changed, lookahead, no_update, rm, alimit; member in struct:i387_soft_struct
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/flac-1.2.1/src/libFLAC/
H A Dstream_decoder.c187 FLAC__bool cached; /* true if there is a byte in lookahead */
190 FLAC__byte lookahead; /* temp storage when we need to look ahead one byte in the stream */ member in struct:FLAC__StreamDecoderPrivate
1376 x = (FLAC__uint32)decoder->private_->lookahead;
1407 decoder->private_->lookahead = (FLAC__byte)x;
1962 x = (FLAC__uint32)decoder->private_->lookahead;
1977 decoder->private_->lookahead = (FLAC__byte)x;
2187 decoder->private_->lookahead = (FLAC__byte)x;
2348 decoder->private_->lookahead = raw_header[raw_header_len-1]; /* back up as much as we can */
2361 decoder->private_->lookahead = raw_header[raw_header_len-1]; /* back up as much as we can */

Completed in 326 milliseconds

12