Searched refs:left (Results 101 - 125 of 435) sorted by relevance

1234567891011>>

/freebsd-9.3-release/contrib/gcc/
H A Dgenattrtab.c1017 attribute test, it is left be. */
1796 the root. A new node will be created with the root's code. Its left
2038 rtx left, right; local
2045 left = simplify_and_tree (XEXP (exp, 0), pterm, insn_code, insn_index);
2047 if (left != XEXP (exp, 0) || right != XEXP (exp, 1))
2049 newexp = attr_rtx (AND, left, right);
2060 left = simplify_and_tree (XEXP (exp, 0), &temp, insn_code, insn_index);
2070 if (left != XEXP (exp, 0) || right != XEXP (exp, 1))
2072 newexp = attr_rtx (IOR, left, right);
2168 rtx left, righ local
2446 rtx left, right; local
[all...]
H A Det-forest.c477 nw->left = NULL;
527 struct et_node *left, *right; local
562 left = right->left;
564 left = right = t;
566 left->right = t;
567 right->left = t;
568 t->left = left;
620 t->left
[all...]
/freebsd-9.3-release/sys/nfsclient/
H A Dnfs_subs.c200 int xfer, left, mlen; local
213 left = uiop->uio_iov->iov_len;
215 if (left > siz)
216 left = siz;
217 uiosiz = left;
218 while (left > 0) {
229 xfer = (left > mlen) ? mlen : left;
242 left -= xfer;
259 for (left
276 long left, xfer, len, tlen; local
[all...]
/freebsd-9.3-release/cddl/contrib/opensolaris/lib/libdtrace/common/
H A Ddt_grammar.y116 %left DT_TOK_COMMA
120 %left DT_TOK_QUESTION DT_TOK_COLON
121 %left DT_TOK_LOR
122 %left DT_TOK_LXOR
123 %left DT_TOK_LAND
124 %left DT_TOK_BOR
125 %left DT_TOK_XOR
126 %left DT_TOK_BAND
127 %left DT_TOK_EQU DT_TOK_NEQ
128 %left DT_TOK_L
[all...]
/freebsd-9.3-release/contrib/wpa/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...]
/freebsd-9.3-release/contrib/xz/src/liblzma/common/
H A Dindex.c40 index_tree_node *left; member in struct:index_tree_node_s
199 if (node->left != NULL)
200 index_tree_node_end(node->left, allocator, free_func);
234 node->left = NULL;
269 // Rotate left using node as the rotation root.
281 node->right = pivot->left;
285 pivot->left = node;
299 while (node->left != NULL)
300 node = node->left;
328 node = node->left;
747 index_stream *left = (index_stream *)(this->node.left); local
1226 size_t left = 0; local
[all...]
/freebsd-9.3-release/contrib/gdb/gdb/
H A Df-exp.y206 %left ','
207 %left ABOVE_COMMA
210 %left BOOL_OR
212 %left BOOL_AND
213 %left '|'
214 %left '^'
215 %left '&'
216 %left EQUAL NOTEQUAL
217 %left LESSTHAN GREATERTHAN LEQ GEQ
218 %left LS
[all...]
/freebsd-9.3-release/contrib/cvs/diff/
H A Dside.c176 print_1sdiff_line (left, sep, right)
177 char const * const *left;
185 if (left)
187 if (left[1][-1] == '\n')
189 col = print_half_line (left, 0, hw);
/freebsd-9.3-release/crypto/openssl/ssl/
H A Ds3_pkt.c35 * The word 'cryptographic' can be left out if the rouines from the library
137 if (s->s3->rbuf.left == 0)
150 if (s->s3->rbuf.left == 0 && extend)
152 if (s->s3->rbuf.left > 0 && n > s->s3->rbuf.left)
153 n = s->s3->rbuf.left;
157 if (s->s3->rbuf.left >= (int)n) {
159 s->s3->rbuf.left -= n;
180 newb = s->s3->rbuf.left;
208 s->s3->rbuf.left
[all...]
/freebsd-9.3-release/contrib/binutils/gas/
H A Dsymbols.c950 report_op_error (symbolS *symp, symbolS *left, symbolS *right)
954 segT seg_left = S_GET_SEGMENT (left);
962 S_GET_NAME (left));
973 S_GET_NAME (left), S_GET_NAME (right));
977 S_GET_NAME (left));
985 S_GET_NAME (left), S_GET_NAME (symp));
994 S_GET_NAME (left), S_GET_NAME (right), S_GET_NAME (symp));
997 S_GET_NAME (left), S_GET_NAME (symp));
1101 offsetT left, right;
1136 left
946 report_op_error(symbolS *symp, symbolS *left, symbolS *right) argument
1097 offsetT left, right; local
[all...]
/freebsd-9.3-release/contrib/wpa/src/eap_server/
H A Deap_server_peap.c650 size_t left; local
655 pos = eap_hdr_validate(EAP_VENDOR_IETF, EAP_TYPE_TLV, in_data, &left);
662 wpa_hexdump(MSG_DEBUG, "EAP-PEAP: Received TLVs", pos, left);
663 while (left >= 4) {
669 left -= 4;
670 if ((size_t) tlv_len > left) {
672 "(tlv_len=%d left=%lu)", tlv_len,
673 (unsigned long) left);
699 left -= tlv_len;
701 if (left) {
768 size_t left; local
900 size_t left; local
[all...]
/freebsd-9.3-release/sys/dev/sound/pci/
H A Demu10kx-pcm.c273 emu_dspmixer_set(struct snd_mixer *m, unsigned dev, unsigned left, unsigned right) argument
284 mix_set(sc->sm, dev, left, right);
291 sc->emu10k1_volcache[0][0] = left;
292 left = left * sc->emu10k1_volcache[1][0] / 100;
297 emumix_set_volume(sc->card, M_MASTER_REAR_L, left);
300 emumix_set_volume(sc->card, M_MASTER_CENTER, (left+right)/2);
301 emumix_set_volume(sc->card, M_MASTER_SUBWOOFER, (left+right)/2);
307 emumix_set_volume(sc->card, M_MASTER_REAR_L, left);
311 emumix_set_volume(sc->card, M_MASTER_CENTER, (left
487 emu_efxmixer_set(struct snd_mixer *m, unsigned dev, unsigned left, unsigned right) argument
571 int left, right; local
[all...]
/freebsd-9.3-release/contrib/binutils/libiberty/
H A Dcp-demint.c61 struct demangle_component *left,
123 p->u.s_binary.left = left;
59 cplus_demangle_fill_component(struct demangle_component *p, enum demangle_component_type type, struct demangle_component *left, struct demangle_component *right) argument
/freebsd-9.3-release/contrib/gcclibs/libiberty/
H A Dcp-demint.c61 struct demangle_component *left,
123 p->u.s_binary.left = left;
59 cplus_demangle_fill_component(struct demangle_component *p, enum demangle_component_type type, struct demangle_component *left, struct demangle_component *right) argument
/freebsd-9.3-release/contrib/one-true-awk/
H A Dawkgram.y78 %left BOR
79 %left AND
80 %left GETLINE
82 %left ARG BLTIN BREAK CALL CLOSE CONTINUE DELETE DO EXIT FOR FUNC
83 %left GSUB IF INDEX LSUBSTR MATCHFCN NEXT NUMBER
84 %left PRINT PRINTF RETURN SPLIT SPRINTF STRING SUB SUBSTR
85 %left REGEXPR VAR VARNF IVAR WHILE '('
86 %left CAT
87 %left '+' '-'
88 %left '*' '/' '
[all...]
/freebsd-9.3-release/contrib/xz/src/xz/
H A Dmessage.c332 size_t left = sizeof(buf); local
337 my_snprintf(&pos, &left, "%s / %s",
353 snprintf(pos, left, " > %.3f", 9.999);
355 snprintf(pos, left, " = %.3f", ratio);
487 // A maximum of 9 hours and 50 minutes left.
926 size_t left = FILTERS_STR_SIZE; local
931 my_snprintf(&pos, &left, "%s", i == 0 ? "--" : " --");
984 my_snprintf(&pos, &left, "lzma%c=dict=%s",
998 my_snprintf(&pos, &left,
1024 my_snprintf(&pos, &left, "
[all...]
/freebsd-9.3-release/release/picobsd/tinyware/msh/
H A Dsh2.c272 t->left = dogroup(0);
281 t->left = c_list();
296 t->left = caselist();
305 t->left = c_list();
347 t->left = c_list();
348 if (t->left == NULL)
369 t->left = c_list();
399 t->left = c_list();
462 t->left = t1;
516 t->left
[all...]
/freebsd-9.3-release/sys/dev/sound/usb/
H A Duaudio_pcm.c136 ua_mixer_set(struct snd_mixer *m, unsigned type, unsigned left, unsigned right) argument
147 uaudio_mixer_set(mix_getdevinfo(m), type, left, right); local
151 return (left | (right << 8));
/freebsd-9.3-release/sys/vm/
H A Dvm_page.c863 if ((y = root->left) == NULL)
867 root->left = y->right;
870 if ((y = root->left) == NULL)
874 righttreemin->left = root;
880 /* Rotate left. */
881 root->right = y->left;
882 y->left = root;
887 /* Link into the new root's left tree. */
894 lefttreemax->right = root->left;
895 righttreemin->left
[all...]
/freebsd-9.3-release/sys/fs/ntfs/
H A Dntfs_subr.c1372 off_t off = roff, left = rsize, towrite; local
1377 while (left) {
1382 towrite = MIN(left, ntfs_cntob(vap->va_vcnend + 1) - off);
1401 left -= towrite;
1429 cn_t ccn, ccl, cn, left, cl; local
1445 left = rsize;
1449 for (; left && (cnt < vap->va_vruncnt); cnt++) {
1454 "left %d, cn: 0x%x, cl: %d, off: %d\n", \
1455 (u_int32_t) left, (u_int32_t) ccn, \
1470 while (left
1545 cn_t ccn, ccl, cn, left, cl; local
1677 off_t off = roff, left = rsize, toread; local
1749 off_t off = roff, left = rsize, tocopy; local
[all...]
/freebsd-9.3-release/contrib/llvm/lib/CodeGen/SelectionDAG/
H A DScheduleDAGRRList.cpp395 // CapturePred and others may have left the node in the pending queue, avoid
788 /// unscheduled, incrcease the succ left count of its predecessors. Remove
1544 bool operator()(SUnit* left, SUnit* right) const {
1545 // reverse left/right rather than simply !SortFunc(left, right)
1547 return SortFunc(right, left);
1564 bool operator()(SUnit* left, SUnit* right) const;
1580 bool operator()(SUnit* left, SUnit* right) const;
1598 bool operator()(SUnit* left, SUnit* right) const;
1617 bool operator()(SUnit* left, SUni
[all...]
/freebsd-9.3-release/sys/kern/
H A Dkern_xxx.c286 u_int left; local
323 left = size;
325 if ((error = copyout((char *)&bsdi_si, uap->where, left)) != 0)
329 if (left > sizeof(bsdi_si)) {
330 left -= sizeof(bsdi_si);
332 uap->where + sizeof(bsdi_si), left);
/freebsd-9.3-release/contrib/bmake/mk/
H A Dhost.libnames.mk10 # left intact.
H A Dinc.mk10 # left intact.
/freebsd-9.3-release/contrib/wpa/src/ap/
H A Dwpa_auth_ie.c358 int left; local
380 left = wpa_ie_len - sizeof(*hdr);
382 if (left >= WPA_SELECTOR_LEN) {
385 left -= WPA_SELECTOR_LEN;
386 } else if (left > 0)
389 if (left >= 2) {
393 left -= 2;
394 if (count == 0 || left < count * WPA_SELECTOR_LEN)
399 left -= WPA_SELECTOR_LEN;
401 } else if (left
[all...]

Completed in 1109 milliseconds

1234567891011>>