Searched refs:left (Results 126 - 150 of 601) sorted by relevance

1234567891011>>

/freebsd-current/include/
H A Dsignal.h122 int sigandset(sigset_t *dest, const sigset_t *left, const sigset_t *right);
125 int sigorset(sigset_t *dest, const sigset_t *left, const sigset_t *right);
/freebsd-current/lib/libc/gen/
H A Dsyslog.c93 int left; member in struct:bufcookie
107 if (len > h->left) {
109 len = h->left;
114 h->left -= len;
167 tbuf_cookie.left = sizeof(tbuf);
201 stdp = tbuf + (sizeof(tbuf) - tbuf_cookie.left);
230 fmt_cookie.left = sizeof(fmt_cpy) - 1;
270 cnt = sizeof(tbuf) - tbuf_cookie.left;
/freebsd-current/contrib/libdiff/lib/
H A Ddiff_internal.h57 const struct diff_atom *left,
60 /* A diff chunk represents a set of atoms on the left and/or a set of atoms on
66 * The lines on the left should be diffed against the lines on the right.
67 * (If there are no left lines or no right lines, it implies solved == true,
71 * If there are only left atoms, it is a chunk removing atoms from the left ("a
75 * If there are both left and right lines, it is a chunk of equal content on
79 * - bar }-- diff_chunk{ left_start = &left.atoms.head[0], left_count = 3,
82 * goo }-- diff_chunk{ left_start = &left.atoms.head[3], left_count = 3,
116 /* The root diff_data is in result->left,righ
118 struct diff_data left; member in struct:diff_state
[all...]
/freebsd-current/contrib/llvm-project/compiler-rt/lib/builtins/
H A Dfp_fixint_impl.inc35 // Otherwise, shift left.
/freebsd-current/contrib/jemalloc/include/jemalloc/internal/
H A Drb.h4 * cpp macro implementation of left-leaning 2-3 red-black trees. Parent
491 a_type *left = pathp[1].node; \
492 rbtn_left_set(a_type, a_field, cnode, left); \
493 if (rbtn_red_get(a_type, a_field, left)) { \
494 a_type *leftleft = rbtn_left_get(a_type, a_field, left);\
510 a_type *left = rbtn_left_get(a_type, a_field, cnode); \
511 if (left != NULL && rbtn_red_get(a_type, a_field, \
512 left)) { \
514 rbtn_black_set(a_type, a_field, left); \
518 /* Lean left
[all...]
/freebsd-current/contrib/ncurses/form/
H A Dfld_def.c100 p->left = _nc_Make_Argument(typ->left, ap, err);
148 p->left = _nc_Copy_Argument(typ, argp->left, err);
191 _nc_Free_Argument(typ->left, argp->left);
/freebsd-current/tools/test/stress2/misc/
H A Dmmap2.sh72 size_t left, len;
76 left = ADRSPACE - (size_t)p + STARTADDR;
77 len = trunc_page(arc4random() % left) + PAGE_SIZE;
/freebsd-current/crypto/openssl/crypto/siphash/
H A Dsiphash.c143 int left; local
175 left = inlen & (SIPHASH_BLOCK_SIZE-1); /* gets put into leavings */
176 end = in + inlen - left;
187 if (left)
188 memcpy(ctx->leavings, end, left);
189 ctx->len = left;
/freebsd-current/sys/dev/mlx5/mlx5_fpga/
H A Dmlx5fpga_xfer.c72 size_t left, cur_size, page_size; local
87 left = xfer_state->xfer->size - xfer_state->pos;
88 if (!left)
104 if (cur_size > left)
105 cur_size = left;
144 } while (cur_size != left);
/freebsd-current/lib/libc/amd64/string/
H A Dmemrchr.S20 sub $4, %rdx # 4 bytes left to process?
50 1: cmp $-3, %edx # a least one character left to process?
57 cmp $-2, %edx # at least two characters left to process?
64 cmp $-1, %edx # at least three character left to process?
98 sub $16, %rdx # enough left for another round?
107 cmp $16, %rdx # enough left for second chunk?
/freebsd-current/contrib/bmake/unit-tests/
H A Dvarmod-subst.exp18 1 two 3 left parenthesis
35 1 two 3 left square bracket
42 1 two 3 left curly bracket
/freebsd-current/contrib/wpa/src/eap_common/
H A Deap_gpsk_common.c43 size_t i, n, hashlen, left, clen; local
56 left = len;
62 clen = left > hashlen ? hashlen : left;
65 left -= clen;
78 size_t i, n, hashlen, left, clen; local
91 left = len;
97 clen = left > hashlen ? hashlen : left;
100 left
[all...]
/freebsd-current/sys/contrib/libnv/
H A Dnvlist.c857 size_t left, size; local
875 left = size;
877 ptr = nvlist_pack_header(nvl, ptr, &left);
884 ptr = nvpair_pack_header(nvp, ptr, &left);
889 ptr = nvpair_pack_null(nvp, ptr, &left);
892 ptr = nvpair_pack_bool(nvp, ptr, &left);
895 ptr = nvpair_pack_number(nvp, ptr, &left);
898 ptr = nvpair_pack_string(nvp, ptr, &left);
902 ptr = nvlist_pack_header(tmpnvl, ptr, &left);
911 ptr = nvpair_pack_nvlist_up(ptr, &left);
1102 size_t left; local
[all...]
/freebsd-current/contrib/wpa/src/eap_peer/
H A Deap_pax.c123 size_t left, plen; local
141 left = req_plen - sizeof(*req);
143 if (left < 2 + EAP_PAX_RAND_LEN) {
160 left -= 2;
165 left -= EAP_PAX_RAND_LEN;
167 if (left > 0) {
169 pos, left);
239 size_t left; local
257 left = req_plen - sizeof(*req);
259 if (left <
[all...]
H A Deap_psk.c187 size_t buflen, left, data_len, len, plen; local
204 left = len - sizeof(*hdr3);
217 wpa_hexdump(MSG_DEBUG, "EAP-PSK: PCHANNEL", pchannel, left);
219 if (left < 4 + 16 + 1) {
222 (unsigned long) left);
261 left -= 4;
265 left -= 16;
273 wpa_hexdump(MSG_MSGDUMP, "EAP-PSK: PCHANNEL - cipher msg", msg, left);
275 decrypted = os_memdup(msg, left);
286 left, ta
[all...]
/freebsd-current/usr.bin/sdiff/
H A Dsdiff.c44 char *left; member in struct:diffline
72 static bool lflag; /* print only left column for identical lines */
110 { "left-column", no_argument, NULL, 'l' },
120 "-l, --left-column: only print the left column for identical lines.",
512 * Prints an individual column (left or right), taking into account
587 /* Choose left column as-is. */
656 /* Only print left column. */
817 /* If the -l flag was specified, print only left column. */
892 enqueue(char *left, cha argument
989 char divc, *left, *right; local
[all...]
/freebsd-current/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);
233 node->left = NULL;
268 // Rotate left using node as the rotation root.
280 node->right = pivot->left;
284 pivot->left = node;
298 while (node->left != NULL)
299 node = node->left;
327 node = node->left;
757 index_stream *left = (index_stream *)(this->node.left); local
1250 size_t left = 0; local
[all...]
/freebsd-current/crypto/openssl/ssl/record/
H A Drec_layer_s3.c194 size_t len, left, align = 0; local
208 left = rb->left;
216 if (left == 0)
228 * pointed to by 'packet', 'left' extra ones at the end
231 memmove(pkt, s->rlayer.packet, len + left);
242 if (left == 0 && extend)
244 if (left > 0 && n > left)
245 n = left;
[all...]
/freebsd-current/contrib/llvm-project/lldb/source/Plugins/Language/CPlusPlus/
H A DLibCxxMap.cpp32 ValueObjectSP left() const { function in class:MapEntry
143 MapEntry left(x.left());
145 while (!left.null()) {
146 if (left.error()) {
150 x = left;
151 left.SetEntry(x.left());
163 rhs.SetEntry(rhs.left());
/freebsd-current/sys/dev/sound/macio/
H A Donyx.c75 static int onyx_set(struct snd_mixer *m, unsigned dev, unsigned left,
269 onyx_set(struct snd_mixer *m, unsigned dev, unsigned left, unsigned right) argument
289 if (left > 100 || right > 100)
292 l = left + 128;
304 return (left | (right << 8));
/freebsd-current/contrib/llvm-project/clang/include/clang/Basic/
H A DObjCRuntime.h489 friend bool operator==(const ObjCRuntime &left, const ObjCRuntime &right) { argument
490 return left.getKind() == right.getKind() &&
491 left.getVersion() == right.getVersion();
494 friend bool operator!=(const ObjCRuntime &left, const ObjCRuntime &right) { argument
495 return !(left == right);
/freebsd-current/sys/contrib/dev/acpica/compiler/
H A Dasltokens.y564 %left <i> PARSEOP_EXP_LOGICAL_OR
565 %left <i> PARSEOP_EXP_LOGICAL_AND
566 %left <i> PARSEOP_EXP_OR
567 %left <i> PARSEOP_EXP_XOR
568 %left <i> PARSEOP_EXP_AND
569 %left <i> PARSEOP_EXP_EQUAL
571 %left <i> PARSEOP_EXP_GREATER
575 %left <i> PARSEOP_EXP_SHIFT_RIGHT
577 %left <i> PARSEOP_EXP_ADD
579 %left <
[all...]
/freebsd-current/contrib/libxo/xohtml/external/
H A Djquery.qtip.js44 LEFT = 'left',
707 position = { left: 0, top: 0 },
717 // Force left top and set position
719 position = { left: target[0], top: target[1] };
724 // Force left top to allow flipping
740 left: event.pageX - position.left + (offset && offset.left || 0),
746 position.left -= mouse.scrollX - win.scrollLeft();
774 left
[all...]
/freebsd-current/contrib/wpa/src/eap_server/
H A Deap_server_peap.c694 size_t left; local
699 pos = eap_hdr_validate(EAP_VENDOR_IETF, EAP_TYPE_TLV, in_data, &left);
706 wpa_hexdump(MSG_DEBUG, "EAP-PEAP: Received TLVs", pos, left);
707 while (left >= 4) {
713 left -= 4;
714 if ((size_t) tlv_len > left) {
716 "(tlv_len=%d left=%lu)", tlv_len,
717 (unsigned long) left);
743 left -= tlv_len;
745 if (left) {
814 size_t left; local
948 size_t left; local
[all...]
/freebsd-current/sys/dev/sound/pci/
H A Demu10kx-pcm.c272 emu_dspmixer_set(struct snd_mixer *m, unsigned dev, unsigned left, unsigned right) argument
283 mix_set(sc->sm, dev, left, right);
290 sc->emu10k1_volcache[0][0] = left;
291 left = left * sc->emu10k1_volcache[1][0] / 100;
296 emumix_set_volume(sc->card, M_MASTER_REAR_L, left);
299 emumix_set_volume(sc->card, M_MASTER_CENTER, (left+right)/2);
300 emumix_set_volume(sc->card, M_MASTER_SUBWOOFER, (left+right)/2);
306 emumix_set_volume(sc->card, M_MASTER_REAR_L, left);
310 emumix_set_volume(sc->card, M_MASTER_CENTER, (left
486 emu_efxmixer_set(struct snd_mixer *m, unsigned dev, unsigned left, unsigned right) argument
570 int left, right; local
[all...]

Completed in 227 milliseconds

1234567891011>>