Searched refs:Start (Results 1 - 25 of 243) sorted by relevance

12345678910

/macosx-10.10/llvmCore-3425.0.34/runtime/libprofile/
H A DProfiling.h33 void write_profiling_data(enum ProfilingType PT, unsigned *Start,
/macosx-10.10/llvmCore-3425.0.34/include/llvm/Support/
H A DSMLoc.h47 SMLoc Start, End; member in class:llvm::SMRange
50 SMRange(SMLoc St, SMLoc En) : Start(St), End(En) {
51 assert(Start.isValid() == End.isValid() &&
52 "Start and end should either both be valid or both be invalid!");
55 bool isValid() const { return Start.isValid(); }
H A DFileOutputBuffer.h85 FileOutputBuffer(uint8_t *Start, uint8_t *End,
/macosx-10.10/llvmCore-3425.0.34/lib/VMCore/
H A DUse.cpp89 Use *Use::initTags(Use * const Start, Use *Stop) { argument
92 if (Start == Stop--)
93 return Start;
106 while (Start != Stop) {
119 return Start;
126 void Use::zap(Use *Start, const Use *Stop, bool del) { argument
127 while (Start != Stop)
130 ::operator delete(Start);
H A DUser.cpp60 Use *Start = static_cast<Use*>(Storage); local
61 Use *End = Start + Us;
63 Obj->OperandList = Start;
65 Use::initTags(Start, End);
74 User *Start = static_cast<User*>(Usr); local
75 Use *Storage = static_cast<Use*>(Usr) - Start->NumOperands;
/macosx-10.10/llvmCore-3425.0.34/include/llvm/ADT/
H A DSetVector.h53 SetVector(It Start, It End) { argument
54 insert(Start, End);
110 void insert(It Start, It End) {
111 for (; Start != End; ++Start)
112 if (set_.insert(*Start))
113 vector_.push_back(*Start);
176 SmallSetVector(It Start, It End) {
177 this->insert(Start, End);
H A DSTLExtras.h273 inline void array_pod_sort(IteratorTy Start, IteratorTy End) { argument
275 if (Start == End) return;
276 qsort(&*Start, End-Start, sizeof(*Start),
277 get_array_pad_sort_comparator(*Start));
281 inline void array_pod_sort(IteratorTy Start, IteratorTy End, argument
284 if (Start == End) return;
285 qsort(&*Start, End-Start, sizeo
[all...]
H A DStringRef.h378 /// Return a reference to the substring from [Start, Start + N).
380 /// \param Start The index of the starting character in the substring; if
386 /// suffix (starting with \p Start) will be returned.
387 StringRef substr(size_t Start, size_t N = npos) const {
388 Start = min(Start, Length);
389 return StringRef(Data + Start, min(N, Length - Start));
406 /// Return a reference to the substring from [Start, En
[all...]
/macosx-10.10/llvmCore-3425.0.34/lib/Support/
H A DFileOutputBuffer.cpp26 FileOutputBuffer::FileOutputBuffer(uint8_t *Start, uint8_t *End, argument
28 : BufferStart(Start), BufferEnd(End) {
121 uint8_t *Start = reinterpret_cast<uint8_t*>(Base);
122 Result.reset(new FileOutputBuffer(Start, Start+Size, FilePath, TempFilePath));
130 void *Start = reinterpret_cast<void*>(BufferStart); local
131 error_code EC = sys::fs::unmap_file_pages(Start, getBufferSize());
H A DStringExtras.cpp41 StringRef::size_type Start = Source.find_first_not_of(Delimiters); local
44 StringRef::size_type End = Source.find_first_of(Delimiters, Start);
46 return std::make_pair(Source.slice(Start, End), Source.substr(End));
H A DStreamableMemoryObject.cpp22 RawMemoryObject(const unsigned char *Start, const unsigned char *End) : argument
23 FirstChar(Start), LastChar(End) {
135 const unsigned char *Start, const unsigned char *End) {
136 return new RawMemoryObject(Start, End);
134 getNonStreamedMemoryObject( const unsigned char *Start, const unsigned char *End) argument
/macosx-10.10/tcl-105/tcl84/tcl/generic/
H A DtclGetDate.y123 static time_t DSTcorrect _ANSI_ARGS_((time_t Start, time_t Future));
124 static time_t NamedDay _ANSI_ARGS_((time_t Start, time_t DayOrdinal,
126 static time_t NamedMonth _ANSI_ARGS_((time_t Start, time_t MonthOrdinal,
128 static int RelativeMonth _ANSI_ARGS_((time_t Start, time_t RelMonth,
130 static int RelativeDay _ANSI_ARGS_((time_t Start, time_t RelDay,
691 /* Start computing the value. First determine the number of days
723 DSTcorrect(Start, Future)
724 time_t Start;
729 StartDay = (TclpGetDate((TclpTime_t)&Start, 0)->tm_hour + 1) % 24;
731 return (Future - Start)
[all...]
H A DtclDate.c106 static time_t DSTcorrect _ANSI_ARGS_((time_t Start, time_t Future));
107 static time_t NamedDay _ANSI_ARGS_((time_t Start, time_t DayOrdinal,
109 static time_t NamedMonth _ANSI_ARGS_((time_t Start, time_t MonthOrdinal,
111 static int RelativeMonth _ANSI_ARGS_((time_t Start, time_t RelMonth,
113 static int RelativeDay _ANSI_ARGS_((time_t Start, time_t RelDay,
472 /* Start computing the value. First determine the number of days
504 DSTcorrect(Start, Future)
505 time_t Start;
510 StartDay = (TclpGetDate((TclpTime_t)&Start, 0)->tm_hour + 1) % 24;
512 return (Future - Start)
843 time_t Start; local
[all...]
/macosx-10.10/sudo-73/src/
H A Dgetdate.y615 DSTcorrect(Start, Future)
616 time_t Start;
622 StartDay = (localtime(&Start)->tm_hour + 1) % 24;
624 return (Future - Start) + (StartDay - FutureDay) * 60L * 60L;
629 RelativeDate(Start, DayOrdinal, DayNumber)
630 time_t Start;
637 now = Start;
641 return DSTcorrect(Start, now);
646 RelativeMonth(Start, RelMonth)
647 time_t Start;
[all...]
/macosx-10.10/llvmCore-3425.0.34/lib/CodeGen/
H A DLiveRangeCalc.cpp117 SlotIndex Start, End; local
118 tie(Start, End) = Indexes->getMBBRange(MBB);
121 I->LI->addRange(LiveRange(Start, I->Kill, VNI));
123 I->LI->addRange(LiveRange(Start, End, VNI));
218 SlotIndex Start, End; local
219 tie(Start, End) = Indexes->getMBBRange(Pred);
223 VNInfo *VNI = LI->extendInBlock(Start, End);
323 SlotIndex Start, End; local
324 tie(Start, End) = Indexes->getMBBRange(MBB);
325 VNInfo *VNI = I->LI->getNextValue(Start, *Allo
[all...]
H A DInterferenceCache.cpp107 SlotIndex Start, Stop; local
108 tie(Start, Stop) = Indexes->getMBBRange(MBBNum);
111 if (PrevPos != Start) {
112 if (!PrevPos.isValid() || Start < PrevPos) {
115 RUI.VirtI.find(Start);
116 RUI.FixedI = RUI.Fixed->find(Start);
121 RUI.VirtI.advanceTo(Start);
123 RUI.FixedI = RUI.Fixed->advanceTo(RUI.FixedI, Start);
126 PrevPos = Start;
185 tie(Start, Sto
[all...]
H A DSplitKit.cpp190 SlotIndex Start, Stop; local
191 tie(Start, Stop) = LIS.getSlotIndexes()->getMBBRange(BI.MBB);
206 assert(BI.FirstInstr >= Start);
213 BI.LiveIn = LVI->start <= Start;
536 void SplitEditor::useIntv(SlotIndex Start, SlotIndex End) { argument
538 DEBUG(dbgs() << " useIntv [" << Start << ';' << End << "):");
539 RegAssign.insert(Start, End, OpenIdx);
595 SlotIndex Start = LIS.getMBBStartIdx(&MBB); local
596 DEBUG(dbgs() << " leaveIntvAtTop BB#" << MBB.getNumber() << ", " << Start);
598 VNInfo *ParentVNI = Edit->getParent().getVNInfoAt(Start);
611 overlapIntv(SlotIndex Start, SlotIndex End) argument
842 SlotIndex Start = ParentI->start; local
1180 SlotIndex Start, Stop; local
1283 SlotIndex Start, Stop; local
1375 SlotIndex Start, Stop; local
[all...]
/macosx-10.10/llvmCore-3425.0.34/unittests/ADT/
H A DDAGDeltaAlgorithmTest.cpp49 std::set<unsigned> range(unsigned Start, unsigned End) { argument
51 while (Start != End)
52 S.insert(Start++);
H A DDeltaAlgorithmTest.cpp64 std::set<unsigned> range(unsigned Start, unsigned End) { argument
66 while (Start != End)
67 S.insert(Start++);
/macosx-10.10/llvmCore-3425.0.34/lib/Support/Unix/
H A DMemory.inc100 uintptr_t Start = NearBlock ? reinterpret_cast<uintptr_t>(NearBlock->base()) +
102 if (Start && Start % PageSize)
103 Start += PageSize - Start % PageSize;
105 void *Addr = ::mmap(reinterpret_cast<void*>(Start), PageSize*NumPages,
319 const char *Start = static_cast<const char *>(Addr);
320 const char *End = Start + Len;
321 __clear_cache(const_cast<char *>(Start), const_cast<char *>(End));
323 const char *Start
[all...]
/macosx-10.10/shell_cmds-179/find/
H A Dgetdate.y625 DSTcorrect(time_t Start, time_t Future)
630 StartDay = (localtime(&Start)->tm_hour + 1) % 24;
632 return (Future - Start) + (StartDay - FutureDay) * 60L * 60L;
637 RelativeDate(time_t Start, time_t DayOrdinal, time_t DayNumber)
642 now = Start;
646 return DSTcorrect(Start, now);
651 RelativeMonth(time_t Start, time_t RelMonth)
659 tm = localtime(&Start);
663 return DSTcorrect(Start,
856 time_t Start;
[all...]
/macosx-10.10/IOFireWireFamily-456/IOFireWireLib.CFPlugInProj/
H A DIOFireWireLibIOCFPlugIn.h43 IOReturn Start(CFDictionaryRef propertyTable, io_service_t service );
/macosx-10.10/IOKitUser-1050.1.21/
H A DIOCFPlugIn.h50 IOReturn (*Start)(void *thisPointer, CFDictionaryRef propertyTable, \
/macosx-10.10/llvmCore-3425.0.34/lib/MC/
H A DMachObjectWriter.cpp127 uint64_t Start = OS.tell(); local
128 (void) Start;
142 assert(OS.tell() - Start ==
157 uint64_t Start = OS.tell(); local
158 (void) Start;
185 assert(OS.tell() - Start == SegmentLoadCommandSize);
205 uint64_t Start = OS.tell(); local
206 (void) Start;
234 assert(OS.tell() - Start == (is64Bit() ? macho::Section64Size :
244 uint64_t Start local
267 uint64_t Start = OS.tell(); local
359 uint64_t Start = OS.tell(); local
823 uint64_t Start = local
[all...]
/macosx-10.10/llvmCore-3425.0.34/lib/TableGen/
H A DTGLexer.cpp359 // Start of a nested comment?
454 const char *Start = CurPtr++; local
460 StringSwitch<tgtok::TokKind>(StringRef(Start, CurPtr - Start))
476 return Kind != tgtok::Error ? Kind : ReturnError(Start-1, "Unknown operator");

Completed in 143 milliseconds

12345678910