Searched refs:first (Results 1 - 25 of 1305) sorted by relevance

1234567891011>>

/freebsd-9.3-release/contrib/ncurses/ncurses/base/
H A DMKkeyname.awk36 first = 1;
41 if (first) {
49 if (first) {
55 first = 0;
/freebsd-9.3-release/contrib/binutils/libiberty/
H A Dconcat.c28 available. The argument list is terminated by the first @code{NULL}
70 vconcat_length (const char *first, va_list args) argument
75 for (arg = first; arg ; arg = va_arg (args, const char *))
82 vconcat_copy (char *dst, const char *first, va_list args) argument
87 for (arg = first; arg ; arg = va_arg (args, const char *))
101 concat_length (const char *first, ...) argument
105 VA_OPEN (args, first);
106 VA_FIXEDARG (args, const char *, first);
107 length = vconcat_length (first, args);
116 concat_copy (char *dst, const char *first, argument
141 concat_copy2(const char *first, ...) argument
152 concat(const char *first, ...) argument
189 reconcat(char *optr, const char *first, ...) argument
[all...]
/freebsd-9.3-release/contrib/gcclibs/libiberty/
H A Dconcat.c28 available. The argument list is terminated by the first @code{NULL}
70 vconcat_length (const char *first, va_list args) argument
75 for (arg = first; arg ; arg = va_arg (args, const char *))
82 vconcat_copy (char *dst, const char *first, va_list args) argument
87 for (arg = first; arg ; arg = va_arg (args, const char *))
101 concat_length (const char *first, ...) argument
105 VA_OPEN (args, first);
106 VA_FIXEDARG (args, const char *, first);
107 length = vconcat_length (first, args);
116 concat_copy (char *dst, const char *first, argument
141 concat_copy2(const char *first, ...) argument
152 concat(const char *first, ...) argument
189 reconcat(char *optr, const char *first, ...) argument
[all...]
/freebsd-9.3-release/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/types/
H A Dtst.relenum.d47 first,
52 /zero >= one || second <= first || zero == second/
56 printf("null = %d; first = %d; second = %d", null, first, second);
61 /second < one || two > second || null == first/
65 printf("null = %d; first = %d; second = %d", null, first, second);
70 /first < two && second > one && one != two && zero != first/
/freebsd-9.3-release/contrib/gperf/src/
H A Dkeyword-list.icc25 /* Access to first element of list. */
27 Keyword_List::first () const
41 /* Access to first element of list. */
43 KeywordExt_List::first () const
/freebsd-9.3-release/contrib/libstdc++/include/ext/pb_ds/detail/cc_hash_table_map_/
H A Dresize_store_hash_fn_imps.hpp57 p_e->m_p_next = a_p_entries_resized[pos_hash_pair.first];
58 a_p_entries_resized[pos_hash_pair.first] = p_e;
/freebsd-9.3-release/crypto/openssl/demos/
H A Db64.pl11 if (/^-----BEGIN/) { $first=$_; next; }
18 print "$first$out\n$last\n";
/freebsd-9.3-release/crypto/openssl/crypto/asn1/
H A Dt_x509a.c72 char oidstr[80], first; local
77 first = 1;
80 if (!first)
83 first = 0;
92 first = 1;
95 if (!first)
98 first = 0;
H A Dt_bitst.c69 char first = 1; local
73 if (!first)
76 first = 0;
/freebsd-9.3-release/contrib/ntp/tests/libntp/
H A Dlfpfunc.c29 int l_fp_scmp(const l_fp first, const l_fp second);
30 int l_fp_ucmp(const l_fp first, l_fp second);
32 l_fp l_fp_add(const l_fp first, const l_fp second);
33 l_fp l_fp_subtract(const l_fp first, const l_fp second);
34 l_fp l_fp_negate(const l_fp first);
35 l_fp l_fp_abs(const l_fp first);
36 int l_fp_signum(const l_fp first);
37 double l_fp_convert_to_double(const l_fp first);
39 void l_fp_swap(l_fp * first, l_fp *second);
40 bool l_isgt(const l_fp first, cons
69 l_fp_scmp(const l_fp first, const l_fp second) argument
86 l_fp_ucmp(const l_fp first, l_fp second) argument
129 l_fp_add(const l_fp first, const l_fp second) argument
138 l_fp_subtract(const l_fp first, const l_fp second) argument
147 l_fp_negate(const l_fp first) argument
156 l_fp_abs(const l_fp first) argument
165 l_fp_signum(const l_fp first) argument
173 l_fp_convert_to_double(const l_fp first) argument
189 l_fp_swap(l_fp * first, l_fp *second) argument
207 l_isgt(const l_fp first, const l_fp second) argument
214 l_isgtu(const l_fp first, const l_fp second) argument
221 l_ishis(const l_fp first, const l_fp second) argument
228 l_isgeq(const l_fp first, const l_fp second) argument
235 l_isequ(const l_fp first, const l_fp second) argument
[all...]
/freebsd-9.3-release/contrib/libstdc++/include/bits/
H A Dstl_pair.h70 typedef _T1 first_type; ///< @c first_type is the first bound type
73 _T1 first; ///< @c first is a copy of the first object member in struct:pair
78 /** The default constructor creates @c first and @c second using their
81 : first(), second() { }
85 : first(__a), second(__b) { }
90 : first(__p.first), second(__p.second) { }
97 { return __x.first
[all...]
/freebsd-9.3-release/contrib/llvm/lib/Transforms/Instrumentation/
H A DMaximumSpanningTree.h51 size_t XSizeA = getBlockSize(X.first.first);
52 size_t YSizeA = getBlockSize(Y.first.first);
56 size_t XSizeB = getBlockSize(X.first.second);
57 size_t YSizeB = getBlockSize(Y.first.second);
80 Edge e = (*EWi).first;
82 Forest.insert(e.first);
86 // Iterate over the sorted edges, biggest first.
89 Edge e = (*EWi).first;
[all...]
/freebsd-9.3-release/usr.bin/lex/
H A Dnfa.c283 * new = link_machines( first, last );
285 * new - a machine constructed by connecting first to last
286 * first - the machine whose successor is to be last
287 * last - the machine whose predecessor is to be first
289 * note: this routine concatenates the machine first with the machine
290 * last to produce a machine new which will pattern-match first first
295 int link_machines( first, last )
296 int first, last;
298 if ( first
[all...]
/freebsd-9.3-release/contrib/llvm/lib/TableGen/
H A DStringMatcher.cpp19 /// FindFirstNonCommonLetter - Find the first character in the keys of the
26 for (unsigned i = 0, e = Matches[0]->first.size(); i != e; ++i) {
28 char Letter = Matches[0]->first[i];
31 if (Matches[str]->first[i] != Letter)
35 return Matches[0]->first.size();
51 if (CharNo == Matches[0]->first.size()) {
58 OS << Indent << Split.first << "\t // \"" << Matches[0]->first << "\"\n";
63 OS << Indent << Split.first << "\n";
73 MatchesByLetter[Matches[i]->first[CharN
[all...]
/freebsd-9.3-release/usr.bin/netstat/
H A Dpfkey.c117 unsigned first, type; local
130 for (first = 1, type = 0;
135 if (first) {
137 first = 0;
155 for (first = 1, type = 0;
160 if (first) {
162 first = 0;
/freebsd-9.3-release/tools/regression/usr.sbin/etcupdate/
H A Dalways.sh67 states="equal first second difftype difflinks difffiles"
94 # /first/difftype/second: File with different local type
96 mkfifo $OLD/first/difftype/second/fifo
97 mkdir $TEST/first/difftype/second/fifo
99 # /first/difflinks/second: Modified link removed. Should
101 ln -s "old link" $OLD/first/difflinks/second/link
102 ln -s "test link" $TEST/first/difflinks/second/link
104 # /first/difffiles/second: Modified file removed. Should
106 echo "foo" > $OLD/first/difffiles/second/file
107 echo "bar" > $TEST/first/difffile
[all...]
H A Dtests.sh67 states="equal first second difftype difflinks difffiles"
89 # Note that if the old and new files are identical (so first
114 # /equal/first/first: The file is missing from the test
117 mkfifo $i/equal/first/first/fifo
118 echo "foo" > $i/equal/first/first/file
119 mkdir $i/equal/first/first/di
[all...]
/freebsd-9.3-release/sys/gnu/fs/xfs/FreeBSD/
H A Dxfs_fs_subr.c69 xfs_off_t first,
78 truncate_inode_pages(ip->i_mapping, first);
90 xfs_off_t first,
103 truncate_inode_pages(ip->i_mapping, first);
115 xfs_off_t first,
67 fs_tosspages( bhv_desc_t *bdp, xfs_off_t first, xfs_off_t last, int fiopt) argument
88 fs_flushinval_pages( bhv_desc_t *bdp, xfs_off_t first, xfs_off_t last, int fiopt) argument
113 fs_flush_pages( bhv_desc_t *bdp, xfs_off_t first, xfs_off_t last, uint64_t flags, int fiopt) argument
/freebsd-9.3-release/usr.bin/seq/
H A Dseq.c80 double first = 1.0; local
131 "usage: %s [-w] [-f format] [-s string] [-t string] [first [incr]] last\n",
139 first = e_atof(argv[0]);
145 errx(1, "zero %screment", (first < last)? "in" : "de");
150 incr = (first < last) ? 1.0 : -1.0;
152 if (incr <= 0.0 && first < last)
155 if (incr >= 0.0 && first > last)
167 fmt = generate_format(first, incr, last, equalize, pad);
170 for (; first <= last; first
409 generate_format(double first, double incr, double last, int equalize, char pad) argument
[all...]
/freebsd-9.3-release/contrib/gcclibs/libgomp/
H A Dsingle.c33 /* This routine is called when first encountering a SINGLE construct that
46 /* This routine is called when first encountering a SINGLE construct that
56 bool first; local
59 first = gomp_work_share_start (false);
62 if (first)
/freebsd-9.3-release/contrib/ncurses/ncurses/tinfo/
H A DMKcaptab.awk44 first = 1;
51 if (first) {
62 first = 0;
/freebsd-9.3-release/crypto/heimdal/lib/roken/
H A Dstrcollect.c83 strcollect(char *first, ...) argument
91 ret[0] = first;
92 va_start(ap, first);
/freebsd-9.3-release/contrib/llvm/include/llvm/ExecutionEngine/
H A DGenericValue.h28 unsigned int first; member in struct:llvm::GenericValue::IntPair
45 GenericValue() : IntVal(1,0) {UIntPairVal.first = 0; UIntPairVal.second = 0;}
/freebsd-9.3-release/contrib/llvm/lib/CodeGen/
H A DMachineModuleInfoImpls.cpp29 const MCSymbol *LHSS = ((const PairTy *)LHS)->first;
30 const MCSymbol *RHSS = ((const PairTy *)RHS)->first;
/freebsd-9.3-release/contrib/llvm/tools/clang/include/clang/Serialization/
H A DContinuousRangeMap.h30 /// the first range is from I0 to I1, the second from I1 to I2, the third from
50 return L.first < R;
53 return L < R.first;
59 return L.first < R.first;
68 assert((Rep.empty() || Rep.back().first < Val.first) &&
75 if (I != Rep.end() && I->first == Val.first) {
93 // I points to the first entr
[all...]

Completed in 259 milliseconds

1234567891011>>