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

1 2 3 4 5

  /external/clang/include/clang/Basic/
AddressSpaces.h 38 Last,
39 Count = Last-Offset
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm11/vc/m4p2/src/
armVCM4P2_DecodeVLCZigzag_AC_unsafe_s.s 75 Last RN 7
111 MOV Last,#0
118 STM pDst!,{temp2,temp1,Last,LR}
120 STM pDst!,{temp2,temp1,Last,LR}
122 STM pDst!,{temp2,temp1,Last,LR}
124 STM pDst!,{temp2,temp1,Last,LR}
126 STM pDst!,{temp2,temp1,Last,LR}
128 STM pDst!,{temp2,temp1,Last,LR}
130 STM pDst!,{temp2,temp1,Last,LR}
131 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 75 Last RN 7
111 MOV Last,#0
118 STM pDst!,{temp2,temp1,Last,LR}
120 STM pDst!,{temp2,temp1,Last,LR}
122 STM pDst!,{temp2,temp1,Last,LR}
124 STM pDst!,{temp2,temp1,Last,LR}
126 STM pDst!,{temp2,temp1,Last,LR}
128 STM pDst!,{temp2,temp1,Last,LR}
130 STM pDst!,{temp2,temp1,Last,LR}
131 STM pDst!,{temp2,temp1,Last,LR
    [all...]
  /external/clang/test/SemaTemplate/
example-dynarray.cpp 16 dynarray() { Start = Last = End = 0; }
20 Last = End = Start + other.size();
44 Last = End = NewStart + other.size();
48 unsigned size() const { return Last - Start; }
54 --Last;
55 Last->~T();
72 iterator end() { return Last; }
73 const_iterator end() const { return Last; }
91 T* Start, *Last, *End;
96 if (Last == End)
    [all...]
  /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/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;
  /external/clang/lib/Format/
TokenAnnotator.h 152 /// \brief Is this the last "." or "->" in a builder-type call?
179 Last = Current;
186 Last = &First;
187 while (!Last->Children.empty()) {
188 Last->Children[0].Parent = Last;
189 Last = &Last->Children[0];
194 AnnotatedToken *Last;
Format.cpp 315 /// \returns The column after the last token in the last line of the
343 if (Line.Last->TotalLength <= ColumnLimit - FirstIndent) {
380 /// \brief The position of the last space on each level.
    [all...]
  /external/llvm/lib/CodeGen/
InterferenceCache.cpp 135 BI->First = BI->Last = SlotIndex();
188 // Check for last interference in block.
198 if (!BI->Last.isValid() || StopI > BI->Last)
199 BI->Last = StopI;
215 if (!BI->Last.isValid() || StopI > BI->Last)
216 BI->Last = StopI;
222 SlotIndex Limit = BI->Last.isValid() ? BI->Last : Start
    [all...]
InterferenceCache.h 35 SlotIndex Last;
71 /// Tag of the LIU last time we looked.
216 /// last - Return the ending index of the last interfering range in the
218 SlotIndex last() { function in class:llvm::InterferenceCache::Cursor
219 return Current->Last;
MachineRegisterInfo.cpp 123 // Next is NULL on the last list element.
124 // Prev pointers are circular, so Head->Prev == Last.
135 // Insert MO between Last and Head in the circular Prev chain.
136 MachineOperand *Last = Head->Contents.Reg.Prev;
137 assert(Last && "Inconsistent use list");
138 assert(MO->getReg() == Last->getReg() && "Different regs on the same list!");
140 MO->Contents.Reg.Prev = Last;
151 Last->Contents.Reg.Next = MO;
  /external/clang/utils/TableGen/
ClangASTNodesEmitter.cpp 70 // Returns the first and last non-abstract subrecords
80 Record *First = 0, *Last = 0;
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 139 TypeLoc Last;
143 if (!Last)
144 Last = Cur;
145 return Last.getLocalSourceRange().getEnd();
152 Last = Cur;
156 Last = TypeLoc();
158 Last = Cur;
166 if (!Last)
167 Last = Cur;
  /external/webkit/Tools/Scripts/
update-webkit-dependency 62 # Last-Modified times.
74 print "Checking Last-Modified date of $zipFile...\n";
76 my $result = system "curl -s -I $libsURL | grep Last-Modified > \"$tmpAbsDir/$file.headers\"";
79 print STDERR "Couldn't check Last-Modified date of new $zipFile.\n";
83 print STDERR "Unable to check Last-Modified date and no version of $file to fall back to.\n";
147 $str =~ /^Last-Modified: (.*)$/ or return;
  /external/webrtc/src/system_wrappers/source/
list_no_stl.h 57 ListNoStlItem* Last() const;
list_stl.h 53 ListItem* Last() const;
map_no_stl.h 53 MapNoStlItem* Last() const;
list_unittest.cc 56 ListItem* Last() const {
57 return list_.Last();
212 return Erase(list_.Last());
356 for (ListItem* item = ascending_list->Last(); item != NULL;
383 ascending_list->Last()));
409 ListItem* item = descending_list->Last();
455 ListItem* item = ascending_list->Last();
  /external/chromium/testing/gtest/samples/
sample3-inl.h 109 // Gets the last element of the queue, or NULL if the queue is empty.
110 QueueNode<E>* Last() { return last_; }
111 const QueueNode<E>* Last() const { return last_; }
165 QueueNode<E>* last_; // The last node of the queue.
  /external/gtest/samples/
sample3-inl.h 109 // Gets the last element of the queue, or NULL if the queue is empty.
110 QueueNode<E>* Last() { return last_; }
111 const QueueNode<E>* Last() const { return last_; }
165 QueueNode<E>* last_; // The last node of the queue.
  /external/libvpx/libvpx/third_party/googletest/src/samples/
sample3-inl.h 109 // Gets the last element of the queue, or NULL if the queue is empty.
110 QueueNode<E>* Last() { return last_; }
111 const QueueNode<E>* Last() const { return last_; }
165 QueueNode<E>* last_; // The last node of the queue.
  /external/protobuf/gtest/samples/
sample3-inl.h 109 // Gets the last element of the queue, or NULL if the queue is empty.
110 QueueNode<E> * Last() { return last_; }
111 const QueueNode<E> * Last() const { return last_; }
165 QueueNode<E> * last_; // The last node of the queue.
  /external/llvm/lib/Analysis/
ScalarEvolutionAliasAnalysis.cpp 97 const SCEV *Last = A->getOperand(A->getNumOperands()-1);
98 if (Last->getType()->isPointerTy())
99 return GetBaseValue(Last);
  /external/clang/test/SemaCXX/
enum-scoped.cpp 180 Enum() : m_e(E::Last) {}
184 enum eCOLORS { Last };

Completed in 936 milliseconds

1 2 3 4 5