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

1234567891011>>

/freebsd-current/contrib/dialog/samples/
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 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 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-current/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-current/crypto/openssl/crypto/bio/
H A Dbio_cb.c25 int left; local
31 left = BIO_snprintf(buf, sizeof(buf), "BIO[%p]: ", (void *)bio);
34 if (left < 0)
35 left = 0;
36 p = buf + left;
37 left = sizeof(buf) - left;
41 BIO_snprintf(p, left, "Free - %s\n", bio->method->name);
45 BIO_snprintf(p, left, "read(%d,%zu) - %s fd=%d\n",
49 BIO_snprintf(p, left, "rea
[all...]
/freebsd-current/usr.bin/m4/
H A Dparser.y28 %left LOR
29 %left LAND
30 %left '|'
31 %left '^'
32 %left '&'
33 %left EQ NE
34 %left '<' LE '>' GE
35 %left LSHIFT RSHIFT
36 %left '+' '-'
37 %left '*' '/' '
[all...]
/freebsd-current/contrib/byacc/test/
H A Derr_syntax11.y6 %left '|'
/freebsd-current/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-current/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-current/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DGCNILPSched.cpp42 const SUnit *pickBest(const SUnit *left, const SUnit *right);
130 // Return -1 if left has higher priority, 1 if right has higher priority.
132 static int BUCompareLatency(const SUnit *left, const SUnit *right) { argument
135 int LHeight = (int)left->getHeight();
148 int LDepth = left->getDepth();
151 LLVM_DEBUG(dbgs() << " Comparing latency of SU (" << left->NodeNum
156 if (left->Latency != right->Latency)
157 return left->Latency > right->Latency ? 1 : -1;
162 const SUnit *GCNILPScheduler::pickBest(const SUnit *left, const SUnit *right) argument
169 int spread = (int)left
[all...]
/freebsd-current/crypto/openssh/
H A Dsftp-realpath.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
89 left_len = strlcpy(left, path + 1, sizeof(left));
99 left_len = strlcpy(left, path, sizeof(left));
101 if (left_len >= sizeof(left) || resolved_len >= PATH_MAX) {
107 * Iterate over path components in `left'.
111 * Extract the next path component and adjust `left'
114 p = strchr(left, '/');
[all...]
/freebsd-current/contrib/wpa/src/ap/
H A Dfils_hlp.h13 const u8 *pos, int left);
/freebsd-current/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-current/sys/contrib/zlib/
H A Duncompr.c32 uLong len, left; local
37 left = *destLen;
41 left = 1;
59 stream.avail_out = left > (uLong)max ? max : (uInt)left;
60 left -= stream.avail_out;
73 left = 1;
78 err == Z_BUF_ERROR && left + stream.avail_out ? Z_DATA_ERROR :
/freebsd-current/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-current/contrib/libdiff/test/
H A Dresults_test.c34 .left = &d_left,
38 diff_atomize_text_by_line(NULL, result->left);
45 diff_data_init_subsection(&state.left, result->left,
46 result->left->atoms.head,
47 result->left->atoms.len);
54 &state.left.atoms.head[0], 2,
59 &state.left.atoms.head[2], 0,
64 &state.left.atoms.head[2], 3,
69 &state.left
[all...]
/freebsd-current/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-current/tools/test/stress2/misc/
H A Dchain.sh48 coroutine void f(chan left, chan right) {
49 chs(left, int, 1 + chr(right, int));
57 chan left = NULL;
62 left = right;
64 go(f(left, right));
/freebsd-current/contrib/ntp/libntp/
H A Dntp_realpath.c96 * in which case the path which caused trouble is left in (resolved).
106 char left[NTP_PATH_MAX], next_token[NTP_PATH_MAX], symlink[NTP_PATH_MAX]; local
115 left_len = strlcpy(left, path + 1, sizeof(left));
123 left_len = strlcpy(left, path, sizeof(left));
125 if (left_len >= sizeof(left) || resolved_len >= NTP_PATH_MAX) {
131 * Iterate over path components in `left'.
135 * Extract the next path component and adjust `left'
138 p = strchr(left, '/');
[all...]

Completed in 140 milliseconds

1234567891011>>