Searched refs:left (Results 1 - 25 of 541) sorted by relevance

1234567891011>>

/freebsd-13-stable/contrib/dialog/samples/
H A Dinfobox6 left=10
8 while test $left != 0
18 You have $left $unit to read this..." 10 52
19 left=`expr $left - 1`
20 test $left = 1 && unit="second"
H A Dinfobox16 left=10
8 while test $left != 0
18 You have $left $unit to read this..." 10 52
19 left=`expr $left - 1`
20 test $left = 1 && unit="second"
H A Dinfobox26 left=10
8 while test $left != 0
18 You have $left $unit to read this..." 0 0
19 left=`expr $left - 1`
20 test $left = 1 && unit="second"
H A Dinfobox36 left=10
8 while test $left != 0
19 You have $left $unit to read this..." 0 0
20 left=`expr $left - 1`
21 test $left = 1 && unit="second"
H A Dinfobox46 left=10
8 while test $left != 0
19 You have $left $unit to read this..." 0 0
20 left=`expr $left - 1`
21 test $left = 1 && unit="second"
H A Drotated-data8 left=$1
9 next=`expr $left + 1`
13 left=1
17 char=`echo "$@" | cut -b -${left}`
H A Dinfobox612 left=10
20 while test $left != 0
25 --begin $left `expr $left + 5` \
32 You have $left $unit to read this..." 0 0 $last
35 left=`expr $left - 1`
36 test $left = 1 && unit="second"
H A Dinfobox510 left=10
18 while test $left != 0
30 You have $left $unit to read this..." 0 0 $last
33 left=`expr $left - 1`
34 test $left = 1 && unit="second"
/freebsd-13-stable/contrib/llvm-project/compiler-rt/lib/builtins/sparc64/
H A Dudivsi3.S1 ! This file intentionally left blank
H A Dumodsi3.S1 ! This file intentionally left blank
/freebsd-13-stable/usr.bin/m4/
H A Dparser.y30 %left LOR
31 %left LAND
32 %left '|'
33 %left '^'
34 %left '&'
35 %left EQ NE
36 %left '<' LE '>' GE
37 %left LSHIFT RSHIFT
38 %left '+' '-'
39 %left '*' '/' '
[all...]
/freebsd-13-stable/crypto/openssl/crypto/bio/
H A Dbio_cb.c24 int len, left; local
35 left = sizeof(buf) - len;
39 BIO_snprintf(p, left, "Free - %s\n", bio->method->name);
43 BIO_snprintf(p, left, "read(%d,%lu) - %s fd=%d\n",
47 BIO_snprintf(p, left, "read(%d,%lu) - %s\n",
52 BIO_snprintf(p, left, "write(%d,%lu) - %s fd=%d\n",
56 BIO_snprintf(p, left, "write(%d,%lu) - %s\n",
60 BIO_snprintf(p, left, "puts() - %s\n", bio->method->name);
63 BIO_snprintf(p, left, "gets(%lu) - %s\n", (unsigned long)argi,
67 BIO_snprintf(p, left, "ctr
[all...]
/freebsd-13-stable/contrib/bmake/unit-tests/
H A Ddeptgt-suffixes.exp6 # ".src-left" (num 2, ref 2)
12 # From: .src-left
14 # ".tgt-left" (num 4, ref 2)
19 # To: .tgt-left
23 .src-left.tgt-right:
26 .src-right.tgt-left:
29 : Making deptgt-suffixes.src-left out of nothing.
30 : Making deptgt-suffixes.tgt-right from deptgt-suffixes.src-left.
32 : Making deptgt-suffixes.tgt-left from deptgt-suffixes.src-right.
/freebsd-13-stable/contrib/byacc/test/
H A Derr_syntax11.y6 %left '|'
/freebsd-13-stable/lib/libugidfw/
H A Dugidfw.c70 size_t left, len; local
74 left = buflen;
76 len = snprintf(cur, left, "subject ");
77 if (len < 0 || len > left)
79 left -= len;
83 len = snprintf(cur, left, "not ");
84 if (len < 0 || len > left)
86 left -= len;
94 len = snprintf(cur, left, "! ");
95 if (len < 0 || len > left)
[all...]
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DGCNILPSched.cpp43 const SUnit *pickBest(const SUnit *left, const SUnit *right);
131 // Return -1 if left has higher priority, 1 if right has higher priority.
133 static int BUCompareLatency(const SUnit *left, const SUnit *right) { argument
136 int LHeight = (int)left->getHeight();
149 int LDepth = left->getDepth();
152 LLVM_DEBUG(dbgs() << " Comparing latency of SU (" << left->NodeNum
157 if (left->Latency != right->Latency)
158 return left->Latency > right->Latency ? 1 : -1;
163 const SUnit *GCNILPScheduler::pickBest(const SUnit *left, const SUnit *right) argument
170 int spread = (int)left
[all...]
/freebsd-13-stable/crypto/openssh/openbsd-compat/
H A Drealpath.c58 * in which case the path which caused trouble is left in (resolved).
68 char left[PATH_MAX], next_token[PATH_MAX], symlink[PATH_MAX]; local
92 left_len = strlcpy(left, path + 1, sizeof(left));
102 left_len = strlcpy(left, path, sizeof(left));
104 if (left_len >= sizeof(left) || resolved_len >= PATH_MAX) {
110 * Iterate over path components in `left'.
114 * Extract the next path component and adjust `left'
117 p = strchr(left, '/');
[all...]
/freebsd-13-stable/contrib/wpa/src/ap/
H A Dfils_hlp.h13 const u8 *pos, int left);
/freebsd-13-stable/contrib/unbound/util/
H A Drbtree.c61 /** rotate subtree left (to preserve redblack property) */
104 * Rotates the node to the left.
111 node->right = right->left;
112 if (right->left != RBTREE_NULL)
113 right->left->parent = node;
118 if (node == node->parent->left) {
119 node->parent->left = right;
126 right->left = node;
137 rbnode_type *left = node->left; local
[all...]
/freebsd-13-stable/sys/contrib/zlib/
H A Duncompr.c36 uLong len, left; local
41 left = *destLen;
45 left = 1;
63 stream.avail_out = left > (uLong)max ? max : (uInt)left;
64 left -= stream.avail_out;
77 left = 1;
82 err == Z_BUF_ERROR && left + stream.avail_out ? Z_DATA_ERROR :
/freebsd-13-stable/contrib/apr/include/
H A Dapr_user.h104 * @param left One uid to test
111 APR_DECLARE(apr_status_t) apr_uid_compare(apr_uid_t left, apr_uid_t right);
113 #define apr_uid_compare(left,right) (((left) == (right)) ? APR_SUCCESS : APR_EMISMATCH)
138 * @param left One gid to test
145 APR_DECLARE(apr_status_t) apr_gid_compare(apr_gid_t left, apr_gid_t right);
147 #define apr_gid_compare(left,right) (((left) == (right)) ? APR_SUCCESS : APR_EMISMATCH)
/freebsd-13-stable/contrib/ldns/
H A Drbtree.c64 /** rotate subtree left (to preserve redblack property) */
112 * Rotates the node to the left.
119 node->right = right->left;
120 if (right->left != LDNS_RBTREE_NULL)
121 right->left->parent = node;
126 if (node == node->parent->left) {
127 node->parent->left = right;
134 right->left = node;
145 ldns_rbnode_t *left = node->left; local
[all...]
/freebsd-13-stable/contrib/wpa/src/crypto/
H A Daes-omac1.c49 size_t i, e, left, total_len; local
62 left = total_len;
68 while (left >= AES_BLOCK_SIZE) {
77 left == AES_BLOCK_SIZE)
84 if (left > AES_BLOCK_SIZE)
86 left -= AES_BLOCK_SIZE;
93 if (left || total_len == 0) {
94 for (i = 0; i < left; i++) {
101 if (i + 1 == left)
108 cbc[left]
[all...]
/freebsd-13-stable/contrib/xz/src/liblzma/lz/
H A Dlz_decoder.h132 uint32_t left = my_min(dict_avail, *len); local
133 *len -= left;
138 if (distance < left) {
144 } while (--left > 0);
150 left);
151 dict->pos += left;
162 if (copy_size < left) {
166 copy_size = left - copy_size;
171 left);
172 dict->pos += left;
203 dict_write(lzma_dict *restrict dict, const uint8_t *restrict in, size_t *restrict in_pos, size_t in_size, size_t *restrict left) argument
[all...]
/freebsd-13-stable/lib/libc/stdlib/
H A Drealpath.c55 * in which case the path which caused trouble is left in (resolved).
65 char left[PATH_MAX], next_token[PATH_MAX], symlink[PATH_MAX]; local
74 left_len = strlcpy(left, path + 1, sizeof(left));
82 left_len = strlcpy(left, path, sizeof(left));
84 if (left_len >= sizeof(left) || resolved_len >= PATH_MAX) {
90 * Iterate over path components in `left'.
94 * Extract the next path component and adjust `left'
97 p = strchr(left, '/');
[all...]

Completed in 241 milliseconds

1234567891011>>