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

1 2 3 45 6 7 8 91011>>

  /art/runtime/gc/accounting/
atomic_stack.h 147 T* End() const {
165 std::sort(Begin(), End());
175 return std::binary_search(Begin(), End(), value);
179 return std::find(Begin(), End(), value) != End();
card_table.cc 96 byte* card_end = CardFromAddr(space->End()); // Make sure to round up.
112 byte* end = mem_map_->End(); local
116 << " end: " << reinterpret_cast<void*>(end)
119 << " heap end: " << AddrFromCard(end)
  /external/chromium_org/third_party/mesa/src/src/mesa/main/
fog.c 88 if (ctx->Fog.End == ctx->Fog.Start)
91 ctx->Fog._Scale = 1.0f / (ctx->Fog.End - ctx->Fog.Start);
137 if (ctx->Fog.End == *params)
140 ctx->Fog.End = *params;
220 ctx->Fog.End = 1.0;
  /external/llvm/include/llvm/ADT/
SmallPtrSet.h 149 const void *const *End;
152 : Bucket(BP), End(E) {
165 /// that is. This is guaranteed to stop because the end() bucket is marked
168 assert(Bucket <= End);
169 while (Bucket != End &&
194 assert(Bucket < End);
282 inline iterator end() const {
  /external/llvm/lib/Transforms/Scalar/
MemCpyOptimizer.cpp 138 // Start/End - A semi range that describes the span that this range covers.
139 // The range is closed at the start and open at the end: [Start, End).
140 int64_t Start, End;
155 } // end anon namespace
159 if (TheStores.size() >= 4 || End-Start >= 16) return true;
182 // size. If so, check to see whether we will end up actually reducing the
184 unsigned Bytes = unsigned(End-Start);
212 const_iterator end() const { return Ranges.end(); } function in class:__anon30078::MemsetRanges
    [all...]
  /external/llvm/tools/llvm-mcmarkup/
llvm-mcmarkup.cpp 38 StringRef::const_iterator End;
41 : Start(Source.begin()), CurPtr(Source.begin()), End(Source.end()) {}
43 bool isEOF() { return CurPtr == End; }
45 if (CurPtr == End) return EOF;
49 if (CurPtr == End) return EOF;
110 // Example handler for when the end of a tag is recognized.
176 // A ">>" is output as a literal '>' and does not end a markup tag.
185 // Do any special handling for the end of a tag.
222 std::for_each(InputFilenames.begin(), InputFilenames.end(),
    [all...]
  /external/mesa3d/src/mesa/main/
fog.c 88 if (ctx->Fog.End == ctx->Fog.Start)
91 ctx->Fog._Scale = 1.0f / (ctx->Fog.End - ctx->Fog.Start);
137 if (ctx->Fog.End == *params)
140 ctx->Fog.End = *params;
220 ctx->Fog.End = 1.0;
  /external/bison/djgpp/
djunpack.bat 3 Rem WARNING WARNING WARNING: This file needs to have DOS CRLF end-of-line
40 GoTo End
70 GoTo End
75 GoTo End
79 GoTo End
83 GoTo End
87 :End
  /external/chromium_org/ppapi/proxy/
ppp_printing_proxy.cc 81 void End(PP_Instance instance) {
102 &End,
200 CallWhileUnlocked(ppp_printing_impl_->End, instance);
  /external/chromium_org/third_party/WebKit/Source/platform/animation/
TimingFunction.h 170 End,
199 case End:
201 DEFINE_STATIC_REF(StepsTimingFunction, end, (adoptRef(new StepsTimingFunction(End, 1, StepAtEnd))));
202 return end;
  /external/llvm/include/llvm/IR/
Dominators.h 51 const BasicBlock *End;
54 Start(Start_), End(End_) { }
59 return End;
128 return N->end();
184 } // End llvm namespace
  /art/runtime/gc/space/
bump_pointer_space.cc 56 : ContinuousMemMapAllocSpace(name, mem_map, mem_map->Begin(), mem_map->Begin(), mem_map->End(),
58 growth_end_(mem_map->End()),
71 // Reset the end of the space back to the beginning, we move the end forward as we allocate
86 << reinterpret_cast<void*>(Begin()) << "-" << reinterpret_cast<void*>(End()) << " - "
155 byte* end = End(); local
169 end = main_end;
186 while (pos < end) {
191 const mirror::Object* end = reinterpret_cast<const mirror::Object*>(pos + block_size) local
    [all...]
  /external/chromium_org/gpu/command_buffer/service/
gpu_tracer.cc 63 virtual void End() OVERRIDE {
103 virtual bool End(GpuTracerSource source) OVERRIDE;
182 void GLARBTimerTrace::End() {
203 // TODO(dsinclair): It's possible for the timer to wrap during the start/end.
204 // We need to detect if the end is less then the start and correct for the
236 // End Trace for all active markers
240 markers_[i].trace_->End();
269 bool GPUTracerImpl::End(GpuTracerSource source) {
276 // End trace
280 trace->End();
    [all...]
  /external/chromium_org/third_party/WebKit/Source/modules/webdatabase/
SQLTransactionBackend.cpp 87 // 0. End | . |
94 // 0. SQLTransactionState::End
95 // - the end state.
158 // - goto SQLTransactionState::End.
240 // Note: there's a circular reference between the SQLTransaction front-end and
241 // back-end. This circular reference is established in the constructor of the
243 // doCleanup() to nullify m_frontend. This is done at the end of the transaction's
264 // At the end of cleanupAndTerminate():
266 // At the end of the cleanup state, the SQLTransactionBackend::m_frontend is nullified.
456 &SQLTransactionBackend::unreachableState, // 0. end
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/swrast/
s_fog.c 44 if (ctx->Fog.Start == ctx->Fog.End)
47 d = 1.0F / (ctx->Fog.End - ctx->Fog.Start);
48 f = (ctx->Fog.End - z) * d;
92 for (i = 0; i < span->end; i++) { \
110 for (i = 0; i < span->end; i++) { \
164 const GLfloat fogEnd = ctx->Fog.End;
165 const GLfloat fogScale = (ctx->Fog.Start == ctx->Fog.End)
166 ? 1.0F : 1.0F / (ctx->Fog.End - ctx->Fog.Start);
  /external/clang/include/clang/AST/
StmtOpenMP.h 96 ArrayRef<OMPClause *>::const_iterator End;
99 while (Current != End && !Pred(*Current))
105 filtered_clause_iterator() : Current(), End() {}
107 : Current(Arr.begin()), End(Arr.end()), Pred(Pred) {
124 bool operator!() { return Current == End; }
125 operator bool() { return Current != End; }
164 Stmt **ChildStorage = reinterpret_cast<Stmt **>(getClauses().end());
185 /// \brief Build directive with the given start and end location.
243 /// \brief Build directive with the given start and end location
    [all...]
  /external/clang/lib/Tooling/
CompilationDatabase.cpp 44 Ie = CompilationDatabasePluginRegistry::end();
143 for (driver::ActionList::const_iterator I = A->begin(), E = A->end();
179 for (const std::string *I = Arr.begin(), *E = Arr.end(); I != E; ++I)
236 // prevents compilation, e.g. -E or something like -version, we may still end
242 Args.erase(std::remove_if(Args.begin(), Args.end(),
244 Args.end());
253 for (driver::JobList::const_iterator I = Jobs.begin(), E = Jobs.end(); I != E;
273 std::vector<const char *>::iterator End = std::remove_if(
274 Args.begin(), Args.end(), MatchesAny(CompileAnalyzer.Inputs));
277 End = std::remove_if(Args.begin(), End, MatchesAny(DiagClient.UnusedInputs))
    [all...]
  /external/mesa3d/src/mesa/swrast/
s_fog.c 44 if (ctx->Fog.Start == ctx->Fog.End)
47 d = 1.0F / (ctx->Fog.End - ctx->Fog.Start);
48 f = (ctx->Fog.End - z) * d;
92 for (i = 0; i < span->end; i++) { \
110 for (i = 0; i < span->end; i++) { \
164 const GLfloat fogEnd = ctx->Fog.End;
165 const GLfloat fogScale = (ctx->Fog.Start == ctx->Fog.End)
166 ? 1.0F : 1.0F / (ctx->Fog.End - ctx->Fog.Start);
  /ndk/sources/host-tools/make-3.81/
configure.bat 47 goto End
56 goto End
61 :End
  /art/runtime/
mem_map.h 110 byte* End() const {
127 return Begin() <= addr && addr < End();
130 // Unmap the pages at end and remap them to create another memory map.
  /external/chromium_org/cc/debug/
frame_rate_counter.cc 94 for (RingBufferType::Iterator it = --ring_buffer_.End(); it; --it) {
127 for (RingBufferType::Iterator it = --ring_buffer_.End();
  /external/chromium_org/third_party/libwebp/utils/
quant_levels.c 61 if (num_levels_in <= num_levels) goto End; // nothing to do!
134 End:
  /external/chromium_org/third_party/skia/third_party/harfbuzz/src/
harfbuzz-open.h 180 HB_UShort End; /* last glyph ID in the range */
225 HB_UShort End; /* last glyph ID in the range */
  /external/chromium_org/ui/gfx/animation/
animation_unittest.cc 64 End();
106 // Lets an animation run, invoking End part way through and make sure we get the
118 // Runs an animation with a delegate that deletes the animation in end.
152 animation.End();
  /external/chromium_org/webkit/common/blob/
shareable_file_reference.cc 37 iterator End() {
39 return file_map_.end();
66 (found == g_file_map.Get().End()) ? NULL : found->second;

Completed in 1129 milliseconds

1 2 3 45 6 7 8 91011>>