Searched refs:second (Results 1 - 25 of 898) sorted by relevance

1234567891011>>

/freebsd-10.0-release/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/types/
H A Dtst.relenum.d48 second
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 > on
[all...]
/freebsd-10.0-release/contrib/atf/atf-run/
H A Dseveral_tcs_helper.c41 ATF_TC_WITH_CLEANUP(second); variable
42 ATF_TC_HEAD(second, tc)
48 ATF_TC_BODY(second, tc)
51 ATF_TC_CLEANUP(second, tc)
63 ATF_TP_ADD_TC(tp, second);
/freebsd-10.0-release/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DFunctionSummary.h73 I->second.InlineChecked = 1;
74 I->second.MayInline = 1;
79 I->second.InlineChecked = 1;
80 I->second.MayInline = 0;
89 if (I != Map.end() && I->second.InlineChecked)
90 return I->second.MayInline;
96 llvm::SmallBitVector &Blocks = I->second.VisitedBasicBlocks;
100 I->second.TotalBasicBlocks = TotalIDs;
108 return I->second.VisitedBasicBlocks.count();
115 return I->second
[all...]
/freebsd-10.0-release/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/
H A DFunctionSummary.cpp21 Total += I->second.TotalBasicBlocks;
29 Total += I->second.VisitedBasicBlocks.count();
H A DConstraintManager.cpp34 if (P.first && !P.second)
36 if (!P.first && P.second)
/freebsd-10.0-release/sys/i386/isa/
H A Dpmtimer.c96 u_int second, minute, hour; local
120 second = resume_time.tv_sec;
122 second = resume_time.tv_sec - suspend_time.tv_sec;
124 hour = second / 3600;
125 second %= 3600;
126 minute = second / 60;
127 second %= 60;
129 hour, minute, second);
/freebsd-10.0-release/tools/regression/usr.sbin/etcupdate/
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/difffiles/second/fil
[all...]
H A Dtests.sh63 states="equal first second difftype difflinks difffiles"
86 # compare is "equal"), then the second and third comparisons
91 # of the '*/second/second' cases are relevant.
142 # /first/equal/second: Remove unmodified files. The files
145 mkfifo $i/first/equal/second/fifo
146 echo "foo" > $i/first/equal/second/file
147 mkdir $i/first/equal/second/emptydir
148 ln -s "bar" $i/first/equal/second/link
149 mkdir $i/first/equal/second/fulldi
[all...]
/freebsd-10.0-release/contrib/libstdc++/include/bits/
H A Dstl_pair.h71 typedef _T2 second_type; ///< @c second_type is the second bound type
74 _T2 second; ///< @c second is a copy of the second 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 == __y.first && __x.second
[all...]
/freebsd-10.0-release/contrib/llvm/lib/Transforms/Instrumentation/
H A DMaximumSpanningTree.h47 if (X.second > Y.second) return true;
48 if (X.second < Y.second) return false;
56 size_t XSizeB = getBlockSize(X.first.second);
57 size_t YSizeB = getBlockSize(Y.first.second);
83 Forest.insert(e.second);
91 if (Forest.findLeader(e.first) != Forest.findLeader(e.second)) {
92 Forest.unionSets(e.first, e.second);
/freebsd-10.0-release/contrib/libstdc++/include/ext/pb_ds/detail/gp_hash_table_map_/
H A Dinsert_store_hash_fn_imps.hpp65 const size_type pos = ranged_probe_fn_base::operator()(r_key, pos_hash_pair.second, i);
76 std::make_pair(pos, pos_hash_pair.second) :
77 std::make_pair(ins_pos, pos_hash_pair.second));
86 r_key, pos_hash_pair.second))
90 return std::make_pair(pos, pos_hash_pair.second);
101 return std::make_pair(ins_pos, pos_hash_pair.second);
H A Derase_store_hash_fn_imps.hpp58 const size_type pos = ranged_probe_fn_base::operator()(r_key, pos_hash_pair.second, i);
73 r_key, pos_hash_pair.second))
/freebsd-10.0-release/contrib/libstdc++/include/ext/pb_ds/detail/cc_hash_table_map_/
H A Dcmp_fn_imps.hpp77 if (p_mapped_value->second != it->second)
H A Ddebug_store_hash_fn_imps.hpp56 _GLIBCXX_DEBUG_ASSERT(p_e->m_hash == pos_hash_pair.second);
H A Dinfo_fn_imps.hpp94 if (p_mapped_value->second != it->second)
H A Dconstructor_destructor_store_hash_fn_imps.hpp58 p->m_hash = ranged_hash_fn_base::operator()((const_key_reference)(PB_DS_V2F(p->m_value))).second;
/freebsd-10.0-release/contrib/llvm/include/llvm/ExecutionEngine/
H A DGenericValue.h29 unsigned int second; member in struct:llvm::GenericValue::IntPair
45 GenericValue() : IntVal(1,0) {UIntPairVal.first = 0; UIntPairVal.second = 0;}
/freebsd-10.0-release/contrib/byacc/
H A Ddefs.h21 #define CONCAT(first,second) first #second
23 #define CONCAT2(first,second) #first "." #second
/freebsd-10.0-release/contrib/llvm/lib/Object/
H A DELFObjectFile.cpp29 if (Ident.first == ELF::ELFCLASS32 && Ident.second == ELF::ELFDATA2LSB)
39 else if (Ident.first == ELF::ELFCLASS32 && Ident.second == ELF::ELFDATA2MSB)
49 else if (Ident.first == ELF::ELFCLASS64 && Ident.second == ELF::ELFDATA2MSB)
59 else if (Ident.first == ELF::ELFCLASS64 && Ident.second == ELF::ELFDATA2LSB) {
/freebsd-10.0-release/contrib/llvm/tools/clang/include/clang/Sema/
H A DTemplateDeduction.h69 PD.second.swap(SuppressedDiagnostics.front().second);
93 SuppressedDiagnostics.back().second.swap(PD);
104 SuppressedDiagnostics.back().second.swap(PD);
148 /// \brief The second template argument to which the template
/freebsd-10.0-release/contrib/ntp/libntp/
H A Dcalyearstart.c20 jt.hour = jt.minute = jt.second = 0;
/freebsd-10.0-release/contrib/llvm/include/llvm/ADT/
H A DMapVector.h80 unsigned &I = Result.first->second;
81 if (Result.second) {
85 return Vector[I].second;
90 return Pos == Map.end()? ValueT() : Vector[Pos->second].second;
96 unsigned &I = Result.first->second;
97 if (Result.second) {
98 Vector.push_back(std::make_pair(KV.first, KV.second));
113 (Vector.begin() + Pos->second);
119 (Vector.begin() + Pos->second);
[all...]
/freebsd-10.0-release/contrib/llvm/include/llvm/Analysis/
H A DProfileDataLoader.h61 assert(((!e.first) || (e.first->getParent() == e.second->getParent()))
63 assert(e.second && "A ProfileData::Edge must have a real sink");
64 return e.second->getParent();
78 EdgeWeights weights = EdgeInformation.find(f)->second;
82 return weights.find(e)->second;
/freebsd-10.0-release/contrib/llvm/lib/TableGen/
H A DStringMatcher.cpp55 StringRef Code = Matches[0]->second;
60 Code = Split.second;
64 Code = Split.second;
110 << LI->second.size() << " string";
111 if (LI->second.size() != 1) OS << 's';
113 if (EmitStringMatcherForChar(LI->second, CharNo+1, IndentCount+1))
142 << LI->second.size()
143 << " string" << (LI->second.size() == 1 ? "" : "s") << " to match.\n";
144 if (EmitStringMatcherForChar(LI->second, 0, Indent))
/freebsd-10.0-release/contrib/llvm/tools/lldb/source/Target/
H A DSectionLoadList.cpp54 section_load_addr = pos->second;
88 if (load_addr == sta_pos->second)
91 sta_pos->second = load_addr;
110 if (warn_multiple && section != ats_pos->second)
115 ModuleSP curr_module_sp (ats_pos->second->GetModule());
123 ats_pos->second->GetName().GetCString());
127 ats_pos->second = section;
173 addr_t load_addr = sta_pos->second;
235 if (offset < pos->second->GetByteSize())
239 return pos->second
[all...]

Completed in 136 milliseconds

1234567891011>>