HomeSort by relevance Sort by last modified time
    Searched refs:Last (Results 1 - 25 of 248) sorted by null

1 2 3 4 5 6 7 8 910

  /external/clang/include/clang/Basic/
AddressSpaces.h 38 Last,
39 Count = Last-Offset
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/mpl/
iterator_range.hpp 26 , typename BOOST_MPL_AUX_NA_PARAM(Last)
33 typedef Last end;
35 BOOST_MPL_AUX_LAMBDA_SUPPORT(2,iterator_range,(First,Last))
distance.hpp 36 template< typename First, typename Last > struct apply
39 iterator_range<First,Last>
47 iterator_range<First,Last>
54 iterator_range<First,Last>
65 , typename BOOST_MPL_AUX_NA_PARAM(Last)
69 ::template apply<First, Last>
71 BOOST_MPL_AUX_LAMBDA_SUPPORT(2, distance, (First, Last))
distance_fwd.hpp 24 template< typename First, typename Last > struct distance;
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/mpl/aux_/preprocessed/gcc/
iter_fold_impl.hpp 19 , typename Last
27 , typename Last
31 struct iter_fold_impl< 0,First,Last,State,ForwardOp >
41 , typename Last
45 struct iter_fold_impl< 1,First,Last,State,ForwardOp >
59 , typename Last
63 struct iter_fold_impl< 2,First,Last,State,ForwardOp >
79 , typename Last
83 struct iter_fold_impl< 3,First,Last,State,ForwardOp >
101 , typename Last
    [all...]
fold_impl.hpp 19 , typename Last
27 , typename Last
31 struct fold_impl< 0,First,Last,State,ForwardOp >
41 , typename Last
45 struct fold_impl< 1,First,Last,State,ForwardOp >
59 , typename Last
63 struct fold_impl< 2,First,Last,State,ForwardOp >
79 , typename Last
83 struct fold_impl< 3,First,Last,State,ForwardOp >
101 , typename Last
    [all...]
reverse_fold_impl.hpp 19 , typename Last
28 , typename Last
33 struct reverse_fold_impl< 0,First,Last,State,BackwardOp,ForwardOp >
44 , typename Last
49 struct reverse_fold_impl< 1,First,Last,State,BackwardOp,ForwardOp >
65 , typename Last
70 struct reverse_fold_impl< 2,First,Last,State,BackwardOp,ForwardOp >
91 , typename Last
96 struct reverse_fold_impl< 3,First,Last,State,BackwardOp,ForwardOp >
120 , typename Last
    [all...]
  /external/clang/test/SemaCXX/
warn-infinite-recursion.cpp 117 template<int First, int Last>
119 if (First + 1 == Last) {
124 DoStuff<First, (First + Last)/2>();
125 DoStuff<(First + Last)/2, Last>();
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm11/vc/m4p2/src/
armVCM4P2_DecodeVLCZigzag_AC_unsafe_s.s 89 Last RN 7
125 MOV Last,#0
132 STM pDst!,{temp2,temp1,Last,LR}
134 STM pDst!,{temp2,temp1,Last,LR}
136 STM pDst!,{temp2,temp1,Last,LR}
138 STM pDst!,{temp2,temp1,Last,LR}
140 STM pDst!,{temp2,temp1,Last,LR}
142 STM pDst!,{temp2,temp1,Last,LR}
144 STM pDst!,{temp2,temp1,Last,LR}
145 STM pDst!,{temp2,temp1,Last,LR
    [all...]
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm_neon/vc/m4p2/src/
armVCM4P2_DecodeVLCZigzag_AC_unsafe_s.s 89 Last RN 7
125 MOV Last,#0
132 STM pDst!,{temp2,temp1,Last,LR}
134 STM pDst!,{temp2,temp1,Last,LR}
136 STM pDst!,{temp2,temp1,Last,LR}
138 STM pDst!,{temp2,temp1,Last,LR}
140 STM pDst!,{temp2,temp1,Last,LR}
142 STM pDst!,{temp2,temp1,Last,LR}
144 STM pDst!,{temp2,temp1,Last,LR}
145 STM pDst!,{temp2,temp1,Last,LR
    [all...]
  /external/compiler-rt/lib/profile/
InstrProfilingPlatformOther.c 50 #define UPDATE_LAST(Last, New) \
51 Last = New > Last ? New : Last
  /external/chromium_org/third_party/mesa/src/docs/
MESA_release_buffers.spec 19 Last Modified Date: 8 June 2000
  /external/mesa3d/docs/
MESA_release_buffers.spec 19 Last Modified Date: 8 June 2000
  /external/clang/lib/StaticAnalyzer/Checkers/
CastSizeChecker.cpp 58 const FieldDecl *Last = nullptr;
60 Last = *Iter;
61 assert(Last && "empty structs should already be handled");
63 const Type *ElemType = Last->getType()->getArrayElementTypeNoTypeQual();
66 Ctx.getAsConstantArrayType(Last->getType())) {
  /external/llvm/lib/ProfileData/
InstrProfIndexed.h 26 Last = MD5
  /external/llvm/lib/Transforms/Utils/
AddDiscriminators.cpp 109 /// with successor B2. The last instruction I1 in B1 and the first
131 /// location with the last instruction of block 'entry'.
151 /// If the last instruction I1 of a block B1 is at the same file and line
176 TerminatorInst *Last = B->getTerminator();
177 DebugLoc LastLoc = Last->getDebugLoc();
181 for (unsigned I = 0; I < Last->getNumSuccessors(); ++I) {
182 BasicBlock *Succ = Last->getSuccessor(I);
189 // location as B's last instruction (Last), add a new
  /external/webrtc/src/system_wrappers/interface/
map_wrapper.h 58 // Returns a pointer to the last MapItem in the map.
59 MapItem* Last() const;
list_wrapper.h 48 // Puts a pointer to anything last in the list.
53 // Puts a copy of the specified integer last in the list.
61 // Pops the last ListItem from the list
70 // Returns a pointer to the last ListItem in the list.
71 ListItem* Last() const;
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/algorithm/string/detail/
util.hpp 72 InputIteratorT Last,
78 for(; InputIt!=Last && OutputIt!=DestLast; InputIt++, OutputIt++ )
  /external/llvm/lib/ExecutionEngine/Interpreter/
ExternalFunctions.cpp 357 char Last = *FB++ = *FmtStr++;
359 while (Last != 'c' && Last != 'd' && Last != 'i' && Last != 'u' &&
360 Last != 'o' && Last != 'x' && Last != 'X' && Last != 'e' &&
361 Last != 'E' && Last != 'g' && Last != 'G' && Last != 'f' &
    [all...]
  /external/llvm/lib/CodeGen/
InterferenceCache.cpp 152 BI->First = BI->Last = SlotIndex();
205 // Check for last interference in block.
215 if (!BI->Last.isValid() || StopI > BI->Last)
216 BI->Last = StopI;
232 if (!BI->Last.isValid() || StopI > BI->Last)
233 BI->Last = StopI;
239 SlotIndex Limit = BI->Last.isValid() ? BI->Last : Start
    [all...]
  /external/clang/utils/TableGen/
ClangASTNodesEmitter.cpp 70 // Returns the first and last non-abstract subrecords
80 Record *First = nullptr, *Last = nullptr;
84 First = Last = Base;
109 Last = Result.second;
112 Last = R;
123 assert (Last && "Got a first node but not a last node for a range!");
129 << Last->getName() << ")\n\n";
132 return std::make_pair(First, Last);
145 << macroName(Root.getName()) << "_RANGE(Base, First, Last)\n"
    [all...]
  /external/clang/lib/AST/
TypeLoc.cpp 167 TypeLoc Last;
171 if (!Last)
172 Last = Cur;
173 return Last.getLocalSourceRange().getEnd();
180 Last = Cur;
184 Last = TypeLoc();
186 Last = Cur;
194 if (!Last)
195 Last = Cur;
  /external/clang/lib/Format/
TokenAnnotator.h 69 Last = Current;
70 Last->Next = nullptr;
80 FormatToken *Last;
  /external/webrtc/src/system_wrappers/source/
list_no_stl.h 57 ListNoStlItem* Last() const;

Completed in 447 milliseconds

1 2 3 4 5 6 7 8 910