Searched refs:right (Results 51 - 75 of 335) sorted by relevance

1234567891011>>

/freebsd-11-stable/contrib/libstdc++/include/backward/
H A Diomanip.h50 using std::right;
/freebsd-11-stable/contrib/gcclibs/include/
H A Dfibheap.h59 struct fibnode *right; member in struct:fibnode
/freebsd-11-stable/contrib/gcclibs/libiberty/
H A Dcp-demint.c62 struct demangle_component *right)
113 if (right != NULL)
124 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
/freebsd-11-stable/contrib/gdb/include/
H A Dfibheap.h59 struct fibnode *right; member in struct:fibnode
/freebsd-11-stable/contrib/binutils/include/
H A Dfibheap.h59 struct fibnode *right; member in struct:fibnode
/freebsd-11-stable/contrib/binutils/libiberty/
H A Dcp-demint.c62 struct demangle_component *right)
113 if (right != NULL)
124 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
/freebsd-11-stable/include/
H A Dsignal.h123 int sigandset(sigset_t *dest, const sigset_t *left, const sigset_t *right);
126 int sigorset(sigset_t *dest, const sigset_t *left, const sigset_t *right);
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/builtins/
H A Dfp_fixint_impl.inc34 // If 0 <= exponent < significandBits, right shift to get the result.
H A Dfp_fixuint_impl.inc32 // If 0 <= exponent < significandBits, right shift to get the result.
/freebsd-11-stable/contrib/ncurses/form/
H A Dfld_def.c100 p->right = _nc_Make_Argument(typ->right, ap, err);
148 p->right = _nc_Copy_Argument(typ, argp->right, err);
191 _nc_Free_Argument(typ->right, argp->right);
/freebsd-11-stable/contrib/ncurses/ncurses/base/
H A Dlib_window.c112 /* left & right character in parent window coordinates */
113 int right = wp->_line[y].lastchar + wp->_parx; local
116 CHANGED_RANGE(line, left, right);
147 /* left and right character in child coordinates */
149 int right = pp->_line[win->_pary + y].lastchar - win->_parx; local
153 if (right > win->_maxx)
154 right = win->_maxx;
155 CHANGED_RANGE(line, left, right);
/freebsd-11-stable/contrib/diff/src/
H A Dside.c163 char const *const *right)
180 if (sep == '|' && put_newline != (right[1][-1] == '\n'))
185 if (right)
187 put_newline |= right[1][-1] == '\n';
188 if (**right != '\n')
191 print_half_line (right, col, hw);
162 print_1sdiff_line(char const *const *left, char sep, char const *const *right) argument
/freebsd-11-stable/contrib/groff/src/preproc/eqn/
H A Deqn.y101 /* The original eqn manual says that `left' is right associative. It's lying.
102 Consider `left ( ~ left ( ~ right ) right )'. */
104 %right LEFT
106 %right LPILE RPILE CPILE PILE TEXT QUOTED_TEXT MATRIX MARK LINEUP '^' '~' '\t' '{' SPLIT NOSPLIT
107 %right FROM TO
109 %right SUB SUP
110 %right ROMAN BOLD ITALIC FAT FONT SIZE FWD BACK DOWN UP TYPE VCENTER SPECIAL
111 %right BAR UNDER PRIME
/freebsd-11-stable/share/examples/ppp/
H A Dchap-auth63 pack .$n.value -side right;
87 pack .k.value -side right;
96 pack .b.cancel -side right;
/freebsd-11-stable/contrib/gcc/
H A Det-forest.c478 nw->right = NULL;
527 struct et_node *left, *right; local
560 right = father->son;
561 if (right)
562 left = right->left;
564 left = right = t;
566 left->right = t;
567 right->left = t;
569 t->right = right;
[all...]
H A Dstmt.c76 totally unbalanced, with everything on the right. We balance the tree
78 and nodes on the right having higher values. We then output the tree
87 struct case_node *right; /* Right son in binary tree; also node chain */
1652 the right. Set PADDING_CORRECTION to the number of padding
1656 the register, which translates to right padding on little-endian
1694 xbitpos for the destination store (right justified). */
2164 r->right = head;
2257 for (n = nodes; n; n = n->right)
2328 Generate the code to test it and jump to the right place. */
2410 for (n = case_list; n; n = n->right)
86 struct case_node *right; /* Right son in binary tree; also node chain */ local
[all...]
/freebsd-11-stable/contrib/gcclibs/libmudflap/
H A Dmf-runtime.c94 mfsplay_tree_node right; member in struct:mfsplay_tree_node_s
1517 /* Iterate left then right near this key value to find all overlapping objects. */
2337 /* The target is to the right. */
2338 next = &n->right;
2371 *node = n->right;
2372 n->right = *parent;
2384 or where both are right children. */
2389 (*grandparent)->left = p->right;
2390 p->right = *grandparent;
2391 p->left = n->right;
2607 mfsplay_tree_node left, right; local
[all...]
/freebsd-11-stable/contrib/groff/src/devices/grohtml/
H A Dhtml-table.cpp289 if (c->right > linelength) {
290 c->right = linelength;
297 if (p != NULL && p->right > 0)
298 add_column(p->no+1, p->right, linelength, 'L');
355 * get_right - returns the right most position of this column.
360 if (c != NULL && c->right > 0)
361 return c->right;
451 .put_string("%\" align=right>")
567 if ((l != NULL) && (hstart < l->right))
583 n->right
[all...]
/freebsd-11-stable/usr.sbin/cron/lib/
H A Dmisc.c54 strcmp_until(left, right, until)
56 char *right;
61 while (*left && *left != until && *left == *right) {
63 right++;
67 (*right=='\0' || *right == until)) {
70 diff = *left - *right;
/freebsd-11-stable/contrib/subversion/subversion/libsvn_fs_fs/
H A Drecovery.c48 know exists, right a revision that we know does not exist. */
50 svn_revnum_t left, right = 1; local
53 /* Keep doubling right, until we find a revision that doesn't exist. */
60 err = svn_fs_fs__open_pack_or_rev_file(&file, fs, right, iterpool,
70 right <<= 1;
73 left = right >> 1;
75 /* We know that left exists and right doesn't. Do a normal bsearch to find
77 while (left + 1 < right)
79 svn_revnum_t probe = left + ((right - left) / 2);
89 right
[all...]
/freebsd-11-stable/usr.bin/sdiff/
H A Dsdiff.c50 char *right; member in struct:diffline
500 * Prints an individual column (left or right), taking into account
576 /* Choose right column as-is. */
830 /* If -l flag was given, don't print right column. */
872 enqueue(char *left, char div, char *right) argument
880 diffp->right = right;
892 free(diffp->right);
969 char divc, *left, *right; local
979 right
[all...]
/freebsd-11-stable/contrib/subversion/subversion/libsvn_delta/
H A Delement.c161 const svn_element__payload_t *right,
167 assert(svn_element__payload_invariants(right));
170 if (left->is_subbranch_root && right->is_subbranch_root)
174 else if (left->is_subbranch_root || right->is_subbranch_root)
181 && right->kind != svn_node_unknown);
183 if (left->kind != right->kind)
189 left->props, right->props,
201 if (! svn_stringbuf_compare(left->text, right->text))
207 if (strcmp(left->target, right->target) != 0)
160 svn_element__payload_equal(const svn_element__payload_t *left, const svn_element__payload_t *right, apr_pool_t *scratch_pool) argument
/freebsd-11-stable/sys/dev/sound/macio/
H A Donyx.c76 unsigned right);
270 onyx_set(struct snd_mixer *m, unsigned dev, unsigned left, unsigned right) argument
290 if (left > 100 || right > 100)
294 r = right + 128;
305 return (left | (right << 8));
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Basic/
H A DObjCRuntime.h471 friend bool operator==(const ObjCRuntime &left, const ObjCRuntime &right) { argument
472 return left.getKind() == right.getKind() &&
473 left.getVersion() == right.getVersion();
476 friend bool operator!=(const ObjCRuntime &left, const ObjCRuntime &right) { argument
477 return !(left == right);
/freebsd-11-stable/sys/dev/sound/pci/
H A Demu10kx-pcm.c274 emu_dspmixer_set(struct snd_mixer *m, unsigned dev, unsigned left, unsigned right) argument
285 mix_set(sc->sm, dev, left, right);
294 sc->emu10k1_volcache[0][1] = right;
295 right = right * sc->emu10k1_volcache[1][1] / 100;
299 emumix_set_volume(sc->card, M_MASTER_REAR_R, right);
301 emumix_set_volume(sc->card, M_MASTER_CENTER, (left+right)/2);
302 emumix_set_volume(sc->card, M_MASTER_SUBWOOFER, (left+right)/2);
309 emumix_set_volume(sc->card, M_MASTER_REAR_R, right);
312 emumix_set_volume(sc->card, M_MASTER_CENTER, (left+right)/
488 emu_efxmixer_set(struct snd_mixer *m, unsigned dev, unsigned left, unsigned right) argument
572 int left, right; local
[all...]

Completed in 335 milliseconds

1234567891011>>