| /freebsd-10-stable/contrib/llvm/tools/lldb/source/Core/ |
| D | Mangled.cpp | 73 const char* parse_type(const char* first, const char* last, C& db); 75 const char* parse_encoding(const char* first, const char* last, C& db); 77 const char* parse_name(const char* first, const char* last, C& db); 79 const char* parse_expression(const char* first, const char* last, C& db); 81 const char* parse_template_args(const char* first, const char* last, C& db); 83 const char* parse_operator_name(const char* first, const char* last, C& db); 85 const char* parse_unqualified_name(const char* first, const char* last, C& db); 87 const char* parse_decltype(const char* first, const char* last, C& db); 96 printf("{%s#%s}\n", s.first.c_str(), s.second.c_str()); in print_stack() 106 printf("{%s#%s}", s.first.c_str(), s.second.c_str()); in print_stack() [all …]
|
| /freebsd-10-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-10-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-10-stable/usr.sbin/etcupdate/tests/ |
| D | tests_test.sh | 118 mkfifo $i/equal/first/first/fifo 119 echo "foo" > $i/equal/first/first/file 120 mkdir $i/equal/first/first/dir 121 ln -s "bar" $i/equal/first/first/link 150 mkfifo $i/first/equal/second/fifo 151 echo "foo" > $i/first/equal/second/file 152 mkdir $i/first/equal/second/emptydir 153 ln -s "bar" $i/first/equal/second/link 154 mkdir $i/first/equal/second/fulldir 155 echo "foo" > $i/first/equal/second/fulldir/file [all …]
|
| D | always_test.sh | 97 mkfifo $OLD/first/difftype/second/fifo 98 mkdir $TEST/first/difftype/second/fifo 102 ln -s "old link" $OLD/first/difflinks/second/link 103 ln -s "test link" $TEST/first/difflinks/second/link 107 echo "foo" > $OLD/first/difffiles/second/file 108 echo "bar" > $TEST/first/difffiles/second/file 128 mkfifo $OLD/difftype/first/first/fifo 129 mkdir $NEW/difftype/first/first/fifo 159 ln -s "old" $OLD/difflinks/first/first/link 160 ln -s "new" $NEW/difflinks/first/first/link [all …]
|
| /freebsd-10-stable/contrib/flex/ |
| D | nfa.c | 304 int link_machines (first, last) in link_machines() argument 305 int first, last; in link_machines() 307 if (first == NIL) 311 return first; 314 mkxtion (finalst[first], last); 315 finalst[first] = finalst[last]; 316 lastst[first] = MAX (lastst[first], lastst[last]); 317 firstst[first] = MIN (firstst[first], firstst[last]); 319 return first; 373 int mkbranch (first, second) in mkbranch() argument [all …]
|
| /freebsd-10-stable/usr.bin/seq/ |
| D | seq.c | 79 double first = 1.0; in main() local 138 first = e_atof(argv[0]); in main() 144 errx(1, "zero %screment", (first < last)? "in" : "de"); in main() 149 incr = (first < last) ? 1.0 : -1.0; in main() 151 if (incr <= 0.0 && first < last) in main() 154 if (incr >= 0.0 && first > last) in main() 168 fmt = generate_format(first, incr, last, equalize, pad); in main() 171 for (; first <= last; first += incr) { in main() 172 printf(fmt, first); in main() 176 for (; first >= last; first += incr) { in main() [all …]
|
| /freebsd-10-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-10-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-10-stable/usr.bin/netstat/ |
| D | inet6.c | 363 int first, i; in ip6_stats() local 399 for (first = 1, i = 0; i < IP6S_HDRCNT; i++) in ip6_stats() 401 if (first) { in ip6_stats() 403 first = 0; in ip6_stats() 410 for (first = 1, i = 0; i < IP6S_M2MMAX; i++) { in ip6_stats() 413 if (first) { in ip6_stats() 415 first = 0; in ip6_stats() 455 for (first = 1, i = 0; i < IP6S_SCOPECNT; i++) { in ip6_stats() 457 if (first) { in ip6_stats() 459 first = 0; in ip6_stats() [all …]
|
| /freebsd-10-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-10-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-10-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-10-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-10-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-10-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-10-stable/gnu/usr.bin/gdb/kgdb/ |
| D | kthr.c | 53 static struct kthr *first; variable 71 return (first); in kgdb_thr_first() 95 kt->next = first; in kgdb_thr_add_procs() 109 first = kt; in kgdb_thr_add_procs() 124 while (first != NULL) { in kgdb_thr_init() 125 kt = first; in kgdb_thr_init() 126 first = kt->next; in kgdb_thr_init() 160 curkthr = first; in kgdb_thr_init() 161 return (first); in kgdb_thr_init() 169 kt = first; in kgdb_thr_lookup_tid() [all …]
|
| /freebsd-10-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-10-stable/contrib/unbound/services/ |
| D | outbound_list.c | 50 list->first = NULL; in outbound_list_init() 57 p = list->first; in outbound_list_clear() 70 if(list->first) in outbound_list_insert() 71 list->first->prev = e; in outbound_list_insert() 72 e->next = list->first; in outbound_list_insert() 74 list->first = e; in outbound_list_insert() 87 else list->first = e->next; in outbound_list_remove()
|
| /freebsd-10-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-10-stable/sys/x86/x86/ |
| D | msi.c | 439 struct msi_intsrc *msi, *first; in msi_release() local 443 first = (struct msi_intsrc *)intr_lookup_source(irqs[0]); in msi_release() 444 if (first == NULL) { in msi_release() 450 if (first->msi_msix) { in msi_release() 456 if (first->msi_first == NULL) { in msi_release() 465 if (first->msi_first != first || first->msi_count != count) { in msi_release() 469 KASSERT(first->msi_dev != NULL, ("unowned group")); in msi_release() 474 KASSERT(msi->msi_first == first, ("message not in group")); in msi_release() 475 KASSERT(msi->msi_dev == first->msi_dev, ("owner mismatch")); in msi_release() 483 first->msi_first = NULL; in msi_release() [all …]
|
| /freebsd-10-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 …]
|
| /freebsd-10-stable/tools/test/ptrace/ |
| D | scescx.c | 48 int first; in decode_wait_status() local 51 first = 1; in decode_wait_status() 53 first = 0; in decode_wait_status() 57 if (first) in decode_wait_status() 58 first = 0; in decode_wait_status() 65 if (first) in decode_wait_status() 66 first = 0; in decode_wait_status() 75 if (first) in decode_wait_status() 76 first = 0; in decode_wait_status() 102 unsigned first, flags, i; in decode_pl_flags() local [all …]
|
| /freebsd-10-stable/usr.bin/bluetooth/btsockstat/ |
| D | btsockstat.c | 219 int first = 1; in hcirawpr() local 235 if (first) { in hcirawpr() 236 first = 0; in hcirawpr() 274 int first = 1; in l2caprawpr() local 290 if (first) { in l2caprawpr() 291 first = 0; in l2caprawpr() 330 int first = 1; in l2cappr() local 347 if (first) { in l2cappr() 348 first = 0; in l2cappr() 384 int first = 1; in l2caprtpr() local [all …]
|