Searched refs:consumed (Results 1 - 25 of 50) sorted by relevance

12

/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/lib/
H A Dts_kmp.c48 unsigned int i, q = 0, text_len, consumed = state->offset; local
52 text_len = conf->get_next_block(consumed, &text, conf, state);
63 state->offset = consumed + i + 1;
68 consumed += text_len;
H A Dtextsearch.c196 static unsigned int get_linear_data(unsigned int consumed, const u8 **dst, argument
202 if (likely(consumed < st->len)) {
203 *dst = st->data + consumed;
204 return st->len - consumed;
H A Dts_bm.c60 unsigned int i, text_len, consumed = state->offset; local
65 text_len = conf->get_next_block(consumed, &text, conf, state);
79 return consumed += (shift-(bm->patlen-1));
86 consumed += text_len;
H A Dts_fsm.c143 unsigned block_len = 0, strict, consumed = state->offset; local
147 ({ consumed += block_idx; \
149 block_len = conf->get_next_block(consumed, &data, conf, state); })
167 match_start = consumed + block_idx;
241 match_start = consumed + block_idx;
255 state->offset = consumed + block_idx;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/ffmpeg-0.5.1/libavcodec/
H A D8svx.c49 int consumed = buf_size; local
71 return consumed;
H A Dresample.c327 int consumed; local
330 nb_samples1 = av_resample(s->resample_context, buftmp3[i], bufin[i], &consumed, nb_samples, lenout, is_last);
331 s->temp_len= nb_samples - consumed;
333 memcpy(s->temp[i], bufin[i] + consumed, s->temp_len*sizeof(short));
H A Dh264_parser.c131 int src_length, dst_length, consumed; local
145 ptr= ff_h264_decode_nal(h, buf, &dst_length, &consumed, src_length);
229 buf += consumed;
H A Dtruespeech.c341 int consumed = 0; local
350 truespeech_read_frame(c, buf + consumed);
351 consumed += 32;
372 *data_size = consumed * 15;
374 return consumed;
H A Dresample2.c211 int av_resample(AVResampleContext *c, short *dst, short *src, int *consumed, int src_size, int dst_size, int update_ctx){ argument
277 *consumed= FFMAX(index, 0) >> c->phase_shift;
H A Dh264.h552 * @param consumed is the number of bytes used as input
557 const uint8_t *ff_h264_decode_nal(H264Context *h, const uint8_t *src, int *dst_length, int *consumed, int length);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/libxml2-2.7.2/
H A DtestReader.c42 static int consumed = 0; variable
49 printf("\t --consumed: count the number of bytes consumed\n");
92 if (consumed)
93 printf("%ld bytes consumed by parser\n", xmlTextReaderByteConsumed(reader));
120 else if ((!strcmp(argv[i], "-consumed")) || (!strcmp(argv[i], "--consumed")))
121 consumed++;
H A Dparser.c116 unsigned long consumed = 0; local
133 consumed = ctxt->input->consumed +
136 consumed += ctxt->sizeentities;
138 if ((size < XML_PARSER_NON_LINEAR * consumed) &&
139 (ctxt->nbentities * 3 < XML_PARSER_NON_LINEAR * consumed))
151 consumed = ctxt->input->consumed +
154 consumed += ctxt->sizeentities;
160 if (size * 3 < consumed * XML_PARSER_NON_LINEA
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/scsi/aacraid/
H A Ddpcsup.c59 int consumed = 0; local
137 consumed++;
141 if (consumed > aac_config.peak_fibs)
142 aac_config.peak_fibs = consumed;
143 if (consumed == 0)
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/samba-3.0.13/source/libsmb/
H A Dclidfs.c476 uint16 *consumed)
512 *consumed = SVAL( rdata, 0 );
565 uint16 consumed; local
606 if ( !cli_dfs_get_referral(cli_ipc, fullpath, &refs, &num_refs, &consumed)
617 consumed = MIN(pathlen, consumed );
618 pstrcpy( targetpath, &fullpath[consumed/2] );
632 /* parse out the consumed mount path */
635 fullpath[consumed/2] = '\0';
474 cli_dfs_get_referral( struct cli_state *cli, const char *path, CLIENT_DFS_REFERRAL**refs, size_t *num_refs, uint16 *consumed) argument
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/media/dvb/dvb-core/
H A Ddvb_ringbuffer.c225 int consumed; local
237 consumed = (idx - rbuf->pread) % rbuf->size;
239 while((dvb_ringbuffer_avail(rbuf) - consumed) > DVB_RINGBUFFER_PKTHDRSIZE) {
250 consumed += curpktlen + DVB_RINGBUFFER_PKTHDRSIZE;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/linux/
H A Dtextsearch.h66 * @consumed: number of bytes consumed by the caller
73 * of the block or 0 if at the end. consumed == 0 indicates
76 unsigned int (*get_next_block)(unsigned int consumed,
H A Drelay.h39 size_t subbufs_consumed; /* count of sub-buffers consumed */
50 size_t bytes_consumed; /* bytes consumed in cur read subbuf */
176 size_t consumed);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/kernel/
H A Drelay.c640 * relay_subbufs_consumed - update the buffer's sub-buffers-consumed count
645 * Adds to the channel buffer's consumed sub-buffer count.
646 * subbufs_consumed should be the number of sub-buffers newly consumed,
647 * not the total consumed.
799 * relay_file_read_consume - update the consumed count for the buffer
836 size_t consumed = buf->subbufs_consumed; local
841 if (produced == consumed)
846 if (unlikely(produced - consumed >= n_subbufs)) {
847 consumed = produced - n_subbufs + 1;
848 buf->subbufs_consumed = consumed;
906 size_t consumed = buf->subbufs_consumed % n_subbufs; local
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/gettext-0.17/gettext-tools/gnulib-lib/libcroco/
H A Dcr-input.c444 gulong consumed = 0, local
463 nb_bytes_left, a_char, &consumed);
467 PRIVATE (a_this)->next_byte_index += consumed;
644 *the number of characters actually consumed.
653 *Returns CR_OK if at least one character has been consumed, an error code
690 *consume. After return, holds the number of white spaces actually consumed.
750 glong consumed = 0, local
770 nb_bytes_left, a_char, &consumed);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/gettext-0.17/gnulib-local/lib/libcroco/
H A Dcr-input.c444 gulong consumed = 0, local
463 nb_bytes_left, a_char, &consumed);
467 PRIVATE (a_this)->next_byte_index += consumed;
644 *the number of characters actually consumed.
653 *Returns CR_OK if at least one character has been consumed, an error code
690 *consume. After return, holds the number of white spaces actually consumed.
750 glong consumed = 0, local
770 nb_bytes_left, a_char, &consumed);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/ffmpeg-0.5.1/libavformat/
H A Drdt.c199 int consumed = 0, set_id, seq_no, stream_id, is_keyframe, local
213 consumed += pkt_len;
293 return consumed + (get_bits_count(&gb) >> 3);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/cris/arch-v32/drivers/
H A Dcryptocop.c97 size_t consumed; member in struct:cryptocop_tfrm_ctx
378 error = create_md5_pad(alloc_flag, tc->consumed, &pad, &plen);
389 error = create_sha1_pad(alloc_flag, tc->consumed, &pad, &plen);
400 if (tc->consumed % tc->blocklength){
644 DEBUG(printk("append_input_descriptors: pushing output, consumed %d produced %d bytes.\n", tc->consumed, tc->produced));
711 .consumed = 0,
730 .consumed = 0,
750 .consumed = 0,
1057 * no pending data to process (i.e. the consumed lengt
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/pci/
H A Dpci-sysfs.c59 ssize_t consumed = -EINVAL; local
63 consumed = count;
65 return consumed;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/scsi/aic7xxx/
H A Daic7xxx_osm.c418 int consumed; local
424 consumed = 1;
433 return (consumed);
1484 int consumed; local
1488 consumed = ahc_linux_map_seg(ahc, scb,
1490 sg += consumed;
1491 scb->sg_count += consumed;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/infiniband/hw/ipath/
H A Dipath_file_ops.c2063 size_t consumed, copy; local
2080 consumed = sizeof(cmd.type);
2127 if ((count - consumed) < copy) {
2137 consumed += copy;
2196 ret = consumed;

Completed in 406 milliseconds

12