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

1234567891011>>

/freebsd-10.0-release/contrib/one-true-awk/
H A Db.c45 #define left(v) (v)->narg[0] macro
55 left is index, right contains value or pointer to value
56 unary (STAR, PLUS, QUEST): left is child, right is null
57 binary (CAT, OR): left and right are children
195 penter(left(p));
196 parent(left(p)) = p;
200 penter(left(p));
202 parent(left(p)) = p;
219 freetr(left(p));
224 freetr(left(
[all...]
/freebsd-10.0-release/sys/powerpc/mpc85xx/
H A Dfsl_sdhc.c506 /* CRC is stripped, need to shift one byte left. */
527 size_t left = min(FSL_SDHC_FIFO_BUF_SIZE, data->len); local
533 left >> 2);
535 sc->data_offset += left;
538 left &= 0x3;
539 if (left > 0) {
542 while (left > 0) {
545 --left;
559 size_t left = min(FSL_SDHC_FIFO_BUF_SIZE, data->len); local
567 left >>
[all...]
/freebsd-10.0-release/contrib/wpa/src/eap_peer/
H A Deap_ttls.c817 static int eap_ttls_parse_avp(u8 *pos, size_t left, argument
834 if (avp_length > left) {
836 "(len=%d, left=%lu) - dropped",
837 (int) avp_length, (unsigned long) left);
908 size_t left, pad; local
912 left = wpabuf_len(in_decrypted);
913 wpa_hexdump(MSG_DEBUG, "EAP-TTLS: Decrypted Phase 2 AVPs", pos, left);
914 if (left < sizeof(struct ttls_avp)) {
917 (unsigned long) left,
925 while (left >
1456 size_t left; local
[all...]
H A Deap_fast.c833 size_t left, len; local
837 left = pac_len;
839 while (left > sizeof(*hdr)) {
844 left -= sizeof(*hdr);
845 if (len > left) {
847 "(type=%d len=%lu left=%lu)",
849 (unsigned long) left);
856 left -= len;
953 size_t left, len; local
962 left
1438 eap_fast_process_start(struct eap_sm *sm, struct eap_fast_data *data, u8 flags, const u8 *pos, size_t left) argument
1492 size_t left; local
[all...]
H A Deap_tls.c175 size_t left; local
183 reqData, &left, &flags);
190 left = 0; /* make sure that this frame is empty, even though it
196 id, pos, left, &resp);
/freebsd-10.0-release/sys/cddl/contrib/opensolaris/uts/common/zmod/
H A Dinflate.c413 left = strm->avail_out; \
424 strm->avail_out = left; \
507 input left to load n bits into the accumulator, or it continues. BITS(n)
520 state information is maintained to continue the loop where it left off
568 unsigned have, left; /* available input and output */ local
592 out = left;
842 if (copy > left) copy = left;
847 left -= copy;
972 if (have >= 6 && left >
[all...]
/freebsd-10.0-release/bin/expr/
H A Dexpr.y85 %left <val> '|'
86 %left <val> '&'
87 %left <val> '=' '>' '<' GE LE NE
88 %left <val> '+' '-'
89 %left <val> '*' '/' '%'
90 %left <val> ':'
/freebsd-10.0-release/contrib/gdb/gdb/
H A Dada-exp.y188 %left _AND_ OR XOR THEN ELSE
189 %left '=' NOTEQUAL '<' '>' LEQ GEQ IN DOTDOT
190 %left '@'
191 %left '+' '-' '&'
192 %left UNARY
193 %left '*' '/' MOD REM
/freebsd-10.0-release/libexec/rlogind/
H A Drlogind.c409 int left, n; local
419 left = fcc - (cp-fibuf);
420 n = control(p, cp, left);
422 left -= n;
423 if (left > 0)
424 bcopy(cp+n, cp, left);
/freebsd-10.0-release/sys/dev/sound/macio/
H A Dsnapper.c101 static int snapper_set(struct snd_mixer *m, unsigned dev, unsigned left,
143 #define SNAPPER_MIXER_L 0x07 /* Mixer left gain (9bytes) */
439 snapper_set(struct snd_mixer *m, unsigned dev, unsigned left, unsigned right) argument
451 if (left > 100 || right > 100)
454 l = (left == 0) ? 0 : snapper_volume_table[left - 1];
481 return (left | (right << 8));
H A Dtumbler.c101 static int tumbler_set(struct snd_mixer *m, unsigned dev, unsigned left,
385 tumbler_set(struct snd_mixer *m, unsigned dev, unsigned left, unsigned right) argument
399 if (left > 100 || right > 100)
402 l = (left == 0 ? 0 : tumbler_volume_table[left - 1]);
427 return (left | (right << 8));
/freebsd-10.0-release/release/picobsd/tinyware/msh/
H A Dsh3.c111 (void) execute(t->left, pin, pv, 0);
116 (void) execute(t->left, pin, pout, 0);
144 exit(execute(t->left, pin, pout, FEXEC));
150 rv = execute(t->left, pin, pout, 0);
170 for (t1 = t->left; i-- && *wp != NULL;) {
183 t1 = t->left;
192 rv = !execute(t->left, pin, pout, 0) ?
193 execute(t->right->left, pin, pout, 0):
201 if ((t1 = findcase(t->left, cp)) != NULL)
214 if (rv >= 0 && (t1 = t->left))
[all...]
/freebsd-10.0-release/tools/tools/net80211/stumbler/
H A Dstumbler.c189 int left = sizeof(res) - 3; local
191 if (strlen(node->ssid) < left)
192 left = strlen(node->ssid);
193 memcpy(&res[1], node->ssid, left);
398 int sig, max, left, noise; local
430 left = COLS - x - 1;
432 sig = (int) ( ((double)node->signal)*left/100.0 );
433 noise=(int) ( ((double)node->noise)*left/100.0 );
434 max = (int) ( ((double)node->max)*left/100.0 );
943 unsigned long left; local
[all...]
/freebsd-10.0-release/contrib/binutils/include/
H A Ddemangle.h200 component types have one or two subtrees, referred to as left and
201 right (a component type with only one subtree puts it in the left
208 /* A qualified name. The left subtree is a class or namespace or
212 /* A local name. The left subtree describes a function, and the
215 /* A typed name. The left subtree is a name, and the right subtree
218 /* A template. The left subtree is a template name, and the right
235 /* A construction vtable. The left subtree is the type for which
289 /* A vendor qualifier. The left subtree is the type which is being
307 /* A function type. The left subtree is the return type. The right
311 /* An array type. The left subtre
452 struct demangle_component *left; member in struct:demangle_component::__anon491::__anon500
[all...]
/freebsd-10.0-release/contrib/bmake/mk/
H A Dinit.mk10 # left intact.
H A Dlinks.mk10 # left intact.
H A Drst2htm.mk10 # left intact.
/freebsd-10.0-release/contrib/gcclibs/include/
H A Ddemangle.h188 component types have one or two subtrees, referred to as left and
189 right (a component type with only one subtree puts it in the left
196 /* A qualified name. The left subtree is a class or namespace or
200 /* A local name. The left subtree describes a function, and the
203 /* A typed name. The left subtree is a name, and the right subtree
206 /* A template. The left subtree is a template name, and the right
223 /* A construction vtable. The left subtree is the type for which
277 /* A vendor qualifier. The left subtree is the type which is being
295 /* A function type. The left subtree is the return type. The right
299 /* An array type. The left subtre
440 struct demangle_component *left; member in struct:demangle_component::__anon1142::__anon1151
[all...]
/freebsd-10.0-release/contrib/gdb/include/
H A Ddemangle.h177 component types have one or two subtrees, referred to as left and
178 right (a component type with only one subtree puts it in the left
185 /* A qualified name. The left subtree is a class or namespace or
189 /* A local name. The left subtree describes a function, and the
192 /* A typed name. The left subtree is a name, and the right subtree
195 /* A template. The left subtree is a template name, and the right
212 /* A construction vtable. The left subtree is the type for which
263 /* A vendor qualifier. The left subtree is the type which is being
281 /* A function type. The left subtree is the return type. The right
285 /* An array type. The left subtre
426 struct demangle_component *left; member in struct:demangle_component::__anon1359::__anon1368
[all...]
H A Dsplay-tree.h89 /* The left and right children, respectively. */
90 splay_tree_node GTY ((use_params (""))) left;
/freebsd-10.0-release/contrib/ipfilter/
H A Dip_fil.c541 int left, ioc, num, offset; local
546 left = len;
551 while ((left > 0) && (ioc < uio->uio_iovcnt)) {
554 if (num > left)
555 num = left;
565 left -= num;
566 if (left > 0)
569 if (left > 0)
H A Dradix_ipf.h24 struct ipf_rdx_node *left; member in struct:ipf_rdx_node
/freebsd-10.0-release/lib/libc/mips/string/
H A Dbcmp.S74 and a3, a2, ~3 # compute number of whole words left
100 and a3, a2, ~3 # compute number of whole words left
/freebsd-10.0-release/contrib/groff/src/devices/grohtml/
H A Dhtml-table.h64 int left, right; member in struct:cols
/freebsd-10.0-release/contrib/llvm/include/llvm/CodeGen/
H A DResourcePriorityQueue.h35 bool operator()(const SUnit* left, const SUnit* right) const;

Completed in 412 milliseconds

1234567891011>>