Searched refs:right (Results 1 - 25 of 1093) sorted by relevance

1234567891011>>

/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/linux/linux-2.6/arch/parisc/math-emu/
H A Dhppa.h28 #define Shiftdouble(left,right,amount,dest) \
29 /* int left, right, amount, dest; */ \
30 dest = ((left) << (32-(amount))) | ((unsigned int)(right) >> (amount))
33 #define Variableshiftdouble(left,right,amount,dest) \
34 /* unsigned int left, right; int amount, dest; */ \
35 if (amount == 0) dest = right; \
37 ((unsigned) right >> (amount))
40 #define Variable_shift_double(left,right,amount,dest) \
41 /* unsigned int left, right; int amount, dest; */ \
42 dest = (left << (32-(amount))) | ((unsigned) right >> (amoun
[all...]
H A Dsfcmp.c55 register unsigned int left, right; local
60 right = *rightptr;
66 || (Sgl_exponent(right) == SGL_INFINITY_EXPONENT) )
75 ( (Sgl_exponent(right) == SGL_INFINITY_EXPONENT)
76 && Sgl_isnotzero_mantissa(right)
77 && (Exception(cond) || Sgl_isone_signaling(right)) ) )
92 ((Sgl_exponent(right) == SGL_INFINITY_EXPONENT)
93 && Sgl_isnotzero_mantissa(right)) )
103 Sgl_xortointp1(left,right,xorresult);
109 && Sgl_iszero_exponentmantissa(right) )
[all...]
H A Dsfsub.c55 register unsigned int left, right, result, extent; local
64 right = *rightptr;
68 Sgl_xortointp1(left,right,/*to*/save);
77 if (Sgl_isnotnan(right))
79 if (Sgl_isinfinity(right) && save==0)
113 else if (Sgl_is_signalingnan(right))
119 Sgl_set_quiet(right);
120 *dstptr = right;
133 if (Sgl_isinfinity_exponent(right))
135 if (Sgl_iszero_mantissa(right))
[all...]
H A Dsfadd.c55 register unsigned int left, right, result, extent; local
66 right = *rightptr;
70 Sgl_xortointp1(left,right,/*to*/save);
79 if (Sgl_isnotnan(right))
81 if (Sgl_isinfinity(right) && save!=0)
115 else if (Sgl_is_signalingnan(right))
121 Sgl_set_quiet(right);
122 *dstptr = right;
135 if (Sgl_isinfinity_exponent(right))
137 if (Sgl_iszero_mantissa(right))
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/linux/linux-2.6.36/arch/parisc/math-emu/
H A Dhppa.h28 #define Shiftdouble(left,right,amount,dest) \
29 /* int left, right, amount, dest; */ \
30 dest = ((left) << (32-(amount))) | ((unsigned int)(right) >> (amount))
33 #define Variableshiftdouble(left,right,amount,dest) \
34 /* unsigned int left, right; int amount, dest; */ \
35 if (amount == 0) dest = right; \
37 ((unsigned) right >> (amount))
40 #define Variable_shift_double(left,right,amount,dest) \
41 /* unsigned int left, right; int amount, dest; */ \
42 dest = (left << (32-(amount))) | ((unsigned) right >> (amoun
[all...]
H A Dsfcmp.c55 register unsigned int left, right; local
60 right = *rightptr;
66 || (Sgl_exponent(right) == SGL_INFINITY_EXPONENT) )
75 ( (Sgl_exponent(right) == SGL_INFINITY_EXPONENT)
76 && Sgl_isnotzero_mantissa(right)
77 && (Exception(cond) || Sgl_isone_signaling(right)) ) )
92 ((Sgl_exponent(right) == SGL_INFINITY_EXPONENT)
93 && Sgl_isnotzero_mantissa(right)) )
103 Sgl_xortointp1(left,right,xorresult);
109 && Sgl_iszero_exponentmantissa(right) )
[all...]
H A Dsfsub.c55 register unsigned int left, right, result, extent; local
64 right = *rightptr;
68 Sgl_xortointp1(left,right,/*to*/save);
77 if (Sgl_isnotnan(right))
79 if (Sgl_isinfinity(right) && save==0)
113 else if (Sgl_is_signalingnan(right))
119 Sgl_set_quiet(right);
120 *dstptr = right;
133 if (Sgl_isinfinity_exponent(right))
135 if (Sgl_iszero_mantissa(right))
[all...]
H A Dsfadd.c55 register unsigned int left, right, result, extent; local
66 right = *rightptr;
70 Sgl_xortointp1(left,right,/*to*/save);
79 if (Sgl_isnotnan(right))
81 if (Sgl_isinfinity(right) && save!=0)
115 else if (Sgl_is_signalingnan(right))
121 Sgl_set_quiet(right);
122 *dstptr = right;
135 if (Sgl_isinfinity_exponent(right))
137 if (Sgl_iszero_mantissa(right))
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src/router/lighttpd-1.4.39/src/
H A Dsplaytree.c67 N.left = N.right = NULL;
76 y = t->left; /* rotate right */
77 t->left = y->right;
78 y->right = t;
79 t->size = node_size(t->left) + node_size(t->right) + 1;
83 r->left = t; /* link right */
86 r_size += 1+node_size(r->right);
88 if (t->right == NULL) break;
89 if (compare(i, t->right->key) > 0) {
90 y = t->right; /* rotat
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt/router/lighttpd-1.4.39/src/
H A Dsplaytree.c67 N.left = N.right = NULL;
76 y = t->left; /* rotate right */
77 t->left = y->right;
78 y->right = t;
79 t->size = node_size(t->left) + node_size(t->right) + 1;
83 r->left = t; /* link right */
86 r_size += 1+node_size(r->right);
88 if (t->right == NULL) break;
89 if (compare(i, t->right->key) > 0) {
90 y = t->right; /* rotat
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/router/lighttpd-1.4.39/src/
H A Dsplaytree.c67 N.left = N.right = NULL;
76 y = t->left; /* rotate right */
77 t->left = y->right;
78 y->right = t;
79 t->size = node_size(t->left) + node_size(t->right) + 1;
83 r->left = t; /* link right */
86 r_size += 1+node_size(r->right);
88 if (t->right == NULL) break;
89 if (compare(i, t->right->key) > 0) {
90 y = t->right; /* rotat
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src/router/neon/src/
H A Dne_oldacl.c48 static ne_buffer *acl_body(const ne_acl_entry *right, int count) argument
60 type = (right[m].type == ne_acl_grant ? "grant" : "deny");
64 switch (right[m].apply) {
69 ne_buffer_concat(body, "<property><", right[m].principal,
73 ne_buffer_concat(body, "<href>", right[m].principal,
80 if (right[m].read == 0)
84 if (right[m].read_acl == 0)
88 if (right[m].write == 0)
92 if (right[m].write_acl == 0)
96 if (right[
[all...]
H A Dne_acl3744.c50 static ne_buffer *acl_body(const ne_acl_entry *right, int count) argument
62 type = (right[m].type == ne_acl_grant ? "grant" : "deny");
66 switch (right[m].target) {
80 ne_buffer_concat(body, "<property><", right[m].tname,
84 ne_buffer_concat(body, "<href>", right[m].tname,
92 if ((right[m].privileges & NE_ACL_READ) == NE_ACL_READ)
97 if ((right[m].privileges & NE_ACL_WRITE) == NE_ACL_WRITE)
102 if ((right[m].privileges & NE_ACL_WRITE_PROPERTIES) == NE_ACL_WRITE_PROPERTIES)
107 if ((right[m].privileges & NE_ACL_WRITE_CONTENT) == NE_ACL_WRITE_CONTENT)
112 if ((right[
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt/router/neon/src/
H A Dne_oldacl.c48 static ne_buffer *acl_body(const ne_acl_entry *right, int count) argument
60 type = (right[m].type == ne_acl_grant ? "grant" : "deny");
64 switch (right[m].apply) {
69 ne_buffer_concat(body, "<property><", right[m].principal,
73 ne_buffer_concat(body, "<href>", right[m].principal,
80 if (right[m].read == 0)
84 if (right[m].read_acl == 0)
88 if (right[m].write == 0)
92 if (right[m].write_acl == 0)
96 if (right[
[all...]
H A Dne_acl3744.c50 static ne_buffer *acl_body(const ne_acl_entry *right, int count) argument
62 type = (right[m].type == ne_acl_grant ? "grant" : "deny");
66 switch (right[m].target) {
80 ne_buffer_concat(body, "<property><", right[m].tname,
84 ne_buffer_concat(body, "<href>", right[m].tname,
92 if ((right[m].privileges & NE_ACL_READ) == NE_ACL_READ)
97 if ((right[m].privileges & NE_ACL_WRITE) == NE_ACL_WRITE)
102 if ((right[m].privileges & NE_ACL_WRITE_PROPERTIES) == NE_ACL_WRITE_PROPERTIES)
107 if ((right[m].privileges & NE_ACL_WRITE_CONTENT) == NE_ACL_WRITE_CONTENT)
112 if ((right[
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/router/neon/src/
H A Dne_oldacl.c48 static ne_buffer *acl_body(const ne_acl_entry *right, int count) argument
60 type = (right[m].type == ne_acl_grant ? "grant" : "deny");
64 switch (right[m].apply) {
69 ne_buffer_concat(body, "<property><", right[m].principal,
73 ne_buffer_concat(body, "<href>", right[m].principal,
80 if (right[m].read == 0)
84 if (right[m].read_acl == 0)
88 if (right[m].write == 0)
92 if (right[m].write_acl == 0)
96 if (right[
[all...]
H A Dne_acl3744.c50 static ne_buffer *acl_body(const ne_acl_entry *right, int count) argument
62 type = (right[m].type == ne_acl_grant ? "grant" : "deny");
66 switch (right[m].target) {
80 ne_buffer_concat(body, "<property><", right[m].tname,
84 ne_buffer_concat(body, "<href>", right[m].tname,
92 if ((right[m].privileges & NE_ACL_READ) == NE_ACL_READ)
97 if ((right[m].privileges & NE_ACL_WRITE) == NE_ACL_WRITE)
102 if ((right[m].privileges & NE_ACL_WRITE_PROPERTIES) == NE_ACL_WRITE_PROPERTIES)
107 if ((right[m].privileges & NE_ACL_WRITE_CONTENT) == NE_ACL_WRITE_CONTENT)
112 if ((right[
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/toolchains/hndtools-arm-linux-2.6.36-uclibc-4.5.3/share/libtool/libltdl/
H A Dslist.c37 static SList * slist_sort_merge (SList *left, SList *right,
273 slist_sort_merge (SList *left, SList *right, SListCompare *compare, argument
280 while (left && right)
282 if ((*compare) (left, right, userdata) <= 0)
289 insert = insert->next = right;
290 right = right->next;
294 insert->next = left ? left : right;
309 SList *left, *right; local
316 right
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src/router/ffmpeg/libavcodec/alpha/
H A Dmotion_est_mvi_asm.S72 t2: right_u -> right hi -> right
74 t4: ref right
78 t7: right_u -> right hi -> right
80 t9: ref right
83 tb: right lo
85 td: error right */
92 ldq t4, 8(a1) # ref right
100 ldq t9, 8(a1) # ref right
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt/router/ffmpeg/libavcodec/alpha/
H A Dmotion_est_mvi_asm.S72 t2: right_u -> right hi -> right
74 t4: ref right
78 t7: right_u -> right hi -> right
80 t9: ref right
83 tb: right lo
85 td: error right */
92 ldq t4, 8(a1) # ref right
100 ldq t9, 8(a1) # ref right
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/router/ffmpeg/libavcodec/alpha/
H A Dmotion_est_mvi_asm.S72 t2: right_u -> right hi -> right
74 t4: ref right
78 t7: right_u -> right hi -> right
80 t9: ref right
83 tb: right lo
85 td: error right */
92 ldq t4, 8(a1) # ref right
100 ldq t9, 8(a1) # ref right
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/linux/linux-2.6.36/scripts/kconfig/
H A Dexpr.c39 e->right.expr = e2;
49 e->right.sym = s2;
86 e->right.sym = org->right.sym;
92 e->right.expr = expr_copy(org->right.expr);
121 expr_free(e->right.expr);
139 __expr_eliminate_eq(type, &e1->right.expr, &e2);
144 __expr_eliminate_eq(type, &e1, &e2->right.expr);
203 return e1->left.sym == e2->left.sym && e1->right
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/linux/linux-2.6/scripts/kconfig/
H A Dexpr.c39 e->right.expr = e2;
49 e->right.sym = s2;
86 e->right.sym = org->right.sym;
92 e->right.expr = expr_copy(org->right.expr);
121 expr_free(e->right.expr);
139 __expr_eliminate_eq(type, &e1->right.expr, &e2);
144 __expr_eliminate_eq(type, &e1, &e2->right.expr);
203 return e1->left.sym == e2->left.sym && e1->right
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src/router/dnsmasq/src/
H A Dpoll.c50 nfds_t left, right, mid; local
52 if ((right = nfds) == 0)
59 if (right == left + 1)
60 return (pollfds[left].fd >= fd) ? left : right;
62 mid = (left + right)/2;
65 right = mid;
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt/router/dnsmasq/src/
H A Dpoll.c50 nfds_t left, right, mid; local
52 if ((right = nfds) == 0)
59 if (right == left + 1)
60 return (pollfds[left].fd >= fd) ? left : right;
62 mid = (left + right)/2;
65 right = mid;

Completed in 282 milliseconds

1234567891011>>