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

1 2 3 4

  /external/clang/include/clang/Basic/
AddressSpaces.h 32 Last,
33 Count = Last-Offset
  /frameworks/base/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/base/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/mesa3d/docs/
MESA_release_buffers.spec 19 Last Modified Date: 8 June 2000
  /external/llvm/lib/ExecutionEngine/Interpreter/
ExternalFunctions.cpp 359 char Last = *FB++ = *FmtStr++;
361 while (Last != 'c' && Last != 'd' && Last != 'i' && Last != 'u' &&
362 Last != 'o' && Last != 'x' && Last != 'X' && Last != 'e' &&
363 Last != 'E' && Last != 'g' && Last != 'G' && Last != 'f' &
    [all...]
  /external/clang/utils/TableGen/
ClangASTNodesEmitter.cpp 22 // Returns the first and last non-abstract subrecords
32 Record *First = 0, *Last = 0;
36 First = Last = Base;
61 Last = Result.second;
64 Last = R;
75 assert (Last && "Got a first node but not a last node for a range!");
81 << Last->getName() << ")\n\n";
84 return std::make_pair(First, Last);
95 << macroName(Root.getName()) << "_RANGE(Base, First, Last)\n"
    [all...]
  /external/webrtc/src/system_wrappers/interface/
map_wrapper.h 59 // Returns a pointer to the last MapItem in the map.
60 MapItem* Last() const;
list_wrapper.h 49 // Puts a pointer to anything last in the list.
54 // Puts a copy of the specified integer last in the list.
62 // Pops the last ListItem from the list
71 // Returns a pointer to the last ListItem in the list.
72 ListItem* Last() const;
  /external/valgrind/main/exp-ptrcheck/tests/
supp.stderr.exp 8 Last byte is not inside a known block
syscall.stderr.exp 13 Last byte is not within a known block
22 Last byte (0x........) is 3 bytes within a 6-byte block alloc'd
39 Last byte (0x........) is 0 bytes within a 6-byte block alloc'd
54 Last byte is not within a known block
65 Last byte is not within a known block
90 Last byte is not within a known block
103 Last byte (0x........) is 0 bytes within a 6-byte block alloc'd
  /external/clang/lib/AST/
TypeLoc.cpp 121 TypeLoc Last;
125 if (!Last)
126 Last = Cur;
127 return Last.getLocalSourceRange().getEnd();
135 Last = Cur;
143 if (!Last)
144 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/clang/lib/Rewrite/
FixItRewriter.cpp 95 for (unsigned Idx = 0, Last = Info.getNumFixItHints();
96 Idx < Last; ++Idx) {
119 for (unsigned Idx = 0, Last = Info.getNumFixItHints();
120 Idx < Last; ++Idx) {
  /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();
187 return Erase(list_.Last());
339 for (ListItem* item = ascending_list->Last(); item != NULL;
367 ascending_list->Last()));
391 ListItem* item = decending_list->Last();
439 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/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/llvm/lib/CodeGen/
InterferenceCache.h 33 SlotIndex Last;
193 /// last - Return the ending index of the last interfering range in the
195 SlotIndex last() { function in class:llvm::InterferenceCache::Cursor
196 return Current->Last;
InterferenceCache.cpp 126 BI->First = BI->Last = SlotIndex();
154 // Check for last interference in block.
164 if (!BI->Last.isValid() || StopI > BI->Last)
165 BI->Last = StopI;
  /external/pcre/
CleanTxt 80 # lines. Remember the last printed line.
103 $blankcount = 2 if /^\S/ && !/^Last updated/ && !/^Copyright/ &&

Completed in 220 milliseconds

1 2 3 4