Searched refs:top (Results 1 - 25 of 464) sorted by relevance

1234567891011>>

/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/openssl/test/
H A Dmethtest.c70 METHOD_CTX *top,*tmp1,*tmp2; local
72 top=METH_new(x509_lookup()); /* get a top level context */
73 if (top == NULL) goto err;
76 if (top == NULL) goto err;
79 METH_push(top,METH_X509_CA_BY_SUBJECT,tmp1);
85 METH_push(top,METH_X509_CA_BY_SUBJECT,tmp2);
89 METH_push(top,METH_X509_BY_ISSUER,tmp);
93 METH_push(top,METH_X509_BY_ISSUER,tmp);
96 METH_init(top);
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/openssl-0.9.8e/test/
H A Dmethtest.c70 METHOD_CTX *top,*tmp1,*tmp2; local
72 top=METH_new(x509_lookup()); /* get a top level context */
73 if (top == NULL) goto err;
76 if (top == NULL) goto err;
79 METH_push(top,METH_X509_CA_BY_SUBJECT,tmp1);
85 METH_push(top,METH_X509_CA_BY_SUBJECT,tmp2);
89 METH_push(top,METH_X509_BY_ISSUER,tmp);
93 METH_push(top,METH_X509_BY_ISSUER,tmp);
96 METH_init(top);
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/zebra/ripngd/
H A Dripng_route.c82 struct route_node *top; local
88 /* Get top node for aggregation. */
89 top = route_node_get (ripng->table, p);
95 top->aggregate = aggregate;
98 for (rp = route_lock_node (top); rp; rp = route_next_until (rp, top))
107 if (rp != top && (sub = rp->aggregate) != NULL)
121 struct route_node *top; local
127 /* Get top node for aggregation. */
128 top
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/openssl/crypto/bn/
H A Dbn_shift.c71 if (bn_wexpand(r,a->top+1) == NULL) return(0);
72 r->top=a->top;
76 if (bn_wexpand(r,a->top+1) == NULL) return(0);
81 for (i=0; i<a->top; i++)
90 r->top++;
107 if (bn_wexpand(r,a->top) == NULL) return(0);
108 r->top=a->top;
114 for (i=a->top
[all...]
H A Dbn_word.c73 for (i=a->top-1; i>=0; i--)
91 if (a->top == 0) return(0);
94 for (i=a->top-1; i>=0; i--)
103 if ((a->top > 0) && (a->d[a->top-1] == 0))
104 a->top--;
122 if (bn_wexpand(a,a->top+1) == NULL) return(0);
126 if (i >= a->top)
137 if (i >= a->top)
138 a->top
[all...]
H A Dbn_rand.c118 static int bnrand(int pseudorand, BIGNUM *rnd, int bits, int top, int bottom) argument
141 /* make a random number and set the top and bottom bits */
177 if (top != -1)
179 if (top)
210 int BN_rand(BIGNUM *rnd, int bits, int top, int bottom) argument
212 return bnrand(0, rnd, bits, top, bottom);
215 int BN_pseudo_rand(BIGNUM *rnd, int bits, int top, int bottom) argument
217 return bnrand(1, rnd, bits, top, bottom);
221 int BN_bntest_rand(BIGNUM *rnd, int bits, int top, int bottom) argument
223 return bnrand(2, rnd, bits, top, botto
[all...]
H A Dbn_lib.c252 if (a->top == 0) return(0);
253 l=a->d[a->top-1];
255 i=(a->top-1)*BN_BITS2;
301 ret->top=0;
339 for (i=b->top>>2; i>0; i--,A+=4,B+=4)
354 switch (b->top&3)
360 * the switch table by doing a=top&3; a--; goto jump_table[a];
361 * which fails for top== 0 */
366 /* Now need to zero any data between b->top and b->max */
369 A= &(a[b->top]);
[all...]
H A Dbn_add.c117 if (a->top < b->top)
119 max=a->top;
120 min=b->top;
125 r->top=max;
154 r->top++;
180 if (a->top < b->top) /* hmm... should not be happening */
186 max=a->top;
187 min=b->top;
[all...]
H A Dbn_div.c106 dv->top=1;
222 div_n=sdiv->top;
223 num_n=snum->top;
231 wnum.top= div_n;
234 /* Get the top 2 words of sdiv */
235 /* i=sdiv->top; */
239 /* pointer to the 'top' of snum */
245 res->top=loop;
255 res->d[res->top-1]=1;
258 res->top
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/openssl-0.9.8e/crypto/bn/
H A Dbn_shift.c74 if (bn_wexpand(r,a->top+1) == NULL) return(0);
75 r->top=a->top;
79 if (bn_wexpand(r,a->top+1) == NULL) return(0);
84 for (i=0; i<a->top; i++)
93 r->top++;
114 if (bn_wexpand(r,a->top) == NULL) return(0);
115 r->top=a->top;
121 for (i=a->top
[all...]
H A Dbn_word.c77 for (i=a->top-1; i>=0; i--)
101 if (a->top == 0)
110 for (i=a->top-1; i>=0; i--)
119 if ((a->top > 0) && (a->d[a->top-1] == 0))
120 a->top--;
148 if (((BN_ULONG)(a->d[a->top - 1] + 1) == 0) &&
149 (bn_wexpand(a,a->top+1) == NULL))
154 if (i >= a->top)
165 if (i >= a->top)
[all...]
H A Dbn_rand.c118 static int bnrand(int pseudorand, BIGNUM *rnd, int bits, int top, int bottom) argument
141 /* make a random number and set the top and bottom bits */
177 if (top != -1)
179 if (top)
211 int BN_rand(BIGNUM *rnd, int bits, int top, int bottom) argument
213 return bnrand(0, rnd, bits, top, bottom);
216 int BN_pseudo_rand(BIGNUM *rnd, int bits, int top, int bottom) argument
218 return bnrand(1, rnd, bits, top, bottom);
222 int BN_bntest_rand(BIGNUM *rnd, int bits, int top, int bottom) argument
224 return bnrand(2, rnd, bits, top, botto
[all...]
H A Dbn_lib.c250 int i = a->top - 1;
308 ret->top=0;
347 for (i=b->top>>2; i>0; i--,A+=4,B+=4)
362 switch (b->top&3)
368 * the switch table by doing a=top&3; a--; goto jump_table[a];
369 * which fails for top== 0 */
376 memcpy(A,b->d,sizeof(b->d[0])*b->top);
401 * words <= b->dmax && top < words
415 r->top = b->top;
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/i386/math-emu/
H A Dfpu_tags.c20 fpu_tag_word |= 3 << ((top & 7)*2);
21 top++;
27 return (fpu_tag_word >> ((top & 7)*2)) & 3;
33 return (fpu_tag_word >> (((top+stnr) & 7)*2)) & 3;
45 int regnr = top;
54 int regnr = stnr+top;
92 int regnr = (top+stnr) & 7;
102 return ((fpu_tag_word >> (((top - 1) & 7)*2)) & 3) != TAG_Empty;
120 int regnr = top;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/fs/jfs/
H A Djfs_btree.h109 * top frame record the leaf page/entry selected.
119 struct btframe *top; member in struct:btstack
125 (btstack)->top = (btstack)->stack
128 ( (btstack)->top == &((btstack)->stack[MAXTREEHEIGHT-1]))
133 (BTSTACK)->top->bn = BN;\
134 (BTSTACK)->top->index = INDEX;\
135 ++(BTSTACK)->top;\
139 ( (btstack)->top == (btstack)->stack ? NULL : --(btstack)->top )
142 ( (btstack)->top
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/gettext-0.17/gettext-tools/examples/hello-tcl-tk/
H A Dhello.tcl17 pack .my.button -side top
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/db-4.7.25.NC/mod_db4/
H A Dskiplist.c52 sl->top = NULL;
155 m = sl->top;
203 if(!sl->top) {
205 sl->topend = sl->bottomend = sl->top = sl->bottom =
207 assert(sl->top);
208 sl->top->next = (struct skiplistnode *) NULL;
209 sl->top->data = (struct skiplistnode *) NULL;
210 sl->top->prev =(struct skiplistnode *) NULL;
211 sl->top->up = (struct skiplistnode *) NULL;
212 sl->top
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/zebra/ospfd/
H A Dospf_network.c44 ospf_if_add_allspfrouters (struct ospf *top, struct prefix *p, argument
49 ret = setsockopt_multicast_ipv4 (top->fd, IP_ADD_MEMBERSHIP,
63 ospf_if_drop_allspfrouters (struct ospf *top, struct prefix *p, argument
68 ret = setsockopt_multicast_ipv4 (top->fd, IP_DROP_MEMBERSHIP,
83 ospf_if_add_alldrouters (struct ospf *top, struct prefix *p, unsigned int argument
88 ret = setsockopt_multicast_ipv4 (top->fd, IP_ADD_MEMBERSHIP,
102 ospf_if_drop_alldrouters (struct ospf *top, struct prefix *p, unsigned int argument
107 ret = setsockopt_multicast_ipv4 (top->fd, IP_DROP_MEMBERSHIP,
121 ospf_if_ipmulticast (struct ospf *top, struct prefix *p, unsigned int ifindex) argument
130 ret = setsockopt (top
[all...]
H A Dospf_opaque.c163 ospf_opaque_type11_lsa_init (struct ospf *top) argument
165 if (top->opaque_lsa_self != NULL)
166 list_delete (top->opaque_lsa_self);
168 top->opaque_lsa_self = list_new ();
169 top->opaque_lsa_self->del = free_opaque_info_per_type;
170 top->t_opaque_lsa_self = NULL;
173 top->lsdb->new_lsa_hook = ospf_opaque_lsa_install_hook;
174 top->lsdb->del_lsa_hook = ospf_opaque_lsa_delete_hook;
180 ospf_opaque_type11_lsa_term (struct ospf *top) argument
183 top
490 struct ospf *top; local
552 struct ospf *top; local
966 struct ospf *top; local
1181 struct ospf *top; local
1364 struct ospf *top; local
1421 struct ospf *top; local
1531 struct ospf *top; local
1688 struct ospf *top; local
1735 struct ospf *top; local
1790 struct ospf *top; local
1978 struct ospf *top; local
2090 struct ospf *top; local
2149 struct ospf *top; local
2276 ospf_opaque_type11_lsa_rxmt_nbr_check(struct ospf *top) argument
2317 struct ospf *top; local
2363 struct ospf *top = NULL; local
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/ffmpeg-0.5.1/libavcodec/
H A Dlibdirac_libschro.c106 FfmpegDiracSchroQueueElement *top = queue->p_head; local
108 if (top != NULL) {
109 void *data = top->data;
112 av_freep (&top);
H A Dmjpeg.h128 #define PREDICT(ret, topleft, top, left, predictor)\
131 case 2: ret= top; break;\
133 case 4: ret= left + top - topleft; break;\
134 case 5: ret= left + ((top - topleft)>>1); break;\
135 case 6: ret= top + ((left - topleft)>>1); break;\
137 case 7: ret= (left + top)>>1; break;\
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/scripts/rt-tester/
H A Drt-tester.py80 def analyse(val, top, arg):
84 if top[0] == "M":
87 argval = top[2]
88 elif top[0] == "O":
93 # progress("%d %s %d" %(intval, top[1], argval))
95 if top[1] == "eq" and intval == argval:
97 if top[1] == "lt" and intval < argval:
99 if top[1] == "gt" and intval > argval:
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/fs/autofs4/
H A Dexpire.c50 struct dentry *top = dentry; local
68 struct autofs_info *ino = autofs4_dentry_ino(top);
82 * Calculate next entry in top down tree traversal.
109 struct dentry *top,
113 DPRINTK("top %p %.*s",
114 top, (int) top->d_name.len, top->d_name.name);
118 struct autofs_info *ino = autofs4_dentry_ino(top);
124 /* Timeout of a direct mount is determined by its top dentr
108 autofs4_direct_busy(struct vfsmount *mnt, struct dentry *top, unsigned long timeout, int do_now) argument
134 autofs4_tree_busy(struct vfsmount *mnt, struct dentry *top, unsigned long timeout, int do_now) argument
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/lib/
H A Dplist.c35 printk("top: %p, n: %p, p: %p\n", t, t->next, t->prev);
42 static void plist_check_list(struct list_head *top) argument
44 struct list_head *prev = top, *next = top->next;
46 plist_check_prev_next(top, prev, next);
47 while (next != top) {
50 plist_check_prev_next(top, prev, next);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/media/video/
H A Dbtcx-risc.c99 clips[n].c.top = 0;
107 clips[n].c.top = 0;
112 if (win->top < 0) {
113 /* top */
115 clips[n].c.top = 0;
117 clips[n].c.height = -win->top;
120 if (win->top + win->height > sheight) {
123 clips[n].c.top = sheight - win->top;
125 clips[n].c.height = win->height - clips[n].c.top;
[all...]

Completed in 159 milliseconds

1234567891011>>