| /freebsd-9-stable/contrib/binutils/libiberty/ |
| D | concat.c | 70 vconcat_length (const char *first, va_list args) in vconcat_length() argument 75 for (arg = first; arg ; arg = va_arg (args, const char *)) in vconcat_length() 82 vconcat_copy (char *dst, const char *first, va_list args) in vconcat_copy() argument 87 for (arg = first; arg ; arg = va_arg (args, const char *)) in vconcat_copy() 101 concat_length (const char *first, ...) in concat_length() argument 105 VA_OPEN (args, first); in concat_length() 106 VA_FIXEDARG (args, const char *, first); in concat_length() 107 length = vconcat_length (first, args); in concat_length() 116 concat_copy (char *dst, const char *first, ...) in concat_copy() argument 120 VA_OPEN (args, first); in concat_copy() [all …]
|
| /freebsd-9-stable/contrib/gcclibs/libiberty/ |
| D | concat.c | 70 vconcat_length (const char *first, va_list args) in vconcat_length() argument 75 for (arg = first; arg ; arg = va_arg (args, const char *)) in vconcat_length() 82 vconcat_copy (char *dst, const char *first, va_list args) in vconcat_copy() argument 87 for (arg = first; arg ; arg = va_arg (args, const char *)) in vconcat_copy() 101 concat_length (const char *first, ...) in concat_length() argument 105 VA_OPEN (args, first); in concat_length() 106 VA_FIXEDARG (args, const char *, first); in concat_length() 107 length = vconcat_length (first, args); in concat_length() 116 concat_copy (char *dst, const char *first, ...) in concat_copy() argument 120 VA_OPEN (args, first); in concat_copy() [all …]
|
| /freebsd-9-stable/tools/regression/usr.sbin/etcupdate/ |
| D | tests.sh | 117 mkfifo $i/equal/first/first/fifo 118 echo "foo" > $i/equal/first/first/file 119 mkdir $i/equal/first/first/dir 120 ln -s "bar" $i/equal/first/first/link 149 mkfifo $i/first/equal/second/fifo 150 echo "foo" > $i/first/equal/second/file 151 mkdir $i/first/equal/second/emptydir 152 ln -s "bar" $i/first/equal/second/link 153 mkdir $i/first/equal/second/fulldir 154 echo "foo" > $i/first/equal/second/fulldir/file [all …]
|
| D | always.sh | 96 mkfifo $OLD/first/difftype/second/fifo 97 mkdir $TEST/first/difftype/second/fifo 101 ln -s "old link" $OLD/first/difflinks/second/link 102 ln -s "test link" $TEST/first/difflinks/second/link 106 echo "foo" > $OLD/first/difffiles/second/file 107 echo "bar" > $TEST/first/difffiles/second/file 127 mkfifo $OLD/difftype/first/first/fifo 128 mkdir $NEW/difftype/first/first/fifo 158 ln -s "old" $OLD/difflinks/first/first/link 159 ln -s "new" $NEW/difflinks/first/first/link [all …]
|
| /freebsd-9-stable/contrib/ntp/tests/libntp/ |
| D | lfpfunc.c | 29 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, const l_fp second); [all …]
|
| /freebsd-9-stable/usr.bin/lex/ |
| D | nfa.c | 295 int link_machines( first, last ) in link_machines() argument 296 int first, last; in link_machines() 298 if ( first == NIL ) 302 return first; 306 mkxtion( finalst[first], last ); 307 finalst[first] = finalst[last]; 308 lastst[first] = MAX( lastst[first], lastst[last] ); 309 firstst[first] = MIN( firstst[first], firstst[last] ); 311 return first; 369 int mkbranch( first, second ) in mkbranch() argument [all …]
|
| /freebsd-9-stable/contrib/cvs/src/ |
| D | log.c | 33 char *first; member 53 char *first; member 375 if (rp->first != NULL) 376 send_to_server (rp->first, 0); 381 if (rp->first != NULL) 382 send_to_server (rp->first, 0); 390 if (rp->first) 391 free (rp->first); 447 if (log_data.revlist->first) 448 free (log_data.revlist->first); [all …]
|
| D | sanity.sh | 2220 mkdir first-dir 2227 cd first-dir 2263 '"${PROG}"' \[[a-z]* aborted\]: correct above errors first!' 2270 ${PROG} "'\[tag aborted\]: correct the above errors first!' 2328 '"${PROG}"' \[[a-z]* aborted\]: correct above errors first!' 2393 ${CVSROOT_DIRNAME}/first-dir/sdir/ssdir/ssfile,v <-- ssfile 2432 ${CVSROOT_DIRNAME}/first-dir/sdir/ssdir/ssfile,v <-- ssfile 2441 ${CVSROOT_DIRNAME}/first-dir/sdir/ssdir/ssfile,v <-- ssfile 2453 "RCS file: ${CVSROOT_DIRNAME}/first-dir/sdir/ssdir/ssfile,v 2456 "RCS file: ${CVSROOT_DIRNAME}/first-dir/sdir/ssdir/ssfile,v [all …]
|
| /freebsd-9-stable/usr.bin/seq/ |
| D | seq.c | 80 double first = 1.0; in main() local 139 first = e_atof(argv[0]); in main() 145 errx(1, "zero %screment", (first < last)? "in" : "de"); in main() 150 incr = (first < last) ? 1.0 : -1.0; in main() 152 if (incr <= 0.0 && first < last) in main() 155 if (incr >= 0.0 && first > last) in main() 167 fmt = generate_format(first, incr, last, equalize, pad); in main() 170 for (; first <= last; first += incr) { in main() 171 printf(fmt, first); in main() 175 for (; first >= last; first += incr) { in main() [all …]
|
| /freebsd-9-stable/contrib/libstdc++/include/ext/pb_ds/ |
| D | assoc_container.hpp | 218 cc_hash_table(It first, It last) in cc_hash_table() argument 219 { base_type::copy_from_range(first, last); } in cc_hash_table() 225 cc_hash_table(It first, It last, const hash_fn& h) in cc_hash_table() argument 227 { copy_from_range(first, last); } in cc_hash_table() 236 cc_hash_table(It first, It last, const hash_fn& h, const eq_fn& e) in cc_hash_table() argument 238 { copy_from_range(first, last); } in cc_hash_table() 248 cc_hash_table(It first, It last, const hash_fn& h, const eq_fn& e, in cc_hash_table() argument 251 { copy_from_range(first, last); } in cc_hash_table() 262 cc_hash_table(It first, It last, const hash_fn& h, const eq_fn& e, in cc_hash_table() argument 265 { copy_from_range(first, last); } in cc_hash_table() [all …]
|
| /freebsd-9-stable/contrib/llvm/lib/TableGen/ |
| D | StringMatcher.cpp | 26 for (unsigned i = 0, e = Matches[0]->first.size(); i != e; ++i) { in FindFirstNonCommonLetter() 28 char Letter = Matches[0]->first[i]; in FindFirstNonCommonLetter() 31 if (Matches[str]->first[i] != Letter) in FindFirstNonCommonLetter() 35 return Matches[0]->first.size(); in FindFirstNonCommonLetter() 51 if (CharNo == Matches[0]->first.size()) { in EmitStringMatcherForChar() 58 OS << Indent << Split.first << "\t // \"" << Matches[0]->first << "\"\n"; in EmitStringMatcherForChar() 63 OS << Indent << Split.first << "\n"; in EmitStringMatcherForChar() 73 MatchesByLetter[Matches[i]->first[CharNo]].push_back(Matches[i]); in EmitStringMatcherForChar() 87 << Matches[0]->first[CharNo] << "')\n"; in EmitStringMatcherForChar() 93 << ", \"" << Matches[0]->first.substr(CharNo, NumChars) << "\", " in EmitStringMatcherForChar() [all …]
|
| /freebsd-9-stable/usr.bin/netstat/ |
| D | inet6.c | 364 int first, i; in ip6_stats() local 411 for (first = 1, i = 0; i < IP6S_HDRCNT; i++) in ip6_stats() 413 if (first) { in ip6_stats() 415 first = 0; in ip6_stats() 422 for (first = 1, i = 0; i < IP6S_M2MMAX; i++) { in ip6_stats() 425 if (first) { in ip6_stats() 427 first = 0; in ip6_stats() 467 for (first = 1, i = 0; i < IP6S_SCOPECNT; i++) { in ip6_stats() 469 if (first) { in ip6_stats() 471 first = 0; in ip6_stats() [all …]
|
| /freebsd-9-stable/sys/ofed/include/linux/ |
| D | list.h | 176 struct list_head *first; in _list_splice() local 181 first = list->next; in _list_splice() 183 first->prev = prev; in _list_splice() 184 prev->next = first; in _list_splice() 224 struct hlist_node *first; member 233 #define INIT_HLIST_HEAD(head) (head)->first = NULL 251 return !h->first; in hlist_empty() 277 n->next = h->first; in hlist_add_head() 278 if (h->first) in hlist_add_head() 279 h->first->pprev = &n->next; in hlist_add_head() [all …]
|
| /freebsd-9-stable/contrib/libstdc++/include/bits/ |
| D | stl_pair.h | 73 _T1 first; ///< @c first is a copy of the first object member 81 : first(), second() { } in pair() 85 : first(__a), second(__b) { } in pair() 90 : first(__p.first), second(__p.second) { } in pair() 97 { return __x.first == __y.first && __x.second == __y.second; } 103 { return __x.first < __y.first 104 || (!(__y.first < __x.first) && __x.second < __y.second); }
|
| /freebsd-9-stable/contrib/llvm/lib/Transforms/Instrumentation/ |
| D | MaximumSpanningTree.h | 51 size_t XSizeA = getBlockSize(X.first.first); in operator() 52 size_t YSizeA = getBlockSize(Y.first.first); in operator() 56 size_t XSizeB = getBlockSize(X.first.second); in operator() 57 size_t YSizeB = getBlockSize(Y.first.second); in operator() 80 Edge e = (*EWi).first; in MaximumSpanningTree() 82 Forest.insert(e.first); in MaximumSpanningTree() 89 Edge e = (*EWi).first; in MaximumSpanningTree() 91 if (Forest.findLeader(e.first) != Forest.findLeader(e.second)) { in MaximumSpanningTree() 92 Forest.unionSets(e.first, e.second); in MaximumSpanningTree()
|
| /freebsd-9-stable/contrib/gcc/ |
| D | bitmap.c | 82 if (head->first == elt) in bitmap_element_free() 83 head->first = next; in bitmap_element_free() 169 head->first = NULL; in bitmap_elt_clear_from() 192 if (head->first) in bitmap_clear() 193 bitmap_elt_clear_from (head, head->first); in bitmap_clear() 243 bit_obstack->heads = (void *)map->first; in bitmap_obstack_alloc() 272 map->first = (void *)map->obstack->heads; in bitmap_obstack_free() 305 if (head->first == 0) in bitmap_element_link() 308 head->first = element; in bitmap_element_link() 323 head->first = element; in bitmap_element_link() [all …]
|
| D | genmultilib | 148 first=$1 150 case "$first" in 152 all=${initial}`echo $first | sed -e 's_|_/_'g` 153 first=`echo $first | sed -e 's_|_ _'g` 156 ./tmpmultilib $first $@ | grep -v "^${all}" 159 for opt in `echo $first | sed -e 's|/| |'g`; do 163 for opt in `echo $first | sed -e 's|/| |'g`; do 282 first=$1 285 l=`echo ${first} | sed -e 's/=.*$//' -e 's/?/=/g'` 286 r=`echo ${first} | sed -e 's/^.*=//' -e 's/?/=/g'`
|
| /freebsd-9-stable/contrib/llvm/include/llvm/ADT/ |
| D | DenseMap.h | 90 if (!KeyInfoT::isEqual(P->first, EmptyKey)) { in clear() 91 if (!KeyInfoT::isEqual(P->first, TombstoneKey)) { in clear() 95 P->first = EmptyKey; in clear() 155 if (LookupBucketFor(KV.first, TheBucket)) in insert() 160 TheBucket = InsertIntoBucket(KV.first, KV.second, TheBucket); in insert() 170 if (LookupBucketFor(KV.first, TheBucket)) in insert() 175 TheBucket = InsertIntoBucket(std::move(KV.first), in insert() 196 TheBucket->first = getTombstoneKey(); in erase() 204 TheBucket->first = getTombstoneKey(); in erase() 256 if (!KeyInfoT::isEqual(P->first, EmptyKey) && in destroyAll() [all …]
|
| /freebsd-9-stable/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/types/ |
| D | tst.relenum.d | 47 first, enumerator 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-stable/gnu/usr.bin/gdb/kgdb/ |
| D | kthr.c | 55 static struct kthr *first; variable 73 return (first); in kgdb_thr_first() 97 kt->next = first; in kgdb_thr_add_procs() 112 first = kt; in kgdb_thr_add_procs() 127 while (first != NULL) { in kgdb_thr_init() 128 kt = first; in kgdb_thr_init() 129 first = kt->next; in kgdb_thr_init() 165 curkthr = first; in kgdb_thr_init() 166 return (first); in kgdb_thr_init() 174 kt = first; in kgdb_thr_lookup_tid() [all …]
|
| /freebsd-9-stable/contrib/llvm/tools/clang/include/clang/AST/ |
| D | StmtIterator.h | 150 bool empty() const { return first == second; } in empty() 153 Stmt *operator->() const { return first.operator->(); } 154 Stmt *&operator*() const { return first.operator*(); } 158 ++first; 165 ++first; 170 return range.first; in begin() 188 : std::pair<ConstStmtIterator,ConstStmtIterator>(range.first, range.second) in ConstStmtRange() 193 bool empty() const { return first == second; } in empty() 196 const Stmt *operator->() const { return first.operator->(); } 197 const Stmt *operator*() const { return first.operator*(); } [all …]
|
| /freebsd-9-stable/contrib/llvm/lib/Transforms/Vectorize/ |
| D | BBVectorize.cpp | 718 CandidatePairsSet.insert(ValuePair(I->first, *J)); in vectorizePairs() 741 ConnectedPairDeps[*J].push_back(I->first); in vectorizePairs() 772 else if (FixedOrderPairs.count(ValuePair(I->second, I->first))) in vectorizePairs() 773 AllFixedOrderPairs.insert(ValuePair(I->second, I->first)); in vectorizePairs() 794 if (AllPairConnectionTypes.count(VPPair(I->first, *J))) { in vectorizePairs() 795 AllConnectedPairs[I->first].push_back(*J); in vectorizePairs() 796 AllConnectedPairDeps[*J].push_back(I->first); in vectorizePairs() 1275 for (Value::use_iterator I = P.first->use_begin(), in computePairsConnectedTo() 1276 E = P.first->use_end(); I != E; ++I) { in computePairsConnectedTo() 1282 P.first == SI->getPointerOperand()) { in computePairsConnectedTo() [all …]
|
| /freebsd-9-stable/sys/x86/x86/ |
| D | msi.c | 424 struct msi_intsrc *msi, *first; in msi_release() local 428 first = (struct msi_intsrc *)intr_lookup_source(irqs[0]); in msi_release() 429 if (first == NULL) { in msi_release() 435 if (first->msi_msix) { in msi_release() 441 if (first->msi_first == NULL) { in msi_release() 450 if (first->msi_first != first || first->msi_count != count) { in msi_release() 454 KASSERT(first->msi_dev != NULL, ("unowned group")); in msi_release() 459 KASSERT(msi->msi_first == first, ("message not in group")); in msi_release() 460 KASSERT(msi->msi_dev == first->msi_dev, ("owner mismatch")); in msi_release() 468 first->msi_first = NULL; in msi_release() [all …]
|
| /freebsd-9-stable/contrib/dtc/ |
| D | livetree.c | 41 struct property *chain_property(struct property *first, struct property *list) in chain_property() argument 43 assert(first->next == NULL); in chain_property() 45 first->next = list; in chain_property() 46 return first; in chain_property() 49 struct property *reverse_properties(struct property *first) in reverse_properties() argument 51 struct property *p = first; in reverse_properties() 92 struct node *chain_node(struct node *first, struct node *list) in chain_node() argument 94 assert(first->next_sibling == NULL); in chain_node() 96 first->next_sibling = list; in chain_node() 97 return first; in chain_node() [all …]
|
| /freebsd-9-stable/contrib/ncurses/ncurses/tinfo/ |
| D | alloc_ttype.c | 153 int first; in _nc_first_ext_name() local 157 first = 0; in _nc_first_ext_name() 160 first = tp->ext_Booleans; in _nc_first_ext_name() 163 first = tp->ext_Booleans + tp->ext_Numbers; in _nc_first_ext_name() 166 first = 0; in _nc_first_ext_name() 169 return first; in _nc_first_ext_name() 202 unsigned first = _nc_first_ext_name(tp, token_type); in _nc_find_ext_name() local 205 for (j = first; j < last; j++) { in _nc_find_ext_name() 244 int first, last; in _nc_del_ext_name() local 246 if ((first = _nc_find_ext_name(tp, name, token_type)) >= 0) { in _nc_del_ext_name() [all …]
|