Searched refs:left (Results 226 - 250 of 494) sorted by relevance

1234567891011>>

/freebsd-10.0-release/contrib/wpa/src/utils/
H A Dos_internal.c433 size_t left = siz; local
435 if (left) {
437 while (--left != 0) {
443 if (left == 0) {
H A Dos_unix.c377 size_t left = siz; local
379 if (left) {
381 while (--left != 0) {
387 if (left == 0) {
/freebsd-10.0-release/include/
H A Dprintf.h57 unsigned left; member in struct:printf_info
/freebsd-10.0-release/lib/libc/mips/string/
H A Dbzero.S65 and v0, a1, SZREG-1 # compute number of words left
/freebsd-10.0-release/lib/libc/stdio/
H A Dxprintf_int.c392 else if (pi->pad == '0' && pi->width > l && !pi->left)
411 if (pi->width > (pe - p) && !pi->left) {
421 if (!pi->left && pi->width > l)
432 if (pi->width > ret && pi->left)
H A Dxprintf_float.c333 * After any left-hand padding and prefixing, emit zeroes
350 if (pi->pad != '0' && pi->left == 0)
363 if (pi->pad == '0' && pi->left == 0)
416 /* left-adjusting padding (always blank) */
417 if (pi->left)
/freebsd-10.0-release/sys/contrib/ipfilter/netinet/
H A Dradix_ipf.h22 struct ipf_rdx_node *left; member in struct:ipf_rdx_node
/freebsd-10.0-release/contrib/diff/src/
H A Dsdiff.c149 {"left-column", 0, 0, 'l'},
195 N_("-l --left-column Output only the left column of common lines."),
510 diffarg ("--left-column");
587 FILE *left, *right, *out, *diffout;
599 left = ck_fopen (lname, "r");
699 lf_init (&lfilt, left);
704 ck_fclose (left);
864 el or e1:\tEdit then use the left version.\n\
867 l or 1:\tUse the left versio
585 FILE *left, *right, *out, *diffout; local
900 edit(struct line_filter *left, char const *lname, lin lline, lin llen, struct line_filter *right, char const *rname, lin rline, lin rlen, FILE *outfile) argument
1123 interact(struct line_filter *diff, struct line_filter *left, char const *lname, struct line_filter *right, char const *rname, FILE *outfile) argument
[all...]
/freebsd-10.0-release/contrib/gcc/
H A Dtree-chrec.c102 tree left, right;
148 left = chrec_fold_plus
155 left = chrec_fold_minus
162 return left;
165 (CHREC_VARIABLE (poly0), left, right);
753 tree left = reset_evolution_in_loop (loop_num, CHREC_LEFT (chrec),
757 return build3 (POLYNOMIAL_CHREC, TREE_TYPE (left),
759 left, right);
1148 cast unsigned char [254, +, 1] to unsigned, the values on left side
1328 tree inner_type, left, righ
101 tree left, right; local
750 tree left = reset_evolution_in_loop (loop_num, CHREC_LEFT (chrec), local
1323 tree inner_type, left, right, lc, rc; local
[all...]
/freebsd-10.0-release/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 )'. */
105 %left RIGHT
108 %left SQRT OVER SMALLOVER
112 %left ACCENT UACCENT
/freebsd-10.0-release/contrib/sendmail/contrib/
H A Dbuildvirtuser46 usernames on the left and the actual address for that username on the
47 right. An empty left column translates to the default for that domain.
51 the left hand side.
/freebsd-10.0-release/usr.bin/xlint/lint1/
H A Dcgram.y180 %left T_COMMA
183 %left T_LOGOR
184 %left T_LOGAND
185 %left T_OR
186 %left T_XOR
187 %left T_AND
188 %left T_EQOP
189 %left T_RELOP
190 %left T_SHFTOP
191 %left T_ADDO
[all...]
/freebsd-10.0-release/contrib/libgnuregex/
H A Dregcomp.c113 bin_tree_t *left, bin_tree_t *right,
116 bin_tree_t *left, bin_tree_t *right,
1223 /* Descend down the tree, preferably to the left (or to the right
1225 while (node->left || node->right)
1226 if (node->left)
1227 node = node->left;
1259 /* Go to the left node, or up and to the right. */
1260 if (node->left)
1261 node = node->left;
1293 && node->left
1427 int left, right; local
3728 create_tree(re_dfa_t *dfa, bin_tree_t *left, bin_tree_t *right, re_token_type_t type) argument
3737 create_token_tree(re_dfa_t *dfa, bin_tree_t *left, bin_tree_t *right, const re_token_t *token) argument
[all...]
/freebsd-10.0-release/contrib/dialog/
H A Dbuttons.c37 int left = 0, right = 0; local
41 left = (longest - len) / 2;
42 right = (longest - len - left);
43 if (left > 0)
44 sprintf(buffer, "%*s", left, " ");
/freebsd-10.0-release/contrib/llvm/tools/clang/lib/Edit/
H A DEditedSource.cpp246 static bool canBeJoined(char left, char right, const LangOptions &LangOpts) { argument
249 return !(Lexer::isIdentifierBodyChar(left, LangOpts) &&
255 static bool canRemoveWhitespace(char left, char beforeWSpace, char right, argument
257 if (!canBeJoined(left, right, LangOpts))
259 if (isWhitespace(left) || isWhitespace(right))
294 if (canRemoveWhitespace(/*left=*/buffer[begin-1],
/freebsd-10.0-release/contrib/binutils/ld/
H A Dldgram.y113 %left <token> OROR
114 %left <token> ANDAND
115 %left <token> '|'
116 %left <token> '^'
117 %left <token> '&'
118 %left <token> EQ NE
119 %left <token> '<' '>' LE GE
120 %left <token> LSHIFT RSHIFT
122 %left <token> '+' '-'
123 %left <toke
[all...]
/freebsd-10.0-release/contrib/gdb/gdb/
H A Djv-exp.y185 %left ','
188 %left OROR
189 %left ANDAND
190 %left '|'
191 %left '^'
192 %left '&'
193 %left EQUAL NOTEQUAL
194 %left '<' '>' LEQ GEQ
195 %left LSH RSH
196 %left '
[all...]
/freebsd-10.0-release/sys/i386/i386/
H A Dbios.c618 int idx, left; local
655 for (currdev = 0, left = ndevs; (currdev != 0xff) && (left > 0); left--) {
718 left = pd->size - sizeof(struct pnp_sysdev);
720 while (idx < left) {
731 idx = left;
/freebsd-10.0-release/contrib/wpa/src/eap_peer/
H A Deap_tls_common.c521 wpa_printf(MSG_DEBUG, "SSL: %lu bytes left to be sent out (of total "
776 size_t left; local
788 &left);
791 &left);
796 if (left == 0) {
809 left--;
815 if (left < 4) {
831 left -= 4;
833 if (left > tls_msg_len) {
836 "bytes)", (int) tls_msg_len, (int) left);
[all...]
/freebsd-10.0-release/contrib/wpa/src/eap_server/
H A Deap_server_ttls.c152 int left; local
155 left = wpabuf_len(buf);
158 while (left > 0) {
170 if ((int) avp_length > left) {
172 "(len=%d, left=%d) - dropped",
173 (int) avp_length, left);
290 left -= avp_length + pad;
799 size_t left; local
814 left = in_len - sizeof(*hdr);
816 "allowed types", pos + 1, left
[all...]
/freebsd-10.0-release/contrib/libpcap/
H A Dgrammar.y307 %left OR AND
309 %left '|'
310 %left '&'
311 %left LSH RSH
312 %left '+' '-'
313 %left '*' '/'
/freebsd-10.0-release/contrib/binutils/gas/
H A Dehopt.c364 int left = (d->aug_size -= *pnbytes); local
365 if (left == 0)
367 else if (left < 0)
/freebsd-10.0-release/contrib/xz/src/liblzma/lzma/
H A Dlzma2_encoder.c143 // If there's no input left and we are flushing or finishing,
167 const uint32_t left = LZMA2_UNCOMPRESSED_MAX local
171 if (left < mf->match_len_max) {
180 + left - mf->match_len_max;
/freebsd-10.0-release/contrib/ipfilter/sys/
H A Dtree.h74 struct type *spe_left; /* left element */ \
108 #define SPLAY_ASSEMBLE(head, node, left, right, field) do { \
109 SPLAY_RIGHT(left, field) = SPLAY_LEFT((head)->sph_root, field); \
317 struct type *rbe_left; /* left element */ \
542 struct type *left; \
544 while ((left = RB_LEFT(elm, field)) != NULL) \
545 elm = left; \
574 left = parent; \
576 RB_AUGMENT(left); \
577 } while ((left
[all...]
/freebsd-10.0-release/contrib/libstdc++/include/bits/
H A Dostream_insert.h94 == __ios_base::left);

Completed in 346 milliseconds

1234567891011>>