Searched refs:hist (Results 1 - 14 of 14) sorted by relevance

/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/net/dccp/ccids/lib/
H A Dloss_interval.h27 extern void dccp_li_hist_delete(struct dccp_li_hist *hist);
37 dccp_li_hist_entry_new(struct dccp_li_hist *hist, argument
40 return kmem_cache_alloc(hist->dccplih_slab, prio);
43 static inline void dccp_li_hist_entry_delete(struct dccp_li_hist *hist, argument
47 kmem_cache_free(hist->dccplih_slab, entry);
50 extern void dccp_li_hist_purge(struct dccp_li_hist *hist,
55 extern int dccp_li_hist_interval_new(struct dccp_li_hist *hist,
H A Dloss_interval.c21 struct dccp_li_hist *hist = kmalloc(sizeof(*hist), GFP_ATOMIC); local
25 if (hist == NULL)
34 hist->dccplih_slab = kmem_cache_create(slab_name,
38 if (hist->dccplih_slab == NULL)
41 return hist;
45 kfree(hist);
46 hist = NULL;
52 void dccp_li_hist_delete(struct dccp_li_hist *hist) argument
54 const char* name = kmem_cache_name(hist
63 dccp_li_hist_purge(struct dccp_li_hist *hist, struct list_head *list) argument
121 dccp_li_hist_interval_new(struct dccp_li_hist *hist, struct list_head *list, const u64 seq_loss, const u8 win_loss) argument
[all...]
H A Dpacket_history.c46 struct dccp_tx_hist *hist = kmalloc(sizeof(*hist), GFP_ATOMIC); local
50 if (hist == NULL)
59 hist->dccptxh_slab = kmem_cache_create(slab_name,
63 if (hist->dccptxh_slab == NULL)
66 return hist;
70 kfree(hist);
71 hist = NULL;
77 void dccp_tx_hist_delete(struct dccp_tx_hist *hist) argument
79 const char* name = kmem_cache_name(hist
104 dccp_tx_hist_purge(struct dccp_tx_hist *hist, struct list_head *list) argument
116 dccp_tx_hist_purge_older(struct dccp_tx_hist *hist, struct list_head *list, struct dccp_tx_hist_entry *packet) argument
135 struct dccp_rx_hist *hist = kmalloc(sizeof(*hist), GFP_ATOMIC); local
166 dccp_rx_hist_delete(struct dccp_rx_hist *hist) argument
212 dccp_rx_hist_add_packet(struct dccp_rx_hist *hist, struct list_head *rx_list, struct list_head *li_list, struct dccp_rx_hist_entry *packet, u64 nonloss_seqno) argument
284 dccp_rx_hist_purge(struct dccp_rx_hist *hist, struct list_head *list) argument
[all...]
H A Dpacket_history.h68 extern void dccp_tx_hist_delete(struct dccp_tx_hist *hist);
71 dccp_tx_hist_entry_new(struct dccp_tx_hist *hist, argument
74 struct dccp_tx_hist_entry *entry = kmem_cache_alloc(hist->dccptxh_slab,
104 static inline void dccp_tx_hist_entry_delete(struct dccp_tx_hist *hist, argument
108 kmem_cache_free(hist->dccptxh_slab, entry);
111 extern void dccp_tx_hist_purge(struct dccp_tx_hist *hist,
114 extern void dccp_tx_hist_purge_older(struct dccp_tx_hist *hist,
135 extern void dccp_rx_hist_delete(struct dccp_rx_hist *hist);
138 dccp_rx_hist_entry_new(struct dccp_rx_hist *hist, argument
144 struct dccp_rx_hist_entry *entry = kmem_cache_alloc(hist
182 dccp_rx_hist_entry_delete(struct dccp_rx_hist *hist, struct dccp_rx_hist_entry *entry) argument
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/libvorbis-1.2.3/vq/
H A Dbookutil.h39 extern void build_tree_from_lengths(int vals, long *hist, long *lengths);
40 extern void build_tree_from_lengths0(int vals, long *hist, long *lengths);
H A Dhuffbuild.c130 long *hist=_ogg_calloc(vals,sizeof(long)); local
133 for(j=loval;j<vals;j++)hist[j]=guard;
141 hist[val]++;
149 build_tree_from_lengths0(vals,hist,lengths);
H A Dbookutil.c431 void build_tree_from_lengths(int vals, long *hist, long *lengths){ argument
435 memcpy(histsave,hist,vals*sizeof(long));
449 if(least==-1 || hist[j]<=least){
450 least=hist[j];
455 if((least==-1 || hist[j]<=least) && membership[j]!=first){
456 least=hist[j];
465 least=hist[first]+hist[second];
469 hist[j]=least;
500 void build_tree_from_lengths0(int vals, long *hist, lon argument
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/ffmpeg-0.5.1/libavcodec/
H A Dra288.c118 * @param hist pointer to the input history of the filter
124 float *hist, float *out2, const float *window)
131 apply_window(work, window, hist, order + n + non_rec);
148 static void backward_filter(float *hist, float *rec, const float *window, argument
154 do_hybrid_window(order, n, non_rec, temp, hist, rec, window);
159 memmove(hist, hist + n, move_size*sizeof(*hist));
123 do_hybrid_window(int order, int n, int non_rec, float *out, float *hist, float *out2, const float *window) argument
H A Ddvdsubenc.c97 unsigned long hist[256]; local
107 hist[i] = 0;
115 hist[color] += alpha;
121 if (hist[i] > hmax) {
123 hmax = hist[i];
129 av_log(NULL, AV_LOG_DEBUG, "dvd_subtitle hist[%d]=%ld -> col %d\n",
130 imax, hist[imax], color);
132 hist[imax] = 0;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/parisc/kernel/
H A Dirq.c201 int hist = action->cr16_hist[k]; local
203 if (hist) {
204 avg += hist;
208 if (hist > max) max = hist;
209 if (hist < min) min = hist;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/zebra/lib/
H A Dvty.h64 char *hist[VTY_MAXHIST]; member in struct:vty
H A Dvty.c525 length = strlen (vty->hist[vty->hp]);
526 memcpy (vty->buf, vty->hist[vty->hp], length);
550 if (vty->hist[try_index] == NULL)
570 if (vty->hist[try_index] == NULL)
1085 if (vty->hist[index])
1086 if (strcmp (vty->buf, vty->hist[index]) == 0)
1093 if (vty->hist[vty->hindex])
1094 XFREE (MTYPE_VTY_HIST, vty->hist[vty->hindex]);
1095 vty->hist[vty->hindex] = XSTRDUP (MTYPE_VTY_HIST, vty->buf);
1592 memset (vty->hist,
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/ntpclient/
H A Denvelope71 if (/^hist/) { $st=$A[2]*$scale; print RN "$st $A[4]\n"; print RX "$st $A[5]\n";}
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/router/ntpclient/
H A Denvelope71 if (/^hist/) { $st=$A[2]*$scale; print RN "$st $A[4]\n"; print RX "$st $A[5]\n";}

Completed in 93 milliseconds