HomeSort by relevance Sort by last modified time
    Searched refs:End (Results 126 - 150 of 964) sorted by null

1 2 3 4 56 7 8 91011>>

  /external/clang/lib/StaticAnalyzer/Checkers/
CastSizeChecker.cpp 33 /// Check if we are casting to a struct with a flexible array at the end.
57 RecordDecl::field_iterator End(RD->field_end());
59 for (; Iter != End; ++Iter)
  /external/llvm/lib/AsmParser/
LLLexer.cpp 49 uint64_t LLLexer::atoull(const char *Buffer, const char *End) {
51 for (; Buffer != End; Buffer++) {
63 uint64_t LLLexer::HexIntToVal(const char *Buffer, const char *End) {
65 for (; Buffer != End; ++Buffer) {
78 void LLLexer::HexToIntPair(const char *Buffer, const char *End,
82 assert(Buffer != End);
87 for (int i=0; i<16 && Buffer != End; i++, Buffer++) {
91 if (Buffer != End)
97 void LLLexer::FP80HexToIntPair(const char *Buffer, const char *End,
100 for (int i=0; i<4 && Buffer != End; i++, Buffer++)
    [all...]
  /external/llvm/lib/CodeGen/
SplitKit.cpp 72 if (FirstTerm == MBB->end())
82 for (MachineBasicBlock::const_iterator I = MBB->end(), E = MBB->begin();
118 return MBB->end();
139 array_pod_sort(UseSlots.begin(), UseSlots.end());
143 UseSlots.erase(std::unique(UseSlots.begin(), UseSlots.end(),
145 UseSlots.end());
178 LiveInterval::const_iterator LVE = CurLI->end();
182 UseE = UseSlots.end();
198 // The range shouldn't end mid-block if there are no uses. This shouldn't
200 if (LVI->end < Stop
    [all...]
CriticalAntiDepBreaker.h 83 MachineBasicBlock::iterator End,
  /external/llvm/lib/Option/
OptTable.cpp 27 // with an exceptions. '\0' comes at the end of the alphabet instead of the
147 E = PrefixesUnion.end(); I != E; ++I) {
149 for (StringRef::const_iterator C = Prefix.begin(), CE = Prefix.end();
151 if (std::find(PrefixChars.begin(), PrefixChars.end(), *C)
152 == PrefixChars.end())
172 E = Prefixes.end(); I != E; ++I)
207 const Info *End = OptionInfos + getNumOptions();
211 Start = std::lower_bound(Start, End, Name.data());
213 // Options are stored in sorted order, with '\0' at the end of the
221 for (; Start != End; ++Start)
    [all...]
  /external/webp/src/utils/
quant_levels.c 61 if (num_levels_in <= num_levels) goto End; // nothing to do!
134 End:
  /art/compiler/dex/
bb_optimizations.h 110 void End(PassDataHolder* data) const {
164 void End(PassDataHolder* data) const {
195 void End(PassDataHolder* data) const {
230 void End(PassDataHolder* data) const OVERRIDE {
  /external/chromium_org/base/test/expectations/
parser.h 77 // or NULL to end parsing. On return, the parser is at the beginning of the
91 StateFunc End();
95 // the end of the string, with the data stored in |extracted_string_|.
122 // Pointer to the end of the |input_|.
  /external/chromium_org/cc/debug/
ring_buffer.h 104 // for (RingBuffer<T, kSize>::Iterator it = ring_buffer.End(); it; --it) {}
105 Iterator End() const {
  /external/chromium_org/chrome/browser/ui/views/
color_chooser_aura.cc 34 void ColorChooserAura::End() {
  /external/chromium_org/components/web_contents_delegate_android/
color_chooser_android.cc 57 void ColorChooserAndroid::End() {
  /external/chromium_org/third_party/WebKit/Source/modules/webdatabase/
SQLTransactionStateMachine.h 92 ASSERT(SQLTransactionState::End < SQLTransactionState::Idle);
  /external/chromium_org/third_party/openmax_dl/dl/sp/src/arm/neon/
omxSP_FFTFwd_CToC_SC16_Sfs_s.S 212 @// BL would corrupt the flags. This is because the end of the "grpZeroSetLoop" loop inside
235 @// BL would corrupt the flags. This is because the end of the "grpZeroSetLoop" loop inside
315 B End
327 B End
334 BLE End
349 End:
356 .END
omxSP_FFTFwd_CToC_SC32_Sfs_s.S 210 @// BL would corrupt the flags. This is because the end of the "grpZeroSetLoop" loop inside
235 @// BL would corrupt the flags. This is because the end of the "grpZeroSetLoop" loop inside
295 B End
306 B End
313 BLE End
328 End:
335 .end
omxSP_FFTInv_CToC_SC16_Sfs_s.S 152 @// Store the scale factor and scale at the end
194 @// BL would corrupt the flags. This is because the end of the "grpZeroSetLoop" loop inside
217 @// BL would corrupt the flags. This is because the end of the "grpZeroSetLoop" loop inside
297 B End
309 B End
316 BLE End
330 End:
342 .END
omxSP_FFTInv_CToC_SC32_Sfs_s.S 151 @// Store the scale factor and scale at the end
190 @// BL would corrupt the flags. This is because the end of the "grpZeroSetLoop" loop inside
215 @// BL would corrupt the flags. This is because the end of the "grpZeroSetLoop" loop inside
275 B End
286 B End
293 BLE End
307 End:
314 .end
omxSP_FFTInv_CCSToR_S32_Sfs_s.S 180 B End
225 @// Store the scale factor and scale at the end
264 @// BL would corrupt the flags. This is because the end of the "grpZeroSetLoop" loop inside
289 @// BL would corrupt the flags. This is because the end of the "grpZeroSetLoop" loop inside
349 B End
360 B End
367 BLE End
381 End:
390 .end
  /external/chromium_org/third_party/sqlite/src/tool/
split-sqlite3c.tcl 14 set END {^/\*+ End of %s \*+/}
31 set end [format $::END $filename]
39 if {[regexp $end $line]} break
  /external/clang/unittests/AST/
MatchVerifier.h 133 if (I == M.end()) {
197 SourceLocation End = R.getEnd();
200 unsigned EndLine = Result.SourceManager->getSpellingLineNumber(End);
201 unsigned EndColumn = Result.SourceManager->getSpellingColumnNumber(End);
210 End.print(Msg, *Result.SourceManager);
278 } // end namespace ast_matchers
279 } // end namespace clang
  /external/llvm/include/llvm/Support/
SourceMgr.h 218 if (Range.End.getPointer() != Other.Range.End.getPointer())
219 return Range.End.getPointer() < Other.Range.End.getPointer();
277 } // end llvm namespace
  /external/llvm/include/llvm/CodeGen/
MachineInstrBuilder.h 323 /// instruction at the end of the given MachineBasicBlock, and does NOT take a
329 return BuildMI(*BB, BB->end(), DL, MCID);
333 /// instruction at the end of the given MachineBasicBlock, and sets up the first
340 return BuildMI(*BB, BB->end(), DL, MCID, DestReg);
419 MachineBasicBlock::instr_iterator End;
426 : MBB(BB), Begin(Pos.getInstrIterator()), End(Begin) {}
432 : MBB(BB), Begin(B.getInstrIterator()), End(E.getInstrIterator()) {
445 : MBB(*MI->getParent()), Begin(MI), End(getBundleEnd(MI)) {}
452 bool empty() const { return Begin == End; }
458 MachineBasicBlock::instr_iterator end() const { return End; function in class:llvm::MIBundleBuilder
    [all...]
  /external/llvm/lib/Support/
SourceMgr.cpp 76 // Use <= here so that a pointer to the null at the end of the buffer
168 // Get the end of the line.
182 if (R.Start.getPointer() > LineEnd || R.End.getPointer() < LineStart)
188 if (R.End.getPointer() > LineEnd)
189 R.End = SMLoc::getFromPointer(LineEnd);
194 R.End.getPointer()-LineStart));
246 FixIts(Hints.begin(), Hints.end()) {
247 std::sort(FixIts.begin(), FixIts.end());
256 const char *LineEnd = SourceLine.end();
260 for (ArrayRef<SMFixIt>::iterator I = FixIts.begin(), E = FixIts.end();
    [all...]
  /external/chromium_org/tools/perf/page_sets/
key_silk_cases.py 292 interaction.End()
296 interaction.End()
366 interaction.End()
380 interaction.End()
385 interaction.End()
405 interaction.End()
455 interaction.End()
515 interaction.End()
564 interaction.End()
567 interaction.End()
    [all...]
  /external/llvm/lib/Target/Hexagon/
HexagonCopyToCombine.cpp 106 } // End anonymous namespace.
255 End = --(MachineBasicBlock::reverse_iterator(I1));
258 End = MachineBasicBlock::reverse_iterator(I1);
267 for (; I != End; ++I) {
300 MachineBasicBlock::iterator I(I1), End(I2);
303 End = std::next(MachineBasicBlock::iterator(I2));
312 while(++I != End) {
360 for (MachineBasicBlock::iterator I = BB.begin(), E = BB.end(); I != E; ++I) {
428 for (MachineFunction::iterator BI = MF.begin(), BE = MF.end(); BI != BE;
434 for(MachineBasicBlock::iterator MI = BI->begin(), End = BI->end()
    [all...]
  /external/llvm/include/llvm/Bitcode/
BitstreamReader.h 61 BitstreamReader(const unsigned char *Start, const unsigned char *End) {
63 init(Start, End);
70 void init(const unsigned char *Start, const unsigned char *End) {
71 assert(((End-Start) & 3) == 0 &&"Bitcode stream not a multiple of 4 bytes");
72 BitcodeBytes.reset(getNonStreamedMemoryObject(Start, End));
132 /// EndBlock - We've reached the end of the current block, (or the end of the
239 // pos can be skipped to if it is a valid address or one byte past the end.
272 /// not automatically pop the block scope when the end of a block is
287 // Pop the end of the block unless Flags tells us not to
    [all...]

Completed in 1337 milliseconds

1 2 3 4 56 7 8 91011>>