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

1234567891011>>

/freebsd-11-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-11-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-11-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-11-stable/contrib/byacc/test/
H A Derr_syntax11.y6 %left '|'
/freebsd-11-stable/lib/libugidfw/
H A Dugidfw.c68 size_t left, len; local
72 left = buflen;
74 len = snprintf(cur, left, "subject ");
75 if (len < 0 || len > left)
77 left -= len;
81 len = snprintf(cur, left, "not ");
82 if (len < 0 || len > left)
84 left -= len;
92 len = snprintf(cur, left, "! ");
93 if (len < 0 || len > left)
[all...]
/freebsd-11-stable/lib/libcasper/services/cap_random/
H A Dcap_random.c54 size_t left, randbufsize; local
56 left = nbytes;
59 while (left > 0) {
63 (uint64_t)(left > MAXSIZE ? MAXSIZE : left));
79 assert(left >= randbufsize);
80 left -= randbufsize;
/freebsd-11-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-11-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-11-stable/contrib/libstdc++/include/ext/pb_ds/detail/binary_heap_/
H A Derase_fn_imps.hpp129 const size_type left = partition(pred_t(pred)); local
131 _GLIBCXX_DEBUG_ASSERT(m_size >= left);
133 const size_type ersd = m_size - left;
135 for (size_type i = left; i < m_size; ++i)
141 resize_policy::get_new_size_for_arbitrary(left);
145 std::copy(m_a_entries, m_a_entries + left, a_entries);
156 m_size = left;
228 size_type left = 0; local
231 while (right + 1 != left)
233 _GLIBCXX_DEBUG_ASSERT(left <
[all...]
/freebsd-11-stable/contrib/wpa/src/ap/
H A Dfils_hlp.h13 const u8 *pos, int left);
/freebsd-11-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-11-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-11-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-11-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-11-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-11-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-11-stable/lib/libc/stdlib/
H A Drealpath.c48 * in which case the path which caused trouble is left in (resolved).
58 char left[PATH_MAX], next_token[PATH_MAX], symlink[PATH_MAX]; local
67 left_len = strlcpy(left, path + 1, sizeof(left));
75 left_len = strlcpy(left, path, sizeof(left));
77 if (left_len >= sizeof(left) || resolved_len >= PATH_MAX) {
83 * Iterate over path components in `left'.
87 * Extract the next path component and adjust `left'
90 p = strchr(left, '/');
[all...]

Completed in 145 milliseconds

1234567891011>>