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

1234567891011>>

/freebsd-9.3-release/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-9.3-release/contrib/compiler-rt/lib/sparc64/
H A Dudivsi3.S1 ! This file intentionally left blank
H A Dumodsi3.S1 ! This file intentionally left blank
/freebsd-9.3-release/crypto/openssh/openbsd-compat/
H A Drealpath.c49 * in which case the path which caused trouble is left in (resolved).
59 char left[PATH_MAX], next_token[PATH_MAX], symlink[PATH_MAX]; local
69 left_len = strlcpy(left, path + 1, sizeof(left));
76 left_len = strlcpy(left, path, sizeof(left));
78 if (left_len >= sizeof(left) || resolved_len >= PATH_MAX) {
84 * Iterate over path components in `left'.
88 * Extract the next path component and adjust `left'
91 p = strchr(left, '/');
[all...]
/freebsd-9.3-release/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-9.3-release/contrib/wpa/src/crypto/
H A Daes-ctr.c34 size_t j, len, left = data_len; local
44 while (left > 0) {
47 len = (left < AES_BLOCK_SIZE) ? left : AES_BLOCK_SIZE;
51 left -= len;
H A Daes-omac1.c54 size_t i, e, left, total_len; local
64 left = total_len;
70 while (left >= AES_BLOCK_SIZE) {
79 if (left > AES_BLOCK_SIZE)
81 left -= AES_BLOCK_SIZE;
88 if (left || total_len == 0) {
89 for (i = 0; i < left; i++) {
97 cbc[left] ^= 0x80;
H A Dsha1-pbkdf2.c85 size_t left = buflen, plen; local
88 while (left > 0) {
93 plen = left > SHA1_MAC_LEN ? SHA1_MAC_LEN : left;
96 left -= plen;
/freebsd-9.3-release/lib/libugidfw/
H A Dugidfw.c66 size_t left, len; local
70 left = buflen;
73 len = snprintf(cur, left, "subject ");
74 if (len < 0 || len > left)
76 left -= len;
80 len = snprintf(cur, left, "not ");
81 if (len < 0 || len > left)
83 left -= len;
91 len = snprintf(cur, left, "! ");
92 if (len < 0 || len > left)
[all...]
/freebsd-9.3-release/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
82 left_len = strlcpy(left, path + 1, sizeof(left));
94 left_len = strlcpy(left, path, sizeof(left));
96 if (left_len >= sizeof(left) || resolved_len >= PATH_MAX) {
104 * Iterate over path components in `left'.
108 * Extract the next path component and adjust `left'
111 p = strchr(left, '/');
[all...]
/freebsd-9.3-release/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-9.3-release/usr.bin/csup/
H A Dglobtree.c72 struct globtree *left; member in struct:globtree
96 gt->left = NULL;
144 globtree_and(struct globtree *left, struct globtree *right) argument
148 if (left->type == GLOBTREE_FALSE || right->type == GLOBTREE_FALSE) {
149 globtree_free(left);
154 if (left->type == GLOBTREE_TRUE) {
155 globtree_free(left);
160 return (left);
163 gt->left = left;
169 globtree_or(struct globtree *left, struct globtree *right) argument
[all...]
/freebsd-9.3-release/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-9.3-release/contrib/ofed/libibverbs/src/
H A Dmemory.c68 struct ibv_mem_node *left, *right; member in struct:ibv_mem_node
113 mm_root->left = NULL;
125 if (node->left) {
126 node = node->left;
130 while (node->parent && node == node->parent->left)
143 while (node->left)
144 node = node->left;
159 tmp = node->left;
161 node->left = tmp->right;
162 if (node->left)
[all...]
/freebsd-9.3-release/contrib/binutils/libiberty/
H A Dsplay-tree.c83 deallocated, we just need to process left and right. */
85 if (active->left)
87 KDEL (active->left->key);
88 VDEL (active->left->value);
89 active->left->key = (splay_tree_key)pending;
90 pending = (splay_tree_node)(active->left);
109 /* Rotate the edge joining the left child N with its parent P. PP is the
118 p->left = tmp;
129 tmp = n->left;
130 n->left
353 splay_tree_node left, right; local
[all...]
/freebsd-9.3-release/contrib/gcclibs/libiberty/
H A Dsplay-tree.c83 deallocated, we just need to process left and right. */
85 if (active->left)
87 KDEL (active->left->key);
88 VDEL (active->left->value);
89 active->left->key = (splay_tree_key)pending;
90 pending = (splay_tree_node)(active->left);
109 /* Rotate the edge joining the left child N with its parent P. PP is the
118 p->left = tmp;
129 tmp = n->left;
130 n->left
353 splay_tree_node left, right; local
[all...]
/freebsd-9.3-release/contrib/binutils/bfd/
H A Dmep-relocs.pl103 my ($bits, $left, $right, $ci, $c, $cv);
105 $left = 0;
109 $left++;
111 $left = 0;
122 return ($bits, $left, $right, $mask, $rmask);
133 ($bits, $left, $right, $mask) = mask2shifts ($mask);
142 $c, $bytesize, $bits, $left, $right, $pcrel, $overflow, $mask);
176 ($bits, $left, $right, $mask, $rmask) = mask2shifts ($mask);
177 if ($left > $right) { $left
[all...]
/freebsd-9.3-release/contrib/xz/src/xz/
H A Dutil.c189 size_t left = sizeof(bufs[slot]); local
195 my_snprintf(&pos, &left, "%'u", (unsigned int)value);
197 my_snprintf(&pos, &left, "%u", (unsigned int)value);
209 my_snprintf(&pos, &left, "%'.1f", d);
211 my_snprintf(&pos, &left, "%.1f", d);
215 my_snprintf(&pos, &left, " %s", suffix[unit]);
219 snprintf(pos, left, " (%'" PRIu64 " B)", value);
221 snprintf(pos, left, " (%" PRIu64 " B)", value);
229 my_snprintf(char **pos, size_t *left, const char *fmt, ...) argument
233 const int len = vsnprintf(*pos, *left, fm
[all...]

Completed in 206 milliseconds

1234567891011>>