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

12 3 4 5 6 7 8 91011>>

  /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/chromium_org/ppapi/c/dev/
ppp_printing_dev.h 77 void (*End)(PP_Instance instance);
  /external/chromium_org/third_party/openmax_dl/dl/sp/src/arm/armv7/
omxSP_FFTFwd_CToC_FC32_Sfs_s.S 110 BLT End
116 B End
132 @// because the end of the "grpZeroSetLoop" loop inside
142 BEQ End
147 End:
161 .end
  /external/llvm/lib/AsmParser/
LLLexer.h 91 uint64_t atoull(const char *Buffer, const char *End);
92 uint64_t HexIntToVal(const char *Buffer, const char *End);
93 void HexToIntPair(const char *Buffer, const char *End, uint64_t Pair[2]);
94 void FP80HexToIntPair(const char *Buff, const char *End, uint64_t Pair[2]);
96 } // end namespace llvm
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/radeon/
radeon_fog.c 97 GLfloat end = ctx->Fog.End; local
103 if (ctx->Fog.Start == ctx->Fog.End)
106 d = 1.0F / (ctx->Fog.End - ctx->Fog.Start);
107 temp = (end - z) * d;
  /external/chromium_org/third_party/openmax_dl/dl/sp/src/arm/neon/
omxSP_FFTInv_CCSToR_S32S16_Sfs_s.S 120 B End
127 B End
139 End:
146 .end
  /external/llvm/lib/Support/
StringExtras.cpp 44 StringRef::size_type End = Source.find_first_of(Delimiters, Start);
46 return std::make_pair(Source.slice(Start, End), Source.substr(End));
  /external/mesa3d/src/mesa/drivers/dri/radeon/
radeon_fog.c 97 GLfloat end = ctx->Fog.End; local
103 if (ctx->Fog.Start == ctx->Fog.End)
106 d = 1.0F / (ctx->Fog.End - ctx->Fog.Start);
107 temp = (end - z) * d;
  /art/runtime/gc/space/
malloc_space.cc 39 byte* begin, byte* end, byte* limit, size_t growth_limit,
42 : ContinuousMemMapAllocSpace(name, mem_map, begin, end, limit, kGcRetentionPolicyAlwaysCollect),
50 CHECK(IsAligned<kGcCardSize>(reinterpret_cast<uintptr_t>(mem_map->End())));
132 byte* original_end = End();
166 SetEnd(reinterpret_cast<byte*>(RoundUp(reinterpret_cast<uintptr_t>(End()), kPageSize)));
168 DCHECK(IsAligned<accounting::CardTable::kCardSize>(End()));
170 DCHECK(IsAligned<kPageSize>(End()));
178 << "End " << reinterpret_cast<const void*>(End()) << "\n"
191 std::unique_ptr<MemMap> mem_map(GetMemMap()->RemapAtEnd(End(), alloc_space_name
197 byte* end = mem_map->Begin() + starting_size_; local
    [all...]
  /external/chromium_org/sdch/open-vcdiff/src/
headerparser.h 27 // This class contains a contiguous memory buffer with start and end pointers,
40 const char* End() const { return end_; }
68 // Jumps the parsing position to the end of the data chunk.
107 // To achieve this end, one extra level of indirection (a pointer to a
140 const char* End() const {
141 return parseable_chunk_->End();
196 // (which may extend far past the end of the header.)
207 // was reached before the end of the element to be parsed.) Once one of these
217 // function after an error or end-of-data condition is legal and does nothing.
246 // reached before the end of the values to be parsed.) If return value i
    [all...]
  /external/chromium_org/tools/perf/page_sets/
mobile_memory.py 53 interaction.End()
58 interaction.End()
63 interaction.End()
68 interaction.End()
82 interaction.End()
top_25.py 29 interaction.End()
52 interaction.End()
60 interaction.End()
68 interaction.End()
76 interaction.End()
84 interaction.End()
92 interaction.End()
100 interaction.End()
145 interaction.End()
202 interaction.End()
    [all...]
  /external/llvm/lib/CodeGen/
LiveRangeCalc.cpp 110 E = LiveIn.end(); I != E; ++I) {
115 SlotIndex Start, End;
116 std::tie(Start, End) = Indexes->getMBBRange(MBB);
120 End = I->Kill;
128 Updater.add(Start, End, I->Value);
213 SlotIndex Start, End;
214 std::tie(Start, End) = Indexes->getMBBRange(Pred);
218 VNInfo *VNI = LR.extendInBlock(Start, End);
241 array_pod_sort(WorkList.begin(), WorkList.end());
247 E = WorkList.end(); I != E; ++I)
    [all...]
  /external/clang/unittests/Tooling/
CommentHandlerTest.cpp 92 CommentList::const_iterator End;
97 : Current(Comments.begin()), End(Comments.end()), PP(PP)
101 if (Current != End) {
102 EXPECT_TRUE(Current == End) << "Unexpected comment \""
109 EXPECT_TRUE(Current != End) << "Comment " << Message << " not found";
110 if (Current == End) return;
221 } // end namespace clang
TestVisitor.h 138 It = ExpectedMatches.begin(), End = ExpectedMatches.end();
139 It != End; ++It) {
153 It = DisallowedMatches.begin(), End = DisallowedMatches.end();
154 It != End; ++It) {
160 It = ExpectedMatches.begin(), End = ExpectedMatches.end();
161 It != End; ++It) {
  /external/compiler-rt/lib/ubsan/
ubsan_diag.h 97 Location Start, End;
101 Range() : Start(), End(), Text() {}
102 Range(MemoryLocation Start, MemoryLocation End, const char *Text)
103 : Start(Start), End(End), Text(Text) {}
105 Location getEnd() const { return End; }
  /external/llvm/include/llvm/ADT/
SetVector.h 54 SetVector(It Start, It End) {
55 insert(Start, End);
78 /// \brief Get an iterator to the end of the SetVector.
79 iterator end() { function in class:llvm::SetVector
80 return vector_.end();
83 /// \brief Get a const_iterator to the end of the SetVector.
84 const_iterator end() const { function in class:llvm::SetVector
85 return vector_.end();
111 void insert(It Start, It End) {
112 for (; Start != End; ++Start
    [all...]
  /external/llvm/lib/MC/MCAnalysis/
MCAtom.cpp 25 assert((TruncPt >= Begin && TruncPt < End) &&
33 assert((SplitPt > Begin && SplitPt <= End) &&
36 // Compute the new begin/end points.
40 REnd = End;
50 if (Data.size() > End + 1 - Begin)
51 remap(Begin, End + 1);
68 assert(I != Data.end() && "Split point not found in range!");
70 std::copy(I, Data.end(), std::back_inserter(RightAtom->Data));
71 Data.erase(I, Data.end());
78 if (NextInstAddress + Size - 1 > End)
    [all...]
  /external/llvm/lib/DebugInfo/
DWARFDebugAbbrev.cpp 73 PrevAbbrOffsetPos = AbbrDeclSets.end();
103 const auto End = AbbrDeclSets.end();
104 if (PrevAbbrOffsetPos != End && PrevAbbrOffsetPos->first == CUAbbrOffset) {
109 if (Pos != End) {
  /external/llvm/lib/IR/
Use.cpp 42 const Use *End = getImpliedUser();
43 const UserRef *ref = reinterpret_cast<const UserRef *>(End);
45 : reinterpret_cast<User *>(const_cast<Use *>(End));
127 } // End llvm namespace
  /external/chromium_org/chrome/browser/ui/views/
color_chooser_aura.h 34 virtual void End() OVERRIDE;
  /external/chromium_org/components/web_contents_delegate_android/
color_chooser_android.h 36 virtual void End() OVERRIDE;
  /external/chromium_org/third_party/libwebp/utils/
thread.h 73 void (*End)(WebPWorker* const worker);
  /external/chromium_org/ui/gfx/animation/
linear_animation.h 38 // Skip to the end of the current animation.
39 void End();
58 // Overriden to advance to the end (if End was invoked).
70 // If true, we're in end. This is used to determine if the animation should
71 // be advanced to the end from AnimationStopped.
  /external/compiler-rt/lib/msan/
msan_report.cc 36 const char *End() { return Default(); }
50 Symbolizer::Get()->Demangle(sep + 1), d.Origin(), d.End());
67 Printf(" %sinvalid origin id(%d)%s\n", d.Warning(), id, d.End());
83 d.Origin(), d.End());
92 d.End());
107 Printf("%s", d.End());
147 Printf("%s", d.End());
155 // Scan from the end for better locality.
187 uptr end = start + size; local
190 size = end - s
    [all...]

Completed in 759 milliseconds

12 3 4 5 6 7 8 91011>>