Searched refs:CU (Results 1 - 13 of 13) sorted by relevance

/macosx-10.10/OpenSSL098-52/src/test/
H A DCAssdh.cnf16 countryName_default = CU
17 countryName_value = CU
/macosx-10.10/llvmCore-3425.0.34/lib/DebugInfo/
H A DDWARFContext.cpp152 DWARFCompileUnit *CU = std::lower_bound(CUs.begin(), CUs.end(), Offset, local
154 if (CU != CUs.end())
155 return &*CU;
167 DWARFCompileUnit *CU, const DWARFDebugLine::LineTable *LineTable,
169 if (CU == 0 ||
177 if (const char *CompilationDir = CU->getCompilationDir()) {
187 DWARFCompileUnit *CU, const DWARFDebugLine::LineTable *LineTable,
190 if (CU == 0 || LineTable == 0)
198 if (!getFileNameForCompileUnit(CU, LineTable, Row.File,
208 DWARFCompileUnit *CU local
166 getFileNameForCompileUnit( DWARFCompileUnit *CU, const DWARFDebugLine::LineTable *LineTable, uint64_t FileIndex, bool NeedsAbsoluteFilePath, std::string &FileName) argument
186 getFileLineInfoForCompileUnit( DWARFCompileUnit *CU, const DWARFDebugLine::LineTable *LineTable, uint64_t Address, bool NeedsAbsoluteFilePath, std::string &FileName, uint32_t &Line, uint32_t &Column) argument
242 DWARFCompileUnit *CU = getCompileUnitForAddress(Address); local
[all...]
H A DDWARFDebugInfoEntry.cpp459 bool DWARFDebugInfoEntryMinimal::getLowAndHighPC(const DWARFCompileUnit *CU, argument
462 LowPC = getAttributeValueAsUnsigned(CU, DW_AT_low_pc, -1ULL);
464 HighPC = getAttributeValueAsUnsigned(CU, DW_AT_high_pc, -1ULL);
469 DWARFDebugInfoEntryMinimal::buildAddressRangeTable(const DWARFCompileUnit *CU, argument
475 if (getLowAndHighPC(CU, LowPC, HighPC)) {
476 DebugAranges->appendRange(CU->getOffset(), LowPC, HighPC);
483 child->buildAddressRangeTable(CU, DebugAranges);
491 const DWARFCompileUnit *CU, const uint64_t Address) const {
495 if (getLowAndHighPC(CU, LowPC, HighPC))
498 uint32_t RangesOffset = getAttributeValueAsReference(CU, DW_AT_range
490 addressRangeContainsAddress( const DWARFCompileUnit *CU, const uint64_t Address) const argument
543 getCallerFrame( const DWARFCompileUnit *CU, uint32_t &CallFile, uint32_t &CallLine, uint32_t &CallColumn) const argument
552 getInlinedChainForAddress( const DWARFCompileUnit *CU, const uint64_t Address) const argument
[all...]
H A DDWARFDebugInfoEntry.h138 /// Retrieves DW_AT_low_pc and DW_AT_high_pc from CU.
140 bool getLowAndHighPC(const DWARFCompileUnit *CU,
143 void buildAddressRangeTable(const DWARFCompileUnit *CU,
146 bool addressRangeContainsAddress(const DWARFCompileUnit *CU,
153 const char* getSubroutineName(const DWARFCompileUnit *CU) const;
157 void getCallerFrame(const DWARFCompileUnit *CU, uint32_t &CallFile,
170 InlinedChain getInlinedChainForAddress(const DWARFCompileUnit *CU,
H A DDWARFCompileUnit.cpp103 << " (next CU at " << format("0x%08x", getNextCompileUnitOffset())
106 const DWARFDebugInfoEntryMinimal *CU = getCompileUnitDIE(false); local
107 assert(CU && "Null Compile Unit?");
108 CU->dump(OS, this, -1U);
189 // Don't append the CU die as we already did that
/macosx-10.10/llvmCore-3425.0.34/lib/Transforms/Instrumentation/
H A DGCOVProfiling.cpp95 std::string mangleName(DICompileUnit CU, const char *NewStem);
332 std::string GCOVProfiler::mangleName(DICompileUnit CU, const char *NewStem) { argument
340 if (CompileUnit == CU) {
348 SmallString<128> Filename = CU.getFilename();
371 DICompileUnit CU(CU_Nodes->getOperand(i));
373 raw_fd_ostream out(mangleName(CU, "gcno").c_str(), ErrorInfo,
380 DIArray SPs = CU.getSubprograms();
427 DICompileUnit CU(CU_Nodes->getOperand(i));
428 DIArray SPs = CU.getSubprograms();
653 DICompileUnit CU(CU_Node
[all...]
/macosx-10.10/llvmCore-3425.0.34/lib/VMCore/
H A DDebugInfo.cpp789 DICompileUnit CU(CU_Nodes->getOperand(i));
790 addCompileUnit(CU);
791 if (CU.getVersion() > LLVMDebugVersion10) {
792 DIArray GVs = CU.getGlobalVariables();
798 DIArray SPs = CU.getSubprograms();
801 DIArray EnumTypes = CU.getEnumTypes();
804 DIArray RetainedTypes = CU.getRetainedTypes();
948 bool DebugInfoFinder::addCompileUnit(DICompileUnit CU) { argument
949 if (!CU.Verify())
952 if (!NodesSeen.insert(CU))
[all...]
H A DType.cpp669 if (const ConstantInt *CU = dyn_cast<ConstantInt>(V))
670 return CU->getZExtValue() < STy->getNumElements();
/macosx-10.10/llvmCore-3425.0.34/lib/CodeGen/AsmPrinter/
H A DDwarfDebug.cpp674 if (CompileUnit *CU = CUMap.lookup(DISubprogram(N).getCompileUnit()))
675 constructSubprogramDIE(CU, N);
681 if (CompileUnit *CU = CUMap.lookup(DIGlobalVariable(N).getCompileUnit()))
682 CU->createGlobalVariableDIE(N);
688 if (CompileUnit *CU = CUMap.lookup(Ty.getCompileUnit()))
689 CU->getOrCreateTypeDIE(Ty);
695 if (CompileUnit *CU = CUMap.lookup(Ty.getCompileUnit()))
696 CU->getOrCreateTypeDIE(Ty);
727 if (CompileUnit *CU = CUMap.lookup(DIGlobalVariable(N).getCompileUnit()))
728 CU
755 CompileUnit *CU = constructCompileUnit(CUNode); local
[all...]
/macosx-10.10/llvmCore-3425.0.34/include/llvm/
H A DDebugInfo.h856 bool addCompileUnit(DICompileUnit CU);
/macosx-10.10/llvmCore-3425.0.34/lib/Transforms/IPO/
H A DGlobalOpt.cpp184 if (const Constant *CU = dyn_cast<Constant>(*UI)) {
185 if (!SafeToDestroyConstant(CU)) return false;
2405 ConstantInt *CU = cast<ConstantInt>(Addr->getOperand(OpNo)); local
2406 unsigned Idx = CU->getZExtValue();
/macosx-10.10/ruby-106/ruby/ext/tk/sample/tkextlib/tkimg/
H A Ddemo.rb904 3WE975s6nTbjlj8tJmn8qPwnAvh75NdPi9TUo5Wfnr/4spgeTN+cz5MtJF2u1kDO1JbpH/CU
/macosx-10.10/Heimdal-398.1.2/tests/apple/
H A Dprincipal.GUPTA4.APPLE.COM759 D�L��_:T���> T���:�������Ivu����9������o�J�L�D��fXT��-�;�1� CU��c����"!#�\�  p �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������|kusers0134@GUPTA4.APPLE.COM&����: kusers0134@GUPTA4.APPLE.COM4\ .�3Mroot/admin@GUPTA4.APPLE.COM.�3M6M�}Y��1|���O�������LM���L��"
3101 sT�.�S�z#�#�"� �B&����!{���f8�p��>D����`��4d.��Q���N�����+iHl*1��*���9��/�dL�����IS_> jS���D�V���D��N���z0�E�����.d����3���s� e����j�h��������|kusers0788@GUPTA4.APPLE.COM&����: kusers0788@GUPTA4.APPLE.COM4\ ��3Mroot/admin@GUPTA4.APPLE.COM��3M6���C�/�}A�%-������.)$M+�� ��]�e �rY�`M�����N|+{.�> MA�}���C�$Ia�D:�HL ����`z.�Q��8Rb�B�.��J6,�^[������ �A�������i:fQ�&_y�����m6�> NG���'~�Ol��D.9�aRU��C �8���l���:��I��������/�.��>�����0����|kusers0787@GUPTA4.APPLE.COM&����: kusers0787@GUPTA4.APPLE.COM4\ ��3Mroot/admin@GUPTA4.APPLE.COM��3M6�OJ�':?��h��"1Al��%��kQ0#���� ��;Q��lN�5�|k�U�.����*�@z�%�=`CUA������8 �����& �)<�?<.o�[�=������B���%!�����qC����s<�"+Ql|���> $��7.b"oL_u��=��8H���QJP~!#� l�������=z��7��A��+^��=������|kusers0786@GUPTA4.APPLE.COM&����: kusers0786@GUPTA4.APPLE.COM4\ ��3Mroot/admin@GUPTA4.APPLE.COM��3M6��3��� u�p.|���O����Y#����w�

Completed in 306 milliseconds