HomeSort by relevance Sort by last modified time
    Searched refs:End (Results 401 - 425 of 1604) sorted by null

<<11121314151617181920>>

  /external/clang/lib/AST/
NestedNameSpecifier.cpp 450 void Append(char *Start, char *End, char *&Buffer, unsigned &BufferSize,
452 if (Start == End)
455 if (BufferSize + (End - Start) > BufferCapacity) {
459 (unsigned)(BufferSize + (End - Start)));
469 memcpy(Buffer + BufferSize, Start, End - Start);
470 BufferSize += End-Start;
  /external/llvm/include/llvm/CodeGen/
LiveInterval.h 124 /// Returns the value alive at the end of the instruction, if any. This can
136 /// Return the end point of the last live range segment to interact with
139 /// The end point is an invalid SlotIndex only if the live range doesn't
142 /// The end point may be at or past the end of the instruction's basic
158 /// The start point is inclusive, the end point exclusive. These intervals
159 /// are rendered as [start,end).
162 SlotIndex end; // End point of the interval (exclusive) member in struct:llvm::LiveRange::Segment
168 : start(S), end(E), valno(V)
    [all...]
CallingConvLower.h 223 // ByValRegs[0] describes how "%r" is stored (Begin == r1, End == r2)
224 // ByValRegs[1] describes how "%t" is stored (Begin == r3, End == r4).
240 Begin(B), End(E), Waste(IsWaste) {}
245 unsigned End;
467 EndReg = info.End;
476 // to the end of collection.
477 // Returns false, if end is reached.
531 } // end namespace llvm
  /external/mesa3d/src/gallium/drivers/r300/compiler/
radeon_pair_regalloc.c 121 DBG("(%i,%i)", src->Start, src->End);
140 if (a->Start < b->End) {
145 if (b->Start < a->End) {
150 if (a->Start != a->End && b->Start != b->End) {
180 reg->Live[i].End =
  /external/swiftshader/third_party/LLVM/examples/Kaleidoscope/Chapter5/
toy.cpp 77 // Comment until end of line.
85 // Check for end of file. Don't eat the EOF.
154 ExprAST *Start, *End, *Step, *Body;
156 ForExprAST(const std::string &varname, ExprAST *start, ExprAST *end,
158 : VarName(varname), Start(start), End(end), Step(step), Body(body) {}
320 ExprAST *End = ParseExpression();
321 if (End == 0) return 0;
338 return new ForExprAST(IdName, Start, End, Step, Body);
522 // end of the function
    [all...]
  /external/swiftshader/third_party/LLVM/examples/Kaleidoscope/Chapter6/
toy.cpp 82 // Comment until end of line.
90 // Check for end of file. Don't eat the EOF.
169 ExprAST *Start, *End, *Step, *Body;
171 ForExprAST(const std::string &varname, ExprAST *start, ExprAST *end,
173 : VarName(varname), Start(start), End(end), Step(step), Body(body) {}
348 ExprAST *End = ParseExpression();
349 if (End == 0) return 0;
366 return new ForExprAST(IdName, Start, End, Step, Body);
626 // end of the function
    [all...]
  /external/swiftshader/third_party/LLVM/include/llvm/ADT/
DenseMap.h 86 return empty() ? end() : iterator(Buckets, Buckets+NumBuckets);
88 inline iterator end() { function in class:llvm::DenseMap
92 return empty() ? end() : const_iterator(Buckets, Buckets+NumBuckets);
94 inline const_iterator end() const { function in class:llvm::DenseMap
141 return end();
147 return end();
494 pointer Ptr, End;
496 DenseMapIterator() : Ptr(0), End(0) {}
498 DenseMapIterator(pointer Pos, pointer E) : Ptr(Pos), End(E) {
507 : Ptr(I.Ptr), End(I.End) {
    [all...]
ImmutableIntervalMap.h 24 int64_t End;
27 Interval(int64_t S, int64_t E) : Start(S), End(E) {}
30 int64_t getEnd() const { return End; }
192 /// ImmutableIntervalMap maps an interval [start, end] to a value. The intervals
246 } // end namespace llvm
  /external/swiftshader/third_party/LLVM/lib/CodeGen/
MachineFunction.cpp 116 MachineFunction::iterator MBBI, E = end();
222 MachineInstr::mmo_iterator End) {
225 for (MachineInstr::mmo_iterator I = Begin; I != End; ++I)
232 for (MachineInstr::mmo_iterator I = Begin; I != End; ++I) {
254 MachineInstr::mmo_iterator End) {
257 for (MachineInstr::mmo_iterator I = Begin; I != End; ++I)
264 for (MachineInstr::mmo_iterator I = Begin; I != End; ++I) {
323 for (const_iterator BB = begin(), E = end(); BB != E; ++BB) {
328 OS << "\n# End machine code for function " << Fn->getName() << ".\n\n";
477 E = CSI.end(); I != E; ++I
    [all...]
  /external/clang/include/clang/Lex/
Lexer.h 52 const char *BufferEnd; // End of the buffer.
137 /// Lex - Return the next token in the file. If this is the end of file, it
153 /// read' pointer points at the end of the lexer buffer, false otherwise.
157 // Note that lexing to the end of the buffer doesn't implicitly delete the
307 /// \brief Computes the source location just past the end of the
311 /// points just past the end of the token referenced by \p Loc, and
318 /// \param Offset an offset from the end of the token, where the source
320 /// location pointing just past the end of the token; an offset of 1 produces
329 /// end of the range for themselves.
333 SourceLocation End = getLocForEndOfToken(Range.getEnd(), 0, SM, LangOpts)
    [all...]
  /external/llvm/lib/Target/Lanai/
LanaiMemAluCombiner.cpp 337 MbbIterator Last = Decrement ? BB->begin() : BB->end();
365 MbbIterator MBBIter = BB->begin(), End = BB->end();
366 while (MBBIter != End) {
397 if (MBBIter == End)
413 for (MfIterator MFI = MF.begin(); MFI != MF.end(); ++MFI) {
  /external/llvm/lib/Target/SystemZ/
SystemZLongBranch.cpp 170 } // end anonymous namespace
177 // accordingly and move Position to the end of the block's non-terminator
284 MachineBasicBlock::iterator End = MBB->end();
285 while (MI != End && !MI->isTerminator()) {
292 while (MI != End) {
  /external/llvm/utils/FileCheck/
FileCheck.cpp 92 /// MatchEOF - When set, this pattern only matches the end of file. This is
232 size_t End = PatternStr.find("}}");
233 if (End == StringRef::npos) {
236 "found start of regex string with no end '}}'");
247 if (AddRegExToRegEx(PatternStr.substr(2, End-2), CurParen, SM))
251 PatternStr = PatternStr.substr(End+2);
261 // Find the closing bracket pair ending the match. End is going to be an
263 size_t End = FindRegexVarEnd(PatternStr.substr(2), SM);
265 if (End == StringRef::npos) {
272 StringRef MatchStr = PatternStr.substr(2, End);
    [all...]
  /external/swiftshader/third_party/LLVM/lib/Support/
MemoryBuffer.cpp 82 init(InputData.begin(), InputData.end(), RequiresNullTerminator);
210 SmallString<256> PathBuf(Filename.begin(), Filename.end());
261 // If we need a null terminator and the end of the map is inside the file,
263 size_t End = Offset + MapSize;
264 assert(End <= FileSize);
265 if (End != FileSize)
366 ReadBytes = read(0, Buffer.end(), ChunkSize);
  /external/webp/src/utils/
thread_utils.c 318 static void End(WebPWorker* const worker) {
338 Init, Reset, Sync, Launch, Execute, End
345 winterface->Execute == NULL || winterface->End == NULL) {
  /prebuilts/go/darwin-x86/src/go/ast/
commentmap.go 52 return pi < pj || pi == pj && a[i].End() > a[j].End()
84 pos, end token.Position // source interval of comment group at current index
95 r.end = r.fset.Position(r.comment.End())
119 for i > 0 && (*s)[i-1].End() <= pos {
164 pend token.Position // end of p
166 pgend token.Position // end of pg
183 for r.end.Offset <= qpos.Offset {
187 pgend = fset.Position(pg.End())
    [all...]
  /prebuilts/go/linux-x86/src/go/ast/
commentmap.go 52 return pi < pj || pi == pj && a[i].End() > a[j].End()
84 pos, end token.Position // source interval of comment group at current index
95 r.end = r.fset.Position(r.comment.End())
119 for i > 0 && (*s)[i-1].End() <= pos {
164 pend token.Position // end of p
166 pgend token.Position // end of pg
183 for r.end.Offset <= qpos.Offset {
187 pgend = fset.Position(pg.End())
    [all...]
  /art/compiler/debug/
elf_gnu_debugdata_writer.h 57 ctx->dst_->insert(ctx->dst_->end(), buffer, buffer + size);
100 builder->End();
  /art/compiler/
elf_builder.h 156 void End() {
198 End();
259 cache_.insert(cache_.end(), d, d + length);
276 this->End();
576 s->End();
584 s->End();
604 void End() {
624 shstrtab_.End();
626 // Write section headers at the end of the ELF file.
638 // the OS from reordering writes, so that we don't end up with valid header
    [all...]
  /art/runtime/gc/accounting/
card_table.cc 105 void CardTable::ClearCardRange(uint8_t* start, uint8_t* end) {
107 CHECK_ALIGNED(reinterpret_cast<uintptr_t>(end), kCardSize);
110 uint8_t* end_card = CardFromAddr(end);
121 uint8_t* end = mem_map_->End(); local
125 << " end: " << reinterpret_cast<void*>(end)
128 << " heap end: " << AddrFromCard(end)
  /art/runtime/gc/space/
large_object_space.cc 109 LargeObjectSpace::LargeObjectSpace(const std::string& name, uint8_t* begin, uint8_t* end)
112 total_objects_allocated_(0), begin_(begin), end_(end) {
169 CHECK(it != large_objects_.end());
183 if (UNLIKELY(it == large_objects_.end())) {
202 CHECK(it != large_objects_.end()) << "Attempted to get size of a large object which is not live";
225 callback(mem_map->Begin(), mem_map->End(), mem_map->Size(), arg);
234 return large_objects_.find(const_cast<mirror::Object*>(obj)) != large_objects_.end();
237 return large_objects_.find(const_cast<mirror::Object*>(obj)) != large_objects_.end();
323 DCHECK_LT(info, reinterpret_cast<AllocationInfo*>(allocation_info_map_->End()));
350 return new FreeListSpace(name, mem_map, mem_map->Begin(), mem_map->End());
    [all...]
  /bionic/libm/x86/
e_acos.S 54 // the end)
68 // the end)
92 # -- End static_func
387 END(acos)
388 # -- End acos
392 # End file scope ASM
    [all...]
e_sinh.S 93 # -- End static_func
323 END(sinh)
324 # -- End sinh
328 # End file scope ASM
1407 # End
s_expm1.S 89 # -- End static_func
364 END(expm1)
365 # -- End expm1
369 # End file scope ASM
702 # End
  /development/vndk/tools/vtable-dumper/
elf_handling.cpp 191 if (It == mAddrToSymbolRef.end()) {
203 std::sort(mVTables.begin(), mVTables.end());
222 It = std::lower_bound(mVTables.begin(), mVTables.end(), RelOffset);
308 if (It == mAddrToSymbolRef.end()) {
340 uint64_t End = Section.getAddress() + Section.getSize();
341 if (ROffset >= Begin && ROffset <= End) {
394 uint64_t End)
398 mEndAddr(End),
439 VTable::func_iterator VTable::end() const { function in class:VTable
452 std::sort(mFunctions.begin(), mFunctions.end());
    [all...]

Completed in 618 milliseconds

<<11121314151617181920>>