Searched refs:left (Results 151 - 175 of 601) sorted by relevance

1234567891011>>

/freebsd-current/contrib/byacc/test/
H A Dcalc1.y46 %left '+' '-'
47 %left '*' '/'
48 %left UMINUS /* precedence for unary minus */
/freebsd-current/crypto/heimdal/lib/kadm5/
H A Dipropd_slave.c184 off_t left, right; local
209 left = krb5_storage_seek (sp, -16, SEEK_CUR);
211 buf = malloc (right - left);
212 if (buf == NULL && (right - left) != 0)
218 krb5_storage_seek (sp, left, SEEK_SET);
219 krb5_storage_read (sp, buf, right - left);
220 sret = write (server_context->log_context.log_fd, buf, right-left);
221 if (sret != right - left)
232 krb5_storage_seek (sp, left, SEEK_SET);
616 time_t left local
[all...]
/freebsd-current/contrib/wireguard-tools/
H A Dshow.c129 static size_t pretty_time(char *buf, const size_t len, unsigned long long left) argument
134 years = left / (365 * 24 * 60 * 60);
135 left = left % (365 * 24 * 60 * 60);
136 days = left / (24 * 60 * 60);
137 left = left % (24 * 60 * 60);
138 hours = left / (60 * 60);
139 left = left
[all...]
/freebsd-current/lib/libc/tests/gen/
H A Dsigsetops_test.c61 sigcompare(const sigset_t *left, const sigset_t *right) argument
66 ATF_REQUIRE_MSG(left->__bits[i] == right->__bits[i],
67 "sig comparison failed at %d; left=%x, right=%x",
68 i, left->__bits[i], right->__bits[i]);
/freebsd-current/sys/dev/sound/usb/
H A Duaudio_pcm.c135 ua_mixer_set(struct snd_mixer *m, unsigned type, unsigned left, unsigned right) argument
146 uaudio_mixer_set(mix_getdevinfo(m), m, type, left, right); local
150 return (left | (right << 8));
/freebsd-current/contrib/one-true-awk/
H A Dawkgram.y79 %left BOR
80 %left AND
81 %left GETLINE
83 %left ARG BLTIN BREAK CALL CLOSE CONTINUE DELETE DO EXIT FOR FUNC
84 %left GSUB IF INDEX LSUBSTR MATCHFCN NEXT NUMBER
85 %left PRINT PRINTF RETURN SPLIT SPRINTF STRING SUB SUBSTR
86 %left REGEXPR VAR VARNF IVAR WHILE '('
87 %left CAT
88 %left '+' '-'
89 %left '*' '/' '
[all...]
/freebsd-current/contrib/libdiff/include/
H A Ddiff_main.h51 const struct diff_atom *left,
140 struct diff_data *left; member in struct:diff_result
173 /* Form a result with all left-side removed and all right-side added, i.e. no
254 * diff_algo_none (i.e. remove all left atoms and add all right atoms).
262 struct diff_data *left,
/freebsd-current/sys/compat/linuxkpi/common/include/linux/
H A Dbitmap.h406 unsigned long left, right; local
411 left = 0;
419 left = src[srcpos + 1];
421 left &= mask;
422 left <<= (BITS_PER_LONG - rem);
425 dst[i] = left | right;
/freebsd-current/sys/kern/
H A Dkern_xxx.c233 u_int left; local
270 left = size;
272 if ((error = copyout((char *)&bsdi_si, uap->where, left)) != 0)
276 if (left > sizeof(bsdi_si)) {
277 left -= sizeof(bsdi_si);
279 uap->where + sizeof(bsdi_si), left);
/freebsd-current/contrib/llvm-project/clang/include/clang/Analysis/Analyses/
H A DThreadSafetyLogical.h61 const LExpr *left() const { return LHS; } function in class:clang::threadSafety::lexpr::BinOp
62 LExpr *left() { return LHS; } function in class:clang::threadSafety::lexpr::BinOp
/freebsd-current/contrib/bmake/mk/
H A Dhost.libnames.mk10 # left intact.
H A Dlibnames.mk12 # left intact.
/freebsd-current/contrib/ncurses/form/
H A Dfty_generic.c182 p->left = GenericArgument(typ->left, argiterator, err);
/freebsd-current/contrib/nvi/common/
H A Dconv.c70 * left has the number of bytes left in str and is adjusted
74 #define CONVERT(str, left, src, len) \
80 if (iconv(id, (iconv_src_t)&str, &left, &bp, &outleft) \
84 error = -left; \
96 #define CONVERT(str, left, src, len)
114 size_t left = len; local
122 CONVERT(str, left, src, len);
139 if (id != (iconv_t)-1 && j == len && left) {
140 CONVERT(str, left, sr
[all...]
/freebsd-current/sys/dev/sound/macio/
H A Ddavbus.c121 static int burgundy_set(struct snd_mixer *m, unsigned dev, unsigned left,
272 burgundy_set(struct snd_mixer *m, unsigned dev, unsigned left, unsigned right) argument
277 lval = ((100 - left) * 15 / 100) & 0xf;
295 return (left | (right << 8));
317 static int screamer_set(struct snd_mixer *m, unsigned dev, unsigned left,
460 screamer_set(struct snd_mixer *m, unsigned dev, unsigned left, unsigned right) argument
465 lval = ((100 - left) * 15 / 100) & 0xf;
480 return (left | (right << 8));
/freebsd-current/crypto/openssl/test/testutil/
H A Dtests.c23 * The special cases are for prefix where "ERROR" is assumed and for left
28 const char *left, const char *right,
35 if (left != NULL && right != NULL)
36 test_printf_stderr("'%s %s %s' failed", left, op, right);
70 const char *type, const char *left,
77 const char *left, const char *right,
80 test_fail_message_prefix(prefix, file, line, type, left, right, op);
90 const char *left, const char *right,
96 test_fail_message_va(prefix, file, line, type, left, right, op, fmt, ap);
26 test_fail_message_prefix(const char *prefix, const char *file, int line, const char *type, const char *left, const char *right, const char *op) argument
75 test_fail_message_va(const char *prefix, const char *file, int line, const char *type, const char *left, const char *right, const char *op, const char *fmt, va_list ap) argument
88 test_fail_message(const char *prefix, const char *file, int line, const char *type, const char *left, const char *right, const char *op, const char *fmt, ...) argument
/freebsd-current/contrib/llvm-project/llvm/tools/llvm-objdump/
H A DMachODump.cpp3355 // then both ReferenceType and ReferenceName are left unchanged.
3481 // offset into the section, number of bytes left in the section past the offset
3485 uint32_t &left, SectionRef &S,
3489 left = 0;
3513 left = SectSize - offset;
3523 uint32_t &left, SectionRef &S,
3526 return get_pointer_64(Address, offset, left, S, info, objc_only);
4200 uint32_t offset, left; local
4207 r = get_pointer_64(ReferenceValue, offset, left, S, info);
4208 if (r == nullptr || left < sizeo
3484 get_pointer_64(uint64_t Address, uint32_t &offset, uint32_t &left, SectionRef &S, DisassembleInfo *info, bool objc_only = false) argument
3522 get_pointer_32(uint32_t Address, uint32_t &offset, uint32_t &left, SectionRef &S, DisassembleInfo *info, bool objc_only = false) argument
4250 uint32_t offset, left; local
4283 uint32_t offset, left; local
4336 uint32_t left = S.getSize() - i; local
4385 uint32_t left = S.getSize() - i; local
4409 print_layout_map(const char *layout_map, uint32_t left) argument
4422 uint32_t offset, left; local
4433 uint32_t offset, left; local
4448 uint32_t offset, xoffset, left, i; local
4541 uint32_t offset, xoffset, left, i; local
4598 uint32_t offset, left, xleft; local
4674 uint32_t offset, xoffset, left, i; local
4803 uint32_t offset, xoffset, left, i; local
4889 uint32_t offset, left, xleft; local
4959 uint32_t offset, left; local
5019 uint32_t offset, left, l; local
5068 uint32_t offset, xoffset, left, j; local
5169 uint32_t offset, xoffset, left, j; local
5238 uint32_t offset, xoffset, left, j; local
5317 uint32_t offset, xoffset, left, j; local
5371 uint32_t offset, xoffset, left; local
5505 uint32_t offset, xoffset, left; local
5568 uint32_t offset, left; local
5649 uint32_t offset, left; local
5714 uint32_t offset, left, xleft; local
5833 uint32_t offset, left; local
5875 uint32_t offset, xoffset, left; local
5995 uint32_t offset, left; local
6039 uint32_t i, left, offset, xoffset; local
6109 uint32_t i, left, offset, xoffset, p; local
6160 uint32_t left, offset, swift_version; local
6223 uint32_t left, offset, swift_version, p; local
6281 uint32_t left, offset, p; local
6483 uint32_t i, j, p, offset, xoffset, left, defs_left, def; local
6664 uint32_t left, paddr; local
9157 uint32_t left = lo.cmdsize - sizeof(struct MachO::linker_option_command); local
9531 uint32_t flavor, count, left; local
[all...]
/freebsd-current/sys/dev/sound/pcm/
H A Dmixer.h51 int mix_set_locked(struct snd_mixer *m, u_int dev, int left, int right);
52 int mix_set(struct snd_mixer *m, u_int dev, u_int left, u_int right);
/freebsd-current/contrib/wpa/src/eap_peer/
H A Deap_teap.c963 size_t left, len; local
967 left = pac_len;
969 while (left > sizeof(*hdr)) {
974 left -= sizeof(*hdr);
975 if (len > left) {
977 "EAP-TEAP: PAC TLV overrun (type=%d len=%lu left=%lu)",
979 (unsigned long) left);
986 left -= len;
1082 size_t left, len; local
1091 left
1622 eap_teap_process_start(struct eap_sm *sm, struct eap_teap_data *data, u8 flags, const u8 *pos, size_t left) argument
1834 size_t left; local
[all...]
/freebsd-current/contrib/wpa/src/ap/
H A Dfils_hlp.c165 size_t left, len; local
292 left = wpabuf_len(resp);
295 if (left <= 254)
296 len = 1 + left;
307 left -= len - 1;
308 while (left) {
310 len = left > 255 ? 255 : left;
314 left -= len;
577 const u8 *pos, int left)
576 fils_process_hlp(struct hostapd_data *hapd, struct sta_info *sta, const u8 *pos, int left) argument
[all...]
/freebsd-current/contrib/diff/src/
H A Dside.c162 print_1sdiff_line (char const *const *left, char sep, argument
171 if (left)
173 put_newline |= left[1][-1] == '\n';
174 col = print_half_line (left, 0, hw);
/freebsd-current/contrib/wpa/src/utils/
H A Dos_win32.c246 size_t left = siz; local
248 if (left) {
250 while (--left != 0) {
256 if (left == 0) {
/freebsd-current/contrib/unbound/util/
H A Drbtree.h58 /** left node (smaller items) */
59 rbnode_type *left; member in struct:rbnode_type
/freebsd-current/contrib/ldns/ldns/
H A Drbtree.h63 /** left node (smaller items) */
64 ldns_rbnode_t *left; member in struct:ldns_rbnode_t
/freebsd-current/lib/libopenbsd/
H A Dimsg.c126 size_t av, left, datalen; local
156 left = av - imsg->hdr.len;
157 memmove(&ibuf->r.buf, ibuf->r.buf + imsg->hdr.len, left);
158 ibuf->r.wpos = left;

Completed in 336 milliseconds

1234567891011>>