Searched refs:left (Results 201 - 225 of 748) sorted by relevance

1234567891011>>

/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/libstdc++-v3/testsuite/27_io/manipulators/adjustfield/wchar_t/
H A D2.cc49 o << std::setw(6) << std::left << L"cisco";
/netbsd-6-1-5-RELEASE/sys/dev/raidframe/
H A Drf_sstf.h41 RF_SstfQ_t left; member in struct:RF_Sstf_s
/netbsd-6-1-5-RELEASE/sys/netbt/
H A Dl2cap_signal.c418 int left, len; local
422 left = le16toh(cmd.length);
424 if (left < sizeof(cp))
429 left -= sizeof(cp);
464 while (left > 0) {
465 if (left < sizeof(opt))
470 left -= sizeof(opt);
472 if (left < opt.length)
596 left -= opt.length;
619 m_adj(m, left);
634 int left; local
[all...]
/netbsd-6-1-5-RELEASE/external/gpl3/binutils/dist/ld/testsuite/ld-mmix/
H A Db-fixo2.d10 # 2068098510aa5560, hence only the low part is left.
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/libstdc++-v3/testsuite/22_locale/num_put/put/char/
H A D2.cc62 oss.setf(ios_base::left, ios_base::adjustfield);
79 oss.setf(ios_base::left, ios_base::adjustfield);
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/libstdc++-v3/testsuite/22_locale/num_put/put/wchar_t/
H A D2.cc62 oss.setf(ios_base::left, ios_base::adjustfield);
79 oss.setf(ios_base::left, ios_base::adjustfield);
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/libstdc++-v3/testsuite/22_locale/num_put/put/char/
H A D2.cc63 oss.setf(ios_base::left, ios_base::adjustfield);
80 oss.setf(ios_base::left, ios_base::adjustfield);
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/libstdc++-v3/testsuite/22_locale/num_put/put/wchar_t/
H A D2.cc63 oss.setf(ios_base::left, ios_base::adjustfield);
80 oss.setf(ios_base::left, ios_base::adjustfield);
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/libmudflap/
H A Dmf-runtime.c89 mfsplay_tree_node left; member in struct:mfsplay_tree_node_s
1597 /* Iterate left then right near this key value to find all overlapping objects. */
2422 /* The target is to the left. */
2423 next = &n->left;
2457 if (n == (*parent)->left)
2464 *node = n->left;
2465 n->left = *parent;
2471 /* Next handle the cases where both N and *PARENT are left children,
2473 if (n == (*parent)->left && *parent == (*grandparent)->left)
2695 mfsplay_tree_node left, right; local
[all...]
/netbsd-6-1-5-RELEASE/external/gpl3/binutils/dist/gprof/
H A Dsymtab.c54 or >0 depending on whether the left value is smaller than, equal
65 const Sym *left = (const Sym *) lp;
68 if (left->addr > right->addr)
70 else if (left->addr < right->addr)
73 if (left->is_func != right->is_func)
74 return right->is_func - left->is_func;
76 return left->is_static - right->is_static;
64 const Sym *left = (const Sym *) lp; local
H A Dcg_print.c137 cmp_member (Sym *left, Sym *right)
139 double left_time = left->cg.prop.self + left->cg.prop.child;
141 unsigned long left_calls = left->ncalls + left->cg.self_calls;
223 cmp_arc (Arc *left, Arc *right)
225 Sym *left_parent = left->parent;
226 Sym *left_child = left->child;
236 printf (" %f + %f %lu/%lu\n", left->time, left
136 cmp_member(Sym *left, Sym *right) argument
222 cmp_arc(Arc *left, Arc *right) argument
551 cmp_name(const PTR left, const PTR right) argument
675 cmp_arc_count(const PTR left, const PTR right) argument
692 cmp_fun_nuses(const PTR left, const PTR right) argument
[all...]
/netbsd-6-1-5-RELEASE/external/gpl3/gdb/dist/sim/testsuite/sim/h8300/
H A Drotxl.s28 rotxl.b r0l ; shift left arithmetic by one
51 rotxl.b #2, r0l ; shift left arithmetic by two
76 rotxl.w r0 ; shift left arithmetic by one
98 rotxl.w #2, r0 ; shift left arithmetic by two
120 rotxl.l er0 ; shift left arithmetic by one
143 rotxl.l #2, er0 ; shift left arithmetic by two
H A Dshal.s28 shal.b r0l ; shift left arithmetic by one
51 shal.b #2, r0l ; shift left arithmetic by two
76 shal.w r0 ; shift left arithmetic by one
98 shal.w #2, r0 ; shift left arithmetic by two
120 shal.l er0 ; shift left arithmetic by one
143 shal.l #2, er0 ; shift left arithmetic by two
/netbsd-6-1-5-RELEASE/gnu/dist/groff/src/devices/grohtml/
H A Dhtml-table.cpp310 return linelength - columns->left;
321 if (columns != NULL && columns->left > indent)
322 add_column(0, indent, columns->left, 'L');
346 out->put_string("<tr valign=\"top\" align=\"left\"");
365 return c->left;
424 - (b->left*100 + get_effective_linelength()/2)
441 - (b->left*100 + get_effective_linelength()/2)
494 out->put_string("<tr valign=\"top\" align=\"left\"");
559 if (l != NULL && l->no>coln && hend > l->left)
573 (l->next->left < hen
[all...]
/netbsd-6-1-5-RELEASE/external/bsd/openldap/dist/servers/slapd/
H A Daclparse.c62 static void split(char *line, int splitchar, char **left, char **right);
332 char *left, *right, *style; local
371 split( argv[i], '=', &left, &right );
372 split( left, '.', &left, &style );
377 fname, lineno, left );
381 if ( strcasecmp( left, "dn" ) == 0 ) {
453 if ( strcasecmp( left, "filter" ) == 0 ) {
461 } else if ( strcasecmp( left, "attr" ) == 0 /* TOLERATED */
462 || strcasecmp( left, "attr
2329 split( char *line, int splitchar, char **left, char **right ) argument
[all...]
/netbsd-6-1-5-RELEASE/common/dist/zlib/examples/
H A Dgun.c166 /* throw out what's left in the current bits byte buffer (this is a vestigial
171 left = 0; \
202 int chunk; /* bytes left in current chunk */
203 int left; /* bits left in rem */ local
256 left = 7;
257 chunk = bits - 2; /* 7 bytes left in this chunk */
284 code += (unsigned)last << left; /* middle (or high) bits of code */
285 left += 8;
287 if (bits > left) { /* nee
[all...]
/netbsd-6-1-5-RELEASE/external/bsd/bind/dist/lib/isc/
H A Dprint.c76 int left; local
119 dot = neg = space = plus = left = zero = alt = h = l = q = 0;
129 left = 1;
141 if (!left)
387 if (!left) {
444 if (!left)
473 if (left && size > 1) {
481 if (!left && size > 1) {
505 if (!left)
597 if (!left)
[all...]
/netbsd-6-1-5-RELEASE/external/bsd/ntp/dist/lib/isc/
H A Dprint.c76 int left; local
119 dot = neg = space = plus = left = zero = alt = h = l = q = 0;
129 left = 1;
141 if (!left)
387 if (!left) {
444 if (!left)
473 if (left) {
481 if (!left && size > 1) {
505 if (!left)
597 if (!left)
[all...]
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/zlib/examples/
H A Dgun.c164 /* throw out what's left in the current bits byte buffer (this is a vestigial
169 left = 0; \
200 int chunk; /* bytes left in current chunk */
201 int left; /* bits left in rem */ local
254 left = 7;
255 chunk = bits - 2; /* 7 bytes left in this chunk */
282 code += (unsigned)last << left; /* middle (or high) bits of code */
283 left += 8;
285 if (bits > left) { /* nee
[all...]
/netbsd-6-1-5-RELEASE/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,result); \
269 #define Sgl_xortointp1(left,righ
[all...]
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/
H A Dgenattrtab.c1028 attribute test, it is left be. */
1807 the root. A new node will be created with the root's code. Its left
2049 rtx left, right; local
2056 left = simplify_and_tree (XEXP (exp, 0), pterm, insn_code, insn_index);
2058 if (left != XEXP (exp, 0) || right != XEXP (exp, 1))
2060 newexp = attr_rtx (AND, left, right);
2071 left = simplify_and_tree (XEXP (exp, 0), &temp, insn_code, insn_index);
2081 if (left != XEXP (exp, 0) || right != XEXP (exp, 1))
2083 newexp = attr_rtx (IOR, left, right);
2179 rtx left, righ local
2457 rtx left, right; local
[all...]
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/gcc/
H A Dgenattrtab.c1080 attribute test, it is left be. */
1859 the root. A new node will be created with the root's code. Its left
2101 rtx left, right; local
2108 left = simplify_and_tree (XEXP (exp, 0), pterm, insn_code, insn_index);
2110 if (left != XEXP (exp, 0) || right != XEXP (exp, 1))
2112 newexp = attr_rtx (AND, left, right);
2123 left = simplify_and_tree (XEXP (exp, 0), &temp, insn_code, insn_index);
2133 if (left != XEXP (exp, 0) || right != XEXP (exp, 1))
2135 newexp = attr_rtx (IOR, left, right);
2231 rtx left, righ local
2509 rtx left, right; local
[all...]
/netbsd-6-1-5-RELEASE/external/bsd/wpa/dist/src/eap_peer/
H A Deap_pax.c128 size_t left, plen; local
146 left = req_plen - sizeof(*req);
148 if (left < 2 + EAP_PAX_RAND_LEN) {
165 left -= 2;
170 left -= EAP_PAX_RAND_LEN;
172 if (left > 0) {
174 pos, left);
244 size_t left; local
262 left = req_plen - sizeof(*req);
264 if (left <
[all...]
/netbsd-6-1-5-RELEASE/external/cddl/osnet/dist/lib/libdtrace/common/
H A Ddt_grammar.y118 %left DT_TOK_COMMA
122 %left DT_TOK_QUESTION DT_TOK_COLON
123 %left DT_TOK_LOR
124 %left DT_TOK_LXOR
125 %left DT_TOK_LAND
126 %left DT_TOK_BOR
127 %left DT_TOK_XOR
128 %left DT_TOK_BAND
129 %left DT_TOK_EQU DT_TOK_NEQ
130 %left DT_TOK_L
[all...]
/netbsd-6-1-5-RELEASE/usr.bin/sdiff/
H A Dsdiff.c41 char *left; member in struct:diffline
67 int lflag; /* print only left column for identical lines */
81 { "left-column", no_argument, NULL, 'l' },
368 * Prints an individual column (left or right), taking into account
439 /* Choose left column as-is. */
511 /* Only print left column. */
675 /* If the -l flag was specified, print only left column. */
750 enqueue(char *left, char divc, char *right) argument
756 diffp->left = left;
847 char divc, *left, *right; local
[all...]

Completed in 429 milliseconds

1234567891011>>