/external/eigen/lapack/ |
slapy3.f | 106 END IF 109 * End of SLAPY3 111 END
|
zlacgv.f | 111 END IF 114 * End of ZLACGV 116 END
|
zladiv.f | 95 * End of ZLADIV 97 END
|
/external/llvm/include/llvm/Analysis/ |
IntervalIterator.h | 81 copy(I->Nodes.begin(), I->Nodes.end(), back_inserter(Int->Nodes)); 100 IntervalIterator() {} // End iterator, empty stack 132 assert(!IntStack.empty() && "Attempting to use interval iterator at end!"); 222 Int->Successors.end(), NodeHeader), 223 Int->Successors.end()); 229 End = GT::child_end(Node); It != End; ++It) 257 } // End llvm namespace
|
/external/llvm/lib/ExecutionEngine/IntelJITEvents/ |
IntelJITEventListener.cpp | 150 Details.LineStarts.begin(), E = Details.LineStarts.end(); 184 if (I != MethodIDs.end()) { 225 DILineInfoTable::iterator End = Lines.end(); 226 for (DILineInfoTable::iterator It = Begin; It != End; ++It) { 265 if (OI == LoadedObjectMap.end()) 271 FE = Functions.end(); 276 if (MI != MethodIDs.end()) {
|
/external/llvm/lib/Target/X86/ |
X86CompilationCallback_Win64.asm | 68 End
|
/external/mesa3d/docs/ |
MESA_resize_buffers.spec | 69 Begin and End.
|
/system/media/camera/docs/ |
CameraMetadataKeys.mako | 24 * modify the comment blocks at the start or end. 106 * End generated code
|
/external/clang/lib/AST/ |
NestedNameSpecifier.cpp | 401 void Append(char *Start, char *End, char *&Buffer, unsigned &BufferSize, 403 if (BufferSize + (End - Start) > BufferCapacity) { 408 (unsigned)(BufferSize + (End - Start))); 418 memcpy(Buffer + BufferSize, Start, End - Start); 419 BufferSize += End-Start;
|
/external/clang/lib/Rewrite/Core/ |
RewriteRope.cpp | 121 } // end anonymous namespace 226 } // end anonymous namespace 238 // Fastpath for a common case. There is already a splitpoint at the end. 462 } // end anonymous namespace 504 // Fastpath for a common case. Insert at end of last child. 514 // Insert at the end of this child. 587 // must be deleting to the end of the child. 683 else // Empty tree, this is an end() iterator. 702 else // Hit end(). 766 RopePiece RewriteRope::MakeRopeString(const char *Start, const char *End) { [all...] |
/external/llvm/lib/ExecutionEngine/JIT/ |
JITMemoryManager.cpp | 93 /// bits in the object headers, and adding an end of region memory block. 116 /// SetEndOfBlockSizeMarker - The word at the end of every free block is 161 /// bits in the object headers, and adding an end of region memory block. 207 // Add a marker at the end of the block, indicating the size of this free 299 /// the end of a normal slab. 397 // end of the slab. 404 // Put a tiny allocated block at the end of the memory chunk, so when 405 // FreeBlock calls getBlockAfter it doesn't fall off the end. 432 "Mismatched function start/end!"); 436 // Release the memory at the end of this block that isn't needed [all...] |
/art/runtime/gc/collector/ |
mark_sweep.cc | 63 // having this can add overhead in ProcessReferences since we may end up doing many calls of 330 std::vector<Object*> temp(mark_stack_->Begin(), mark_stack_->End()); 691 byte* begin, byte* end, byte minimum_age, size_t mark_stack_size, 696 end_(end), 745 Object** mark_stack_end = mark_stack_->End(); 757 byte* card_end = space->End(); 758 // Align up the end address. For example, the image space's end 778 DCHECK_EQ(mark_stack_end, mark_stack_->End()); 815 card_table->Scan(space->GetMarkBitmap(), space->Begin(), space->End(), visitor 874 uintptr_t end = reinterpret_cast<uintptr_t>(space->End()); local 896 uintptr_t end = reinterpret_cast<uintptr_t>(space->End()); local [all...] |
/external/chromium_org/components/autofill/core/browser/ |
autofill_country.cc | [all...] |
/external/chromium_org/third_party/skia/third_party/harfbuzz/src/ |
harfbuzz-open.c | 747 rr[n].End = GET_UShort(); 751 if ( rr[n].Start > rr[n].End || 752 ( rr[n].End - rr[n].Start + (long)rr[n].StartCoverageIndex ) >= 889 if ( glyphID >= rr[middle].Start && glyphID <= rr[middle].End ) 1039 crr[n].End = GET_UShort(); 1044 if ( crr[n].Start > crr[n].End || 1226 if ( glyphID >= crr[middle].Start && glyphID <= crr[middle].End ) 1416 /* END */
|
/external/llvm/lib/CodeGen/ |
LiveDebugVariables.cpp | 98 } // end anonymous namespace 173 UserValue *End = L2; 174 while (End->next) 175 End->leader = L1, End = End->next; 176 End->leader = L1; 177 End->next = L1->next; 223 /// End points where VNI is no longer live are added to Kills. 228 /// @param Kills Append end points of VNI's live range to Kills [all...] |
LiveIntervalAnalysis.cpp | 205 for (MachineFunction::iterator MBBI = MF->begin(), E = MF->end(); 210 for (MachineBasicBlock::iterator MI = MBB->begin(), ME = MBB->end(); 279 for (MachineFunction::const_iterator MFI = MF->begin(), MFE = MF->end(); 434 assert(LRI != LR.end() && "Missing segment for PHI"); 435 if (LRI->end != VNI->def.getDeadSlot()) 440 LR.removeSegment(LRI->start, LRI->end); 549 RU.push_back(std::make_pair(&RURanges, RURanges.find(LI->begin()->end))); 552 // Every instruction that kills Reg corresponds to a segment range end 554 for (LiveInterval::iterator RI = LI->begin(), RE = LI->end(); RI != RE; 557 if (RI->end.isBlock() [all...] |
TwoAddressInstructionPass.cpp | 162 } // end anonymous namespace 218 assert(LI.end() != LI.begin() && 223 if (I != LI.end() && I->start < MBBEndIdx) 227 KillMI = LIS->getInstructionFromIndex(I->end); 324 if (DI == DistanceMap.end()) 377 assert(I != LI.end() && "Reg must be live-in to use."); 378 return !I->end.isBlock() && SlotIndex::isSameInstr(I->end, useIdx); 482 if (SI == RegMap.end()) 673 if (DI != DistanceMap.end()) [all...] |
/art/compiler/ |
elf_patcher.cc | 115 if (write_patches_ && patches_set_.find(p) == patches_set_.end()) { 123 CHECK_LE(patch_ptr, reinterpret_cast<uintptr_t>(oat_file_->End())); 128 CHECK_LT(ret, reinterpret_cast<uintptr_t>(elf_file_->End())); 275 reinterpret_cast<uintptr_t>(elf_file_->End())) << "section is too large";
|
/art/runtime/gc/allocator/ |
rosalloc.h | 69 void* End(RosAlloc* rosalloc) EXCLUSIVE_LOCKS_REQUIRED(rosalloc->lock_) { 71 byte* end = fpr_base + ByteSize(rosalloc); variable 72 return end; 189 void* End() { 235 // Set the alloc_bit_map_ bits for slots that are past the end of the run. 244 void InspectAllSlots(void (*handler)(void* start, void* end, size_t used_bytes, void* callback_arg), void* arg); 394 kPageReleaseModeEnd, // Release empty pages at the end of the space. 397 // at the end of the space. 417 // the end of the memory region that's currently managed by this allocator. 421 // the end of the memory region that's ever managed by this allocator [all...] |
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/r300/compiler/ |
radeon_variable.c | 186 * Extend the live interval of T0 to the end of the 220 || chan_end > var->Live[chan].End) { 221 var->Live[chan].End = chan_end; 527 fprintf(stderr, "chan %u: start=%u end=%u ", i, 528 var->Live[i].Start, var->Live[i].End);
|
/external/chromium_org/third_party/openmax_dl/dl/sp/src/arm/neon/ |
omxSP_FFTFwd_RToCCS_S32_Sfs_s.S | 177 B End 272 @// BL would corrupt the flags. This is because the end of the "grpZeroSetLoop" loop inside 297 @// BL would corrupt the flags. This is because the end of the "grpZeroSetLoop" loop inside 395 @// change branch "End" to branch "finalComplexToRealFixup" in the above 432 BLT End 541 End: 548 .end
|
omxSP_FFTInv_CCSToR_S16_Sfs_s.S | 183 @ Store the scale factor and scale at the end 218 @ BL would corrupt the flags. This is because the end of the "grpZeroSetLoop" loop inside 241 @ BL would corrupt the flags. This is because the end of the "grpZeroSetLoop" loop inside 264 BLE End 280 B End 289 End: 301 .END
|
/external/clang/lib/Lex/ |
PPDirectives.cpp | 276 // If this is the end of the buffer, we have an error. 450 // Finally, if we are out of the conditional (saw an #endif or ran off the end [all...] |
/external/llvm/lib/CodeGen/AsmPrinter/ |
WinCodeViewLineTables.cpp | 48 std::replace(Filepath.begin(), Filepath.end(), '/', '\\'); 139 assert(FI.End && "Don't know where the function ends?"); 171 EmitLabelDiff(Asm->OutStreamer, Fn, FI.End); 258 // No more subsections. Fill with zeros to align the end of the section by 4. 275 // Find the end of the function prolog. 318 // Define end label for subprogram. 321 CurFn->End = FunctionEndSym;
|
/external/llvm/lib/MC/ |
MCMachOStreamer.cpp | 114 } // end anonymous namespace. 182 assert(!Data.End && "Mismatched .end_data_region!"); 183 // Create a temporary label to mark the end of the data region. 184 Data.End = getContext().CreateTempSymbol(); 185 EmitLabel(Data.End); 413 DF->getContents().append(Code.begin(), Code.end()); 437 ie = getAssembler().end(); it != ie; ++it) { 440 ie2 = it->end(); it2 != ie2; ++it2) {
|