Searched refs:start_index (Results 1 - 21 of 21) sorted by relevance

/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/mm/
H A Dfadvise.c33 pgoff_t start_index; local
82 start_index = offset >> PAGE_CACHE_SHIFT;
86 nrpages = end_index - start_index + 1;
91 start_index,
103 start_index = (offset+(PAGE_CACHE_SIZE-1)) >> PAGE_CACHE_SHIFT;
106 if (end_index >= start_index)
107 invalidate_mapping_pages(mapping, start_index,
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/gettext-0.17/gettext-tools/gnulib-lib/
H A Dgl_list.c103 gl_list_search_from (gl_list_t list, size_t start_index, const void *elt) argument
107 ->search_from_to (list, start_index, size, elt);
111 gl_list_search_from_to (gl_list_t list, size_t start_index, size_t end_index, const void *elt) argument
114 ->search_from_to (list, start_index, end_index, elt);
126 gl_list_indexof_from (gl_list_t list, size_t start_index, const void *elt) argument
130 ->indexof_from_to (list, start_index, size, elt);
134 gl_list_indexof_from_to (gl_list_t list, size_t start_index, size_t end_index, const void *elt) argument
137 ->indexof_from_to (list, start_index, end_index, elt);
210 gl_list_iterator_from_to (gl_list_t list, size_t start_index, size_t end_index) argument
213 ->iterator_from_to (list, start_index, end_inde
237 gl_sortedlist_search_from_to(gl_list_t list, gl_listelement_compar_fn compar, size_t start_index, size_t end_index, const void *elt) argument
252 gl_sortedlist_indexof_from_to(gl_list_t list, gl_listelement_compar_fn compar, size_t start_index, size_t end_index, const void *elt) argument
[all...]
H A Dgl_list.h186 extern gl_list_node_t gl_list_search_from (gl_list_t list, size_t start_index,
193 size_t start_index,
204 extern size_t gl_list_indexof_from (gl_list_t list, size_t start_index,
211 size_t start_index, size_t end_index,
279 start_index <= i < end_index, of a list.
283 size_t start_index,
323 size_t start_index,
346 size_t start_index,
388 gl_list_node_t (*search_from_to) (gl_list_t list, size_t start_index,
390 size_t (*indexof_from_to) (gl_list_t list, size_t start_index,
535 gl_list_search_from(gl_list_t list, size_t start_index, const void *elt) argument
544 gl_list_search_from_to(gl_list_t list, size_t start_index, size_t end_index, const void *elt) argument
562 gl_list_indexof_from(gl_list_t list, size_t start_index, const void *elt) argument
571 gl_list_indexof_from_to(gl_list_t list, size_t start_index, size_t end_index, const void *elt) argument
659 gl_list_iterator_from_to(gl_list_t list, size_t start_index, size_t end_index) argument
690 gl_sortedlist_search_from_to(gl_list_t list, gl_listelement_compar_fn compar, size_t start_index, size_t end_index, const void *elt) argument
707 gl_sortedlist_indexof_from_to(gl_list_t list, gl_listelement_compar_fn compar, size_t start_index, size_t end_index, const void *elt) argument
[all...]
H A Dgl_anylinked_list2.h215 gl_linked_search_from_to (gl_list_t list, size_t start_index, size_t end_index, argument
220 if (!(start_index <= end_index && end_index <= count))
249 if (start_index > 0)
250 /* Look whether found's index is < start_index. */
255 if (--start_index == 0)
299 end_index -= start_index;
301 for (; start_index > 0; start_index--)
312 /* The matches must have all been at indices < start_index or
318 if (start_index >
368 gl_linked_indexof_from_to(gl_list_t list, size_t start_index, size_t end_index, const void *elt) argument
796 gl_linked_iterator_from_to(gl_list_t list, size_t start_index, size_t end_index) argument
[all...]
H A Dgl_array_list.c170 gl_array_indexof_from_to (gl_list_t list, size_t start_index, size_t end_index, argument
175 if (!(start_index <= end_index && end_index <= count))
179 if (start_index < end_index)
186 for (i = start_index;;)
199 for (i = start_index;;)
213 gl_array_search_from_to (gl_list_t list, size_t start_index, size_t end_index, argument
216 size_t index = gl_array_indexof_from_to (list, start_index, end_index, elt);
433 gl_array_iterator_from_to (gl_list_t list, size_t start_index, size_t end_index) argument
437 if (!(start_index <= end_index && end_index <= list->count))
443 result.p = list->elements + start_index;
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/video/
H A Dcfbimgblt.c80 u32 start_index,
98 if (start_index) {
99 u32 start_mask = ~(FB_SHIFT_HIGH(~(u32)0, start_index));
101 shift = start_index;
131 start_index += pitch_index;
132 start_index &= 32 - 1;
140 u32 start_index,
163 if (start_index) {
164 u32 start_mask = ~(FB_SHIFT_HIGH(~(u32)0,start_index));
166 shift = start_index;
78 color_imageblit(const struct fb_image *image, struct fb_info *p, u8 __iomem *dst1, u32 start_index, u32 pitch_index) argument
137 slow_imageblit(const struct fb_image *image, struct fb_info *p, u8 __iomem *dst1, u32 fgcolor, u32 bgcolor, u32 start_index, u32 pitch_index) argument
264 u32 fgcolor, bgcolor, start_index, bitstart, pitch_index = 0; local
[all...]
H A Dsysimgblt.c57 void *dst1, u32 start_index, u32 pitch_index)
74 if (start_index) {
76 start_index));
78 shift = start_index;
109 start_index += pitch_index;
110 start_index &= 32 - 1;
117 u32 start_index, u32 pitch_index)
139 if (start_index) {
140 u32 start_mask = ~(FB_SHIFT_HIGH(~(u32)0,start_index));
142 shift = start_index;
56 color_imageblit(const struct fb_image *image, struct fb_info *p, void *dst1, u32 start_index, u32 pitch_index) argument
115 slow_imageblit(const struct fb_image *image, struct fb_info *p, void *dst1, u32 fgcolor, u32 bgcolor, u32 start_index, u32 pitch_index) argument
245 u32 fgcolor, bgcolor, start_index, bitstart, pitch_index = 0; local
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/ia64/sn/pci/pcibr/
H A Dpcibr_ate.c82 int start_index; local
93 start_index =
96 if (start_index >= 0)
97 mark_ate(ate_resource, start_index, ate_needed, ate_needed);
102 return start_index;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/flac-1.2.1/src/flac/
H A Dutils.h41 unsigned start_track, start_index; member in struct:__anon841
H A Dutils.c238 if(!local__parse_cue_(start, s, &spec->start_track, &spec->start_index))
267 skip_spec->value.samples = local__find_closest_cue_(cuesheet, cue_spec->start_track, cue_spec->start_index, total_samples, /*look_forward=*/false);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/infiniband/hw/mthca/
H A Dmthca_mr.c247 int start_index, u64 *buffer_list, int list_len)
263 start_index * 8);
289 start_index += i;
315 struct mthca_mtt *mtt, int start_index,
322 start_index * sizeof (u64);
329 struct mthca_mtt *mtt, int start_index,
335 int s = start_index * sizeof (u64);
354 int start_index, u64 *buffer_list, int list_len)
361 return __mthca_write_mtt(dev, mtt, start_index, buffer_list, list_len);
366 mthca_arbel_write_mtt_seg(dev, mtt, start_index,
246 __mthca_write_mtt(struct mthca_dev *dev, struct mthca_mtt *mtt, int start_index, u64 *buffer_list, int list_len) argument
314 mthca_tavor_write_mtt_seg(struct mthca_dev *dev, struct mthca_mtt *mtt, int start_index, u64 *buffer_list, int list_len) argument
328 mthca_arbel_write_mtt_seg(struct mthca_dev *dev, struct mthca_mtt *mtt, int start_index, u64 *buffer_list, int list_len) argument
353 mthca_write_mtt(struct mthca_dev *dev, struct mthca_mtt *mtt, int start_index, u64 *buffer_list, int list_len) argument
[all...]
H A Dmthca_dev.h472 int start_index, u64 *buffer_list, int list_len);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/net/mlx4/
H A Dmr.c369 int start_index, int npages, u64 *page_list)
386 mtt_entry[0] = cpu_to_be64(mlx4_mtt_addr(dev, mtt) + start_index * 8);
405 start_index += i;
368 mlx4_write_mtt(struct mlx4_dev *dev, struct mlx4_mtt *mtt, int start_index, int npages, u64 *page_list) argument
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/powerpc/kernel/
H A Diommu.c445 unsigned long start_index, end_index; local
507 start_index = tbl->it_offset | (entries_per_4g - 1);
508 start_index -= tbl->it_offset;
512 for (index = start_index; index < end_index - 1; index += entries_per_4g)
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/linux/mlx4/
H A Ddevice.h310 int start_index, int npages, u64 *page_list);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/scsi/
H A D3w-9xxx.c626 unsigned char event_index, start_index; local
773 start_index = tw_dev->error_index;
779 start_index = 0;
781 event_index = (start_index + sequence_id - tw_dev->event_queue[start_index]->sequence_id + 1) % TW_Q_LENGTH;
802 start_index = tw_dev->error_index;
808 start_index = 0;
810 event_index = (start_index + sequence_id - tw_dev->event_queue[start_index]->sequence_id - 1) % TW_Q_LENGTH;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/ffmpeg-0.5.1/
H A Dffplay.c2192 int start_index, stream_index; local
2196 start_index = is->video_stream;
2198 start_index = is->audio_stream;
2200 start_index = is->subtitle_stream;
2201 if (start_index < (codec_type == CODEC_TYPE_SUBTITLE ? -1 : 0))
2203 stream_index = start_index;
2214 if (stream_index == start_index)
2234 stream_component_close(is, start_index);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/char/
H A Dsynclink.c5376 int start_index; local
5393 frame_start_index = start_index = end_index = info->current_rx_buffer;
5429 if ( start_index == end_index )
5451 start_index = frame_start_index;
5455 *((unsigned long *)&(info->rx_buffer_list[start_index++].count)) = DMABUFFERSIZE;
5458 if ( start_index == info->rx_buffer_count )
5459 start_index = 0;
5461 } while( start_index != end_index );
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/fs/squashfs/
H A Dinode.c1668 int start_index = page->index & ~mask; local
1669 int end_index = start_index | mask;
1720 for (i = start_index; i <= end_index && byte_offset < bytes;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/samba-3.0.13/source/smbd/
H A Dreply.c3278 int start_index = SVAL(inbuf,smb_vwv1); local
3295 DEBUG(3,("printqueue start_index=%d max_count=%d\n",
3296 start_index, max_count));
3304 int first = (max_count>0?start_index:start_index+max_count+1);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/s390/net/
H A Dqeth_main.c4317 int start_index; local
4328 start_index = queue->next_buf_to_fill;
4357 qeth_flush_buffers(queue, 0, start_index, flush_count);
4387 qeth_flush_buffers(queue, 0, start_index, flush_count);
4398 start_index = queue->next_buf_to_fill;
4408 qeth_flush_buffers(queue, 0, start_index, flush_count);

Completed in 189 milliseconds