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

1234567891011>>

/freebsd-10.0-release/contrib/ncurses/ncurses/base/
H A DMKkeyname.awk36 first = 1;
41 if (first) {
49 if (first) {
55 first = 0;
/freebsd-10.0-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-10.0-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-10.0-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-10.0-release/contrib/unbound/services/
H A Doutbound_list.c50 list->first = NULL;
57 p = list->first;
70 if(list->first)
71 list->first->prev = e;
72 e->next = list->first;
74 list->first = e;
87 else list->first = e->next;
/freebsd-10.0-release/contrib/atf/atf-run/
H A Dseveral_tcs_helper.c32 ATF_TC(first); variable
33 ATF_TC_HEAD(first, tc)
37 ATF_TC_BODY(first, tc)
62 ATF_TP_ADD_TC(tp, first);
/freebsd-10.0-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-10.0-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-10.0-release/crypto/openssl/crypto/asn1/
H A Dt_x509a.c70 char oidstr[80], first; local
74 first = 1;
78 if(!first) BIO_puts(out, ", ");
79 else first = 0;
87 first = 1;
91 if(!first) BIO_puts(out, ", ");
92 else first = 0;
H A Dt_bitst.c68 char first = 1; local
72 if(!first) BIO_puts(out, ", ");
74 first = 0;
/freebsd-10.0-release/tools/regression/usr.sbin/etcupdate/
H A Dtests.sh63 states="equal first second difftype difflinks difffiles"
85 # Note that if the old and new files are identical (so first
110 # /equal/first/first: The file is missing from the test
113 mkfifo $i/equal/first/first/fifo
114 echo "foo" > $i/equal/first/first/file
115 mkdir $i/equal/first/first/di
[all...]
H A Dalways.sh63 states="equal first second difftype difflinks difffiles"
90 # /first/difftype/second: File with different local type
92 mkfifo $OLD/first/difftype/second/fifo
93 mkdir $TEST/first/difftype/second/fifo
95 # /first/difflinks/second: Modified link removed. Should
97 ln -s "old link" $OLD/first/difflinks/second/link
98 ln -s "test link" $TEST/first/difflinks/second/link
100 # /first/difffiles/second: Modified file removed. Should
102 echo "foo" > $OLD/first/difffiles/second/file
103 echo "bar" > $TEST/first/difffile
[all...]
/freebsd-10.0-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-10.0-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-10.0-release/contrib/flex/
H A Dnfa.c292 * new = link_machines( first, last );
294 * new - a machine constructed by connecting first to last
295 * first - the machine whose successor is to be last
296 * last - the machine whose predecessor is to be first
298 * note: this routine concatenates the machine first with the machine
299 * last to produce a machine new which will pattern-match first first
304 int link_machines (first, last)
305 int first, last;
307 if (first
[all...]
/freebsd-10.0-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-10.0-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-10.0-release/usr.bin/seq/
H A Dseq.c79 double first = 1.0; local
130 "usage: %s [-w] [-f format] [-s string] [-t string] [first [incr]] last\n",
138 first = e_atof(argv[0]);
144 errx(1, "zero %screment", (first < last)? "in" : "de");
149 incr = (first < last) ? 1.0 : -1.0;
151 if (incr <= 0.0 && first < last)
154 if (incr >= 0.0 && first > last)
166 fmt = generate_format(first, incr, last, equalize, pad);
169 for (; first <= last; first
408 generate_format(double first, double incr, double last, int equalize, char pad) argument
[all...]
/freebsd-10.0-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-10.0-release/contrib/ncurses/ncurses/tinfo/
H A DMKcaptab.awk44 first = 1;
51 if (first) {
62 first = 0;
/freebsd-10.0-release/crypto/heimdal/lib/roken/
H A Dstrcollect.c80 strcollect(char *first, ...) argument
88 ret[0] = first;
89 va_start(ap, first);
/freebsd-10.0-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-10.0-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-10.0-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...]
/freebsd-10.0-release/sys/ofed/include/linux/
H A Dlist.h172 struct list_head *first; local
177 first = list->next;
179 first->prev = prev;
180 prev->next = first;
220 struct hlist_node *first; member in struct:hlist_head
229 #define INIT_HLIST_HEAD(head) (head)->first = NULL
247 return !h->first;
273 n->next = h->first;
274 if (h->first)
275 h->first
[all...]

Completed in 509 milliseconds

1234567891011>>