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

12 3 4 5 6 7 8 91011>>

  /device/linaro/bootloader/edk2/QuarkSocPkg/QuarkSouthCluster/IohInit/Dxe/
IohBds.h 74 EFI_DEVICE_PATH_PROTOCOL End;
81 EFI_DEVICE_PATH_PROTOCOL End;
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Sample/Tools/Source/ProcessDsc/
DscFile.c 158 char *End;
245 for (End = Start; *End && (*End != '"'); End++)
247 if (*End != '"') {
253 *End = 0;
311 End = Start;
312 while (*End && (*End != ']') && !isspace (*End) && (*End != ',') && (*End != '|')) {
    [all...]
  /external/swiftshader/third_party/LLVM/lib/CodeGen/
CodePlacementOpt.cpp 58 MachineFunction::iterator End);
70 } // end anonymous namespace
128 /// Splice - Move the sequence of instructions [Begin,End) to just before
136 MachineFunction::iterator End) {
137 assert(Begin != MF.begin() && End != MF.begin() && InsertPt != MF.begin() &&
140 MachineFunction::iterator OldEndPrior = prior(End);
142 MF.splice(InsertPt, Begin, End);
188 MachineFunction::iterator End = llvm::next(Begin);
197 if (Prior->isSuccessor(End))
205 if (!Prior->isSuccessor(End))
    [all...]
  /external/clang/test/CodeGenCXX/
alloca-align.cpp 4 int Start, End;
  /external/swiftshader/third_party/LLVM/lib/MC/
MCAtom.cpp 19 assert(Address < End+Size &&
20 "Instruction not contiguous with end of atom!");
21 if (Address > End)
22 Parent->remap(this, Begin, End+Size);
29 Parent->remap(this, Begin, End+1);
35 assert((SplitPt > Begin && SplitPt <= End) &&
38 // Compute the new begin/end points.
42 uint64_t RightEnd = End;
55 assert(I != Data.end() && "Split point not found in range!");
57 std::copy(I, Data.end(), RightAtom->Data.end())
    [all...]
  /external/llvm/include/llvm/ADT/
StringExtras.h 49 char *BufPtr = std::end(Buffer);
59 return std::string(BufPtr, std::end(Buffer));
80 char *BufPtr = std::end(Buffer);
90 return std::string(BufPtr, std::end(Buffer));
154 inline std::string join_impl(IteratorT Begin, IteratorT End,
157 if (Begin == End)
161 while (++Begin != End) {
169 inline std::string join_impl(IteratorT Begin, IteratorT End,
172 if (Begin == End)
175 size_t Len = (std::distance(Begin, End) - 1) * Separator.size()
    [all...]
StringSet.h 38 void insert(const InputIt &Begin, const InputIt &End) {
39 for (auto It = Begin; It != End; ++It)
  /external/clang/include/clang/AST/
DeclLookups.h 27 StoredDeclsMap::iterator It, End;
37 StoredDeclsMap::iterator End)
38 : It(It), End(End) {}
51 } while (It != End &&
76 return lookups_range(all_lookups_iterator(Map->begin(), Map->end()),
77 all_lookups_iterator(Map->end(), Map->end()));
89 return lookups().end();
95 return lookups_range(all_lookups_iterator(Map->begin(), Map->end()),
    [all...]
  /external/llvm/lib/CodeGen/GlobalISel/
RegisterBank.cpp 28 for (unsigned RCId = 0, End = TRI.getNumRegClasses(); RCId != End; ++RCId) {
39 for (unsigned SubRCId = 0; SubRCId != End; ++SubRCId) {
96 for (unsigned RCId = 0, End = TRI->getNumRegClasses(); RCId != End; ++RCId) {
  /external/llvm/lib/MC/
MCSection.cpp 27 if (!End)
28 End = Ctx.createTempSymbol("sec_end", true);
29 return End;
32 bool MCSection::hasEnded() const { return End && End->isInSection(); }
59 return end();
63 SubsectionFragmentMap.end(),
66 if (MI != SubsectionFragmentMap.end()) {
72 if (MI == SubsectionFragmentMap.end())
73 IP = end();
105 MCSection::iterator MCSection::end() { return Fragments.end(); } function in class:MCSection
    [all...]
  /external/swiftshader/third_party/LLVM/include/llvm/ADT/
SetVector.h 53 SetVector(It Start, It End) {
54 insert(Start, End);
77 /// @brief Get an iterator to the end of the SetVector.
78 iterator end() { function in class:llvm::SetVector
79 return vector_.end();
82 /// @brief Get a const_iterator to the end of the SetVector.
83 const_iterator end() const { function in class:llvm::SetVector
84 return vector_.end();
110 void insert(It Start, It End) {
111 for (; Start != End; ++Start
    [all...]
  /prebuilts/go/darwin-x86/src/go/ast/
ast.go 37 End() token.Pos // position of first character immediately after the node
68 func (c *Comment) End() token.Pos { return token.Pos(int(c.Slash) + len(c.Text)) }
78 func (g *CommentGroup) End() token.Pos { return g.List[len(g.List)-1].End() }
111 //-style comment (no newline at the end)
172 func (f *Field) End() token.Pos {
174 return f.Tag.End()
176 return f.Type.End()
198 func (f *FieldList) End() token.Pos {
205 return f.List[n-1].End()
    [all...]
  /prebuilts/go/linux-x86/src/go/ast/
ast.go 37 End() token.Pos // position of first character immediately after the node
68 func (c *Comment) End() token.Pos { return token.Pos(int(c.Slash) + len(c.Text)) }
78 func (g *CommentGroup) End() token.Pos { return g.List[len(g.List)-1].End() }
111 //-style comment (no newline at the end)
172 func (f *Field) End() token.Pos {
174 return f.Tag.End()
176 return f.Type.End()
198 func (f *FieldList) End() token.Pos {
205 return f.List[n-1].End()
    [all...]
  /external/llvm/include/llvm/Support/
BranchProbability.h 64 ProbabilityIter End);
177 ProbabilityIter End) {
178 if (Begin == End)
182 uint64_t Sum = std::accumulate(Begin, End, uint64_t(0),
199 std::replace_if(Begin, End,
208 BranchProbability BP(1, std::distance(Begin, End));
209 std::fill(Begin, End, BP);
213 for (auto I = Begin; I != End; ++I)
  /external/skia/tools/lua/
bitmap_statistics.lua 3 end
5 function string.endsWith(String,End)
6 return End=='' or string.sub(String,-string.len(End))==End
7 end
20 end
24 end
42 end
47 end
    [all...]
  /external/swiftshader/third_party/LLVM/include/llvm/MC/
MCAtom.h 39 uint64_t Begin, End;
46 : Type(T), Parent(P), Begin(B), End(E) { }
MCModule.h 52 MCAtom *createAtom(MCAtom::AtomType Type, uint64_t Begin, uint64_t End);
  /external/libcxx/src/experimental/filesystem/
path.cpp 60 auto End = getAfterBack();
61 return TkEnd == End ? nullptr : TkEnd;
65 const PosPtr End = getAfterBack();
67 if (Start == End)
72 PosPtr TkEnd = consumeSeparator(Start, End);
77 auto NameEnd = consumeName(TkEnd, End);
85 return makeState(PS_InFilenames, Start, consumeName(Start, End));
89 return makeState(PS_InRootDir, Start, consumeSeparator(Start, End));
91 return makeState(PS_InFilenames, Start, consumeName(Start, End));
94 PosPtr SepEnd = consumeSeparator(Start, End);
    [all...]
  /external/swiftshader/third_party/LLVM/lib/Archive/
ArchiveReader.cpp 23 static inline unsigned readInteger(const char*&At, const char*End) {
28 if (At == End)
40 const char* End = At + size;
41 while (At < End) {
42 unsigned offset = readInteger(At, End);
43 if (At == End) {
48 unsigned length = readInteger(At, End);
49 if (At == End) {
54 if (At + length > End) {
71 Archive::parseMemberHeader(const char*& At, const char* End, std::string* error
    [all...]
  /external/llvm/lib/AsmParser/
LLLexer.h 89 uint64_t atoull(const char *Buffer, const char *End);
90 uint64_t HexIntToVal(const char *Buffer, const char *End);
91 void HexToIntPair(const char *Buffer, const char *End, uint64_t Pair[2]);
92 void FP80HexToIntPair(const char *Buff, const char *End, uint64_t Pair[2]);
94 } // end namespace llvm
  /external/swiftshader/third_party/LLVM/lib/AsmParser/
LLLexer.h 86 uint64_t atoull(const char *Buffer, const char *End);
87 uint64_t HexIntToVal(const char *Buffer, const char *End);
88 void HexToIntPair(const char *Buffer, const char *End, uint64_t Pair[2]);
89 void FP80HexToIntPair(const char *Buff, const char *End, uint64_t Pair[2]);
91 } // end namespace llvm
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/EdkIIGlueLib/Library/BaseCacheMaintenanceLib/
X86Cache.c 135 UINTN Start, End;
144 End = (Start + Length + (CACHE_LINE_SIZE - 1)) & ~(CACHE_LINE_SIZE - 1);
149 } while (Start != End);
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/EfiCommonLib/Ia32/
EfiCopyMemRep1.c 58 lea eax, [esi + edx - 1] ; eax <- End of Source
63 mov esi, eax ; esi <- End of Source
64 lea edi, [edi + edx - 1] ; edi <- End of Destination
EfiCopyMemRep4.c 58 lea eax, [esi + edx - 1] ; eax <- End of Source
70 mov esi, eax ; esi <- End of Source
71 lea edi, [edi + edx - 1] ; edi <- End of Destination
  /device/linaro/bootloader/edk2/MdePkg/Library/BaseCacheMaintenanceLib/
X86Cache.c 129 UINTN End;
156 End = (Start + Length + (CacheLineSize - 1)) & ~(CacheLineSize - 1);
161 } while (Start != End);

Completed in 735 milliseconds

12 3 4 5 6 7 8 91011>>