Searched refs:right (Results 176 - 200 of 1186) sorted by relevance

1234567891011>>

/netbsd-current/external/gpl3/gcc/dist/include/
H A Dfibheap.h63 struct fibnode *right; member in struct:fibnode
/netbsd-current/external/gpl3/gcc/dist/libiberty/
H A Dcp-demint.c62 struct demangle_component *right)
115 if (right != NULL)
126 p->u.s_binary.right = right;
59 cplus_demangle_fill_component(struct demangle_component *p, enum demangle_component_type type, struct demangle_component *left, struct demangle_component *right) argument
/netbsd-current/external/gpl3/gcc/dist/libgfortran/io/
H A Dunit.c160 temp = t->right;
161 t->right = t->right->left;
168 /* rotate_right()-- Rotate the treap right */
176 t->left = t->left->right;
177 temp->right = t;
216 t->right = insert (new, t->right);
217 if (t->priority < t->right->priority)
267 return t->right;
[all...]
/netbsd-current/external/gpl3/gdb/dist/gdb/
H A Dpsymtab.h43 int compare (const void *left, const void *right, int length) override;
/netbsd-current/external/gpl3/gdb/dist/include/
H A Dfibheap.h63 struct fibnode *right; member in struct:fibnode
/netbsd-current/external/gpl3/gdb/dist/libiberty/
H A Dcp-demint.c62 struct demangle_component *right)
115 if (right != NULL)
126 p->u.s_binary.right = right;
59 cplus_demangle_fill_component(struct demangle_component *p, enum demangle_component_type type, struct demangle_component *left, struct demangle_component *right) argument
/netbsd-current/tests/usr.bin/xlint/lint1/
H A Dlang_level_c99.c150 short top, left, bottom, right; member in struct:short_rect
/netbsd-current/external/gpl3/binutils.old/dist/libiberty/
H A Dcp-demint.c62 struct demangle_component *right)
115 if (right != NULL)
126 p->u.s_binary.right = right;
59 cplus_demangle_fill_component(struct demangle_component *p, enum demangle_component_type type, struct demangle_component *left, struct demangle_component *right) argument
/netbsd-current/external/gpl3/binutils.old/dist/include/
H A Dfibheap.h63 struct fibnode *right; member in struct:fibnode
/netbsd-current/external/gpl3/binutils.old/dist/gprofng/src/
H A DDataObject.cc176 int right = EAs->size () - 1; local
177 while (left <= right)
179 int index = (left + right) / 2;
182 right = index - 1;
/netbsd-current/external/gpl3/binutils/dist/include/
H A Dfibheap.h63 struct fibnode *right; member in struct:fibnode
/netbsd-current/external/gpl3/binutils/dist/gprofng/src/
H A DDataObject.cc176 int right = EAs->size () - 1; local
177 while (left <= right)
179 int index = (left + right) / 2;
182 right = index - 1;
/netbsd-current/external/gpl3/binutils/dist/libiberty/
H A Dcp-demint.c62 struct demangle_component *right)
115 if (right != NULL)
126 p->u.s_binary.right = right;
59 cplus_demangle_fill_component(struct demangle_component *p, enum demangle_component_type type, struct demangle_component *left, struct demangle_component *right) argument
/netbsd-current/sys/arch/hppa/spmath/
H A Dsgl_float.h85 #define Sgl_leftshiftby1_withextent(left,right,result) \
86 Shiftdouble(Sall(left),Extall(right),31,Sall(result))
88 #define Sgl_rightshiftby1_withextent(left,right,dst) \
89 Shiftdouble(Sall(left),Extall(right),1,Extall(right))
254 /* The left argument is never smaller than the right argument */
258 /* Subtract right augmented with extension from left augmented with zeros and
260 #define Sgl_subtract_withextension(left,right,extent,result) \
261 /* sgl_floating_point left,right,result; extension extent */ \
262 Sgl_subtract(left,right,resul
[all...]
/netbsd-current/sys/external/bsd/compiler_rt/dist/lib/builtins/
H A Dfp_fixint_impl.inc35 // If 0 <= exponent < significandBits, right shift to get the result.
H A Dfp_fixuint_impl.inc33 // If 0 <= exponent < significandBits, right shift to get the result.
/netbsd-current/external/mit/isl/dist/doc/
H A Dmanual.tex34 \providecommand{\fract}[1]{\left\{#1\right\}}
35 \providecommand{\floor}[1]{\left\lfloor#1\right\rfloor}
36 \providecommand{\ceil}[1]{\left\lceil#1\right\rceil}
70 \providecommand{\floor}[1]{\left\lfloor#1\right\rfloor}
/netbsd-current/external/mit/isl/dist/
H A Disl_mat.c536 __isl_take isl_mat *right)
541 if (!left || !right)
544 isl_assert(left->ctx, left->n_row == right->n_row, goto error);
547 isl_assert(left->ctx, right->n_col >= 1, goto error);
552 isl_seq_first_non_zero(right->row[0]+1, right->n_col-1) == -1,
555 sum = isl_mat_alloc(left->ctx, left->n_row, left->n_col + right->n_col - 1);
558 isl_int_lcm(sum->row[0][0], left->row[0][0], right->row[0][0]);
560 isl_int_divexact(right->row[0][0], sum->row[0][0], right
535 isl_mat_aff_direct_sum(__isl_take isl_mat *left, __isl_take isl_mat *right) argument
976 inv_exchange(__isl_keep isl_mat **left, __isl_keep isl_mat **right, unsigned i, unsigned j) argument
987 inv_oppose( __isl_keep isl_mat *left, __isl_keep isl_mat *right, unsigned row) argument
994 inv_subtract(__isl_keep isl_mat *left, __isl_keep isl_mat *right, unsigned row, unsigned i, isl_int m) argument
1008 isl_mat_inverse_product(__isl_take isl_mat *left, __isl_take isl_mat *right) argument
1271 isl_mat_product(__isl_take isl_mat *left, __isl_take isl_mat *right) argument
[all...]
/netbsd-current/external/gpl2/diffutils/dist/src/
H A Dside.c168 char const *const *right)
184 if (sep == '|' && put_newline != (right[1][-1] == '\n'))
189 if (right)
191 put_newline |= right[1][-1] == '\n';
192 if (**right != '\n')
195 print_half_line (right, col, hw);
167 print_1sdiff_line(char const *const *left, char sep, char const *const *right) argument
/netbsd-current/external/gpl2/gettext/dist/gettext-runtime/intl/
H A Dplural.y100 new_exp_1 (enum operator op, struct expression *right)
104 args[0] = right;
109 new_exp_2 (enum operator op, struct expression *left, struct expression *right)
114 args[1] = right;
137 %right '?' /* ? */
144 %right '!' /* ! */
/netbsd-current/external/gpl2/groff/dist/src/preproc/eqn/
H A Deqn.y103 /* The original eqn manual says that `left' is right associative. It's lying.
104 Consider `left ( ~ left ( ~ right ) right )'. */
106 %right LEFT
108 %right LPILE RPILE CPILE PILE TEXT QUOTED_TEXT MATRIX MARK LINEUP '^' '~' '\t' '{' SPLIT NOSPLIT
109 %right FROM TO
111 %right SUB SUP
112 %right ROMAN BOLD ITALIC FAT FONT SIZE FWD BACK DOWN UP TYPE VCENTER SPECIAL
113 %right BAR UNDER PRIME
/netbsd-current/external/gpl2/texinfo/dist/intl/
H A Dplural.y100 new_exp_1 (enum operator op, struct expression *right)
104 args[0] = right;
109 new_exp_2 (enum operator op, struct expression *left, struct expression *right)
114 args[1] = right;
137 %right '?' /* ? */
144 %right '!' /* ! */
/netbsd-current/external/gpl3/gcc.old/dist/contrib/
H A Dmklog.pl168 # Remember both left and right names because one may be /dev/null.
175 $right = remove_suffixes ($1);
180 # We should now have both left and right name,
191 if ($left eq $right) {
194 $filename = $right;
195 } elsif($right eq '/dev/null') {
199 my @rdirs = split /[\/\\]/, $right;
209 print STDERR "Error: failed to parse diff for $left and $right\n";
213 $left = $right = undef;
/netbsd-current/external/gpl3/gcc.old/dist/libphobos/src/std/experimental/allocator/building_blocks/
H A Dfree_tree.d70 ref Node* right() { return kid[1]; }
79 if (!which.right) which = which.left;
80 else if (!which.left) which = which.right;
85 // Crude randomization: alternate left/right choices
137 if (!n.left && !n.right) return;
139 recurse(n.right, indent + 4);
160 if (n.left || n.right)
165 recurse(n.right);
199 which.right = null;
209 which.right
[all...]
/netbsd-current/external/gpl3/gdb.old/dist/gprof/
H A Dsymtab.c54 to, or greater than the right value. If two symbols are equal
65 const Sym *right = (const Sym *) rp;
67 if (left->addr > right->addr)
69 else if (left->addr < right->addr)
72 if (left->is_func != right->is_func)
73 return right->is_func - left->is_func;
75 return left->is_static - right->is_static;
64 const Sym *right = (const Sym *) rp; local

Completed in 399 milliseconds

1234567891011>>