Home
last modified time | relevance | path

Searched refs:less (Results 1 – 25 of 538) sorted by relevance

12345678910>>...22

/external/llvm/test/Transforms/GlobalOpt/
D2007-06-04-PackedStruct.ll7less<int>,std::allocator<std::pair<const int, int> > >" = type { %"struct.std::_Rb_tree<int,std::p…
8 …1st<std::pair<const int, int> >,std::less<int>,std::allocator<std::pair<const int, int> > >::_Rb_t…
10less<int>,std::allocator<std::pair<const int, int> > >" = type { %"struct.std::_Rb_tree<int,std::p…
11 …td::map<int,int,std::less<int>,std::allocator<std::pair<const int, int> > >" zeroinitializer ; <%…
31 …store i8 0, i8* getelementptr (%"struct.std::map<int,int,std::less<int>,std::allocator<std::pair<c…
/external/stlport/doc/
Dpointer_specialization.txt34 class _Compare = less<_Tp>,
63 class set<_Tp*, less<_Tp*>, _Alloc>
66 is the Standard less struct. The underlying container would be:
68 set<void*, less<void*>, _VoidAlloc>
71 specialized the less struct for any pointer type even the basic one.
74 the less<void*> functor. The less specialization issue also show that
77 set<void*, less<void*>, _VoidAlloc>
83 where __less would be equivalent to the standard less functor but
87 need to be able to detect the less specialization. The partial set
88 specialization would have to be used only if the less functor is
/external/stlport/stlport/stl/
D_function_base.h70 struct less : public binary_function<_Tp,_Tp,bool> struct
76 , public __stlport_class<less<_Tp> >
82 void _M_swap_workaround(less<_Tp>& __x) {} in _M_swap_workaround() argument
88 struct __type_traits<less<_Tp> > {
90 typedef typename _IsSTLportClass<less<_Tp> >::_Ret _STLportLess;
92 enum { _Is = _IsSTLportClass<less<_Tp> >::_Is };
106 less<_Tp> __less(_Tp* ) { return less<_Tp>(); }
/external/llvm/test/MC/Disassembler/X86/
Dinvalid-cmp-imm.txt3 # This instruction would decode as cmpordps if the immediate byte was less than 8.
5 # This instruction would decode as cmpordpd if the immediate byte was less than 8.
7 # This instruction would decode as cmpordss if the immediate byte was less than 8.
9 # This instruction would decode as cmpordsd if the immediate byte was less than 8.
/external/stlport/test/unit/
Dperm_test.cpp191 next_permutation(v1.begin(), v1.end(), less<char>()); in nextprm2()
195 next_permutation(v1.begin(), v1.end(), less<char>()); in nextprm2()
199 next_permutation(v1.begin(), v1.end(), less<char>()); in nextprm2()
203 next_permutation(v1.begin(), v1.end(), less<char>()); in nextprm2()
207 next_permutation(v1.begin(), v1.end(), less<char>()); in nextprm2()
211 next_permutation(v1.begin(), v1.end(), less<char>()); in nextprm2()
215 next_permutation(v1.begin(), v1.end(), less<char>()); in nextprm2()
219 next_permutation(v1.begin(), v1.end(), less<char>()); in nextprm2()
223 next_permutation(v1.begin(), v1.end(), less<char>()); in nextprm2()
Dmap_test.cpp49 typedef map<char, int, less<char> > maptype; in map1()
79 typedef multimap<char, int, less<char> > mmap; in mmap1()
121 typedef multimap<int, char, less<int> > mmap; in mmap2()
146 typedef map<int, char, less<int> > int_map; in iterators()
157 typedef multimap<int, char, less<int> > mmap; in iterators()
229 typedef map<char, int, less<char> > maptype; in equal_range()
276 typedef map<int, int, less<int>, StackAllocator<pair<const int, int> > > MapInt; in allocator_with_state()
277 less<int> intLess; in allocator_with_state()
Dmvctor_declaration_test.cpp113 struct less<struct_with_specialized_less> { struct
142 struct __move_traits<less<struct_with_specialized_less> > {
296 CPPUNIT_ASSERT( is_move_complete(less<char>()) ); in movable_declaration_assoc()
298 CPPUNIT_ASSERT( !is_move_complete(less<struct_with_specialized_less>()) ); in movable_declaration_assoc()
Dset_test.cpp58 set<int, less<int> > s; in set1()
70 typedef set<int, less<int> > int_set; in set2()
96 set<int, less<int> > s; in erase()
214 struct less<SetTestClass> { struct
285 typedef set<int, less<int>, StackAllocator<int> > SetInt; in allocator_with_state()
286 less<int> intLess; in allocator_with_state()
Dsetdiff_test.cpp79 back_inserter(diff), less<char>()); in setsymd2()
129 …word1, word1 + ::strlen(word1), word2, word2 + ::strlen(word2), back_inserter(diff), less<char>()); in setdiff2()
/external/llvm/test/CodeGen/Generic/
DConstantExprLowering.ll12 br i1 %t1, label %less, label %not_less
14 less: ; preds = %entry
17 not_less: ; preds = %less, %entry
18 …%t2 = phi i32 [ sub (i32 ptrtoint (i32* @XA to i32), i32 ptrtoint (i32* @XB to i32)), %less ], [ s…
/external/srec/tools/thirdparty/OpenFst/fst/lib/
Dprune.h89 NaturalLess<Weight> less; in Prune() local
93 if (less(ceiling, Times((*idistance)[state], (*fdistance)[state]))) { in Prune()
104 if(less(ceiling, weight)) { in Prune()
109 if (less(ceiling, Times((*idistance)[state], fst->Final(state)))) in Prune()
172 NaturalLess<Weight> less; in Prune() local
188 if (less(ceiling, Times((*idistance)[state], (*fdistance)[state]))) in Prune()
193 if (!less(ceiling, Times((*idistance)[state], ifst.Final(state)))) in Prune()
213 if (!less(ceiling, weight)) { in Prune()
Dqueue.h250 StateWeightCompare(const vector<Weight>* weights, const L &less) in StateWeightCompare() argument
251 : weights_(weights), less_(less) {} in StateWeightCompare()
529 NaturalLess<Weight> *less = 0; in AutoQueue() local
532 less = new NaturalLess<Weight>; in AutoQueue()
533 comp = new Compare(distance, *less); in AutoQueue()
538 SccQueueType(fst, scc_, &queue_types, filter, less, &all_trivial, in AutoQueue()
545 delete less; in AutoQueue() local
554 delete less; in AutoQueue() local
587 delete less; in AutoQueue() local
619 ArcFilter filter, Less *less,
[all …]
/external/oprofile/libregex/tests/
Dmangled-name.in20 map<int, image_name, less<int>, allocator<image_name> >
23 …tring_char_traits<char>, __default_alloc_template<true, 0> >, image_name, less<basic_string<char, …
26 multimap<int, long, less<int>, allocator<long> >
29 prefix_multimap<int, long, less<int>, allocator<long> >
30 prefix_multimap<int, long, less<int>, allocator<long>>
97 _Rb_tree<int, int, _Identity<int>, less<int>, allocator<int> >
100 _Rb_tree<string, pair<string const, int const>, _Select1st<pair<string const, int const>>, less<str…
120 _Rb_tree<int, pair<int const, long>, _Select1st<pair<int const, long> >, less<int>, allocator<long>…
123 _Rb_tree<int, pair<int const, long>, _Select1st<pair<int const, long> >, less<int>, allocator<pair<…
129 # strictly speaking 3rd parameters is less<ContainerType::value_type>
[all …]
/external/oprofile/libregex/
Dstl.pat.in43 # two pass, first shrink allocator<> then less<> allowing map with user defined
46 "\<(multi)?map<${typename}, ${typename}, less<\2>>" = "\1map<\2, \8>"
55 # strictly speaking 3rd parameters is less<ContainerType::value_type>
56 "\<priority_queue<${typename}, vector<\1>, less<\1>>" = "priority_queue<\1>"
57 # two pass, first shrink allocator<> then less<> allowing map with user defined
60 "\<(multi)?set<${typename}, less<\2>>" = "\1set<\2>"
73 "_Rb_tree<${typename}, \1, _Identity<\1>, less<\1>>" = "_Rb_tree<\1, \1, _Identity<\1>>"
75 …ct1st<pair<\1 const, \7>>, less<\1>, allocator<\7>>" = "_Rb_tree<\1, pair<\1 const, \7>, _Select1s…
77 …ir<\1 const, \7>>, less<\1>, allocator<pair<\1 const, \7>>>" = "_Rb_tree<\1, pair<\1 const, \7>, _…
79 …, pair<\1 const, (${typename}( const)?)>, _Select1st<pair<\1 const, \7>>, less<\1>>" = "_Rb_tree<\…
[all …]
/external/clang/test/SemaTemplate/
Dissue150.cpp75 template<typename > struct less ;
81 template <class X, template<class> class = less> struct interval_type_default {
86 template<class _T, template<class> class Compare = PR9016::less,
95 template<class _T, template<class> class Compare = PR9016::less,
/external/openfst/src/include/fst/
Dprune.h135 NaturalLess<Weight> less; in Prune() local
140 if (!less(limit, (*fdistance)[s])) { in Prune()
151 if (less(limit, Times(idistance[s], fst->Final(s)))) in Prune()
162 if (less(limit, weight)) { in Prune()
167 if (less(Times(idistance[s], arc.weight), idistance[arc.nextstate])) in Prune()
236 NaturalLess<Weight> less; in Prune() local
237 if (less(opts.weight_threshold, Weight::One()) || in Prune()
277 if (!less(limit, Times(idistance[s], ifst.Final(s)))) in Prune()
288 if (less(limit, weight)) continue; in Prune()
294 if (less(Times(idistance[s], arc.weight), in Prune()
Dqueue.h281 StateWeightCompare(const vector<Weight>& weights, const L &less) in StateWeightCompare() argument
282 : weights_(weights), less_(less) {} in StateWeightCompare()
566 NaturalLess<Weight> *less = 0; in AutoQueue() local
569 less = new NaturalLess<Weight>; in AutoQueue()
570 comp = new Compare(*distance, *less); in AutoQueue()
575 SccQueueType(fst, scc_, &queue_types, filter, less, &all_trivial, in AutoQueue()
582 delete less; in AutoQueue() local
591 delete less; in AutoQueue() local
623 delete less; in AutoQueue() local
655 ArcFilter filter, Less *less,
[all …]
/external/valgrind/main/docs/internals/
Dhowto_oprofile.txt16 | less
21 | less
26 | less
29 opannotate --merge=tgid --source --include-file=libhb_core.c | less
/external/antlr/antlr-3.4/runtime/ObjC/Framework/
DANTLRIntArray.m141 …umentException newException:[NSString stringWithFormat:@"Index %d must be less than count %d", anI…
144 …umentException newException:[NSString stringWithFormat:@"Index %d must be less than BuffSize %d", …
158 …umentException newException:[NSString stringWithFormat:@"Index %d must be less than count %d", anI…
161 …umentException newException:[NSString stringWithFormat:@"Index %d must be less than BuffSize %d", …
170 …umentException newException:[NSString stringWithFormat:@"Index %d must be less than count %d", anI…
173 …umentException newException:[NSString stringWithFormat:@"Index %d must be less than BuffSize %d", …
/external/llvm/test/Transforms/IndVarSimplify/
D2009-04-27-Floating.ll14 %less = fcmp olt float %nexti, 2.0
15 br i1 %less, label %loop_body, label %done
/external/bzip2/
Dbzmore10 *less) more=less ;;
/external/clang/test/CXX/except/except.spec/
Dcanonical.cpp35 struct less struct
41 typedef __map_value_compare<int, short, less> __vc;
/external/llvm/test/Transforms/GVN/
D2009-03-10-PREOnVoid.ll13less<void*>,std::allocator<std::pair<void* const, std::vector<ShadowInfo, std::allocator<ShadowInf…
14 … > >,std::less<void*>,std::allocator<std::pair<void* const, std::vector<ShadowInfo, std::allocator…
37 …oid* const, std::vector<ShadowInfo, std::allocator<ShadowInfo> > > >,std::less<void*>,std::allocat…
/external/llvm/lib/Target/X86/
DX86InstrCMovSetCC.td96 defm SETB : SETCC<0x92, "setb", X86_COND_B>; // unsigned less than
100 defm SETBE : SETCC<0x96, "setbe", X86_COND_BE>; // unsigned less than or equal
106 defm SETL : SETCC<0x9C, "setl", X86_COND_L>; // signed less than
108 defm SETLE : SETCC<0x9E, "setle", X86_COND_LE>; // signed less than or equal
/external/llvm/test/CodeGen/MBlaze/
Dimm.ll1 ; Ensure that all immediate values that are 32-bits or less can be loaded
2 ; using a single instruction and that immediate values 64-bits or less can

12345678910>>...22