/external/spirv-llvm/lib/SPIRV/Mangler/ |
D | ParameterType.h | 456 T* dyn_cast(ParamType* pType) { in dyn_cast() argument 457 assert(pType && "dyn_cast does not support casting of NULL"); in dyn_cast() 458 return (T::enumTy == pType->getTypeId()) ? (T*)pType : NULL; in dyn_cast() 467 const T* dyn_cast(const ParamType* pType) { in dyn_cast() argument 468 assert(pType && "dyn_cast does not support casting of NULL"); in dyn_cast() 469 return (T::enumTy == pType->getTypeId()) ? (const T*)pType : NULL; in dyn_cast()
|
D | ParameterType.cpp | 227 bool UserDefinedType::equals(const ParamType* pType) const { in equals() 228 const UserDefinedType* pTy = SPIR::dyn_cast<UserDefinedType>(pType); in equals()
|
/external/mesa3d/src/gallium/drivers/swr/rasterizer/jitter/ |
D | builder_misc.cpp | 475 Type* pType = pArg->getType(); in PRINT() local 477 if (pType->isVectorTy()) in PRINT() 479 Type* pContainedType = pType->getContainedType(0); in PRINT() 491 for (uint32_t i = 1; i < pType->getVectorNumElements(); ++i) in PRINT() 533 else if ((tempStr[pos + 1] == 'f') && (pType->isFloatTy())) in PRINT() 1422 Value* Builder::CreateEntryAlloca(Function* pFunc, Type* pType) in CreateEntryAlloca() argument 1427 Value* pAlloca = ALLOCA(pType); in CreateEntryAlloca() 1432 Value* Builder::CreateEntryAlloca(Function* pFunc, Type* pType, Value* pArraySize) in CreateEntryAlloca() argument 1437 Value* pAlloca = ALLOCA(pType, pArraySize); in CreateEntryAlloca() 1711 uint32_t Builder::GetTypeSize(Type* pType) in GetTypeSize() argument [all …]
|
D | JitManager.h | 189 llvm::DIType* GetDebugStructType(llvm::Type* pType) in GetDebugStructType() 191 llvm::StructType* pStructTy = llvm::cast<llvm::StructType>(pType); in GetDebugStructType() 199 …llvm::DIType* CreateDebugStructType(llvm::StructType* pType, const std::string& name, llvm::DIFile…
|
D | JitManager.cpp | 196 DIType* JitManager::CreateDebugStructType(StructType* pType, const std::string& name, DIFile* pFile… in CreateDebugStructType() argument 202 uint32_t size = DL.getTypeAllocSizeInBits(pType); in CreateDebugStructType() 203 uint32_t alignment = DL.getABITypeAlignment(pType); in CreateDebugStructType() 210 mDebugStructMap[pType] = pDIStructTy; in CreateDebugStructType() 213 for (auto& elem : pType->elements()) in CreateDebugStructType() 219 uint32_t offset = DL.getStructLayout(pType)->getElementOffsetInBits(idx); in CreateDebugStructType()
|
D | builder_misc.h | 199 Value* CreateEntryAlloca(Function* pFunc, Type* pType); 200 Value* CreateEntryAlloca(Function* pFunc, Type* pType, Value* pArraySize); 207 uint32_t GetTypeSize(Type* pType);
|
/external/parameter-framework/upstream/parameter/ |
D | SelectionCriteria.cpp | 54 const std::string &strName, const CSelectionCriterionType *pType, core::log::Logger &logger) in createSelectionCriterion() argument 56 return getSelectionCriteriaDefinition()->createSelectionCriterion(strName, pType, logger); in createSelectionCriterion()
|
D | SelectionCriteriaDefinition.cpp | 40 const std::string &strName, const CSelectionCriterionType *pType, core::log::Logger &logger) in createSelectionCriterion() argument 42 auto pSelectionCriterion = new CSelectionCriterion(strName, pType, logger); in createSelectionCriterion()
|
D | SelectionCriterion.cpp | 40 const CSelectionCriterionType *pType, in CSelectionCriterion() argument 42 : base(strName), _pType(pType), _logger(logger) in CSelectionCriterion()
|
D | SelectionCriteriaDefinition.h | 43 const CSelectionCriterionType *pType,
|
D | SelectionCriteria.h | 58 const CSelectionCriterionType *pType,
|
D | SelectionCriterion.h | 45 CSelectionCriterion(const std::string &strName, const CSelectionCriterionType *pType,
|
/external/swiftshader/src/OpenGL/compiler/ |
D | ParseHelper.cpp | 631 bool TParseContext::boolErrorCheck(const TSourceLoc &line, const TPublicType& pType) in boolErrorCheck() argument 633 if (pType.type != EbtBool || pType.array || (pType.primarySize > 1) || (pType.secondarySize > 1)) { in boolErrorCheck() 641 bool TParseContext::samplerErrorCheck(const TSourceLoc &line, const TPublicType& pType, const char*… in samplerErrorCheck() argument 643 if (pType.type == EbtStruct) { in samplerErrorCheck() 644 if (containsSampler(*pType.userDef)) { in samplerErrorCheck() 645 error(line, reason, getBasicString(pType.type), "(structure contains a sampler)"); in samplerErrorCheck() 651 } else if (IsSampler(pType.type)) { in samplerErrorCheck() 652 error(line, reason, getBasicString(pType.type)); in samplerErrorCheck() 660 bool TParseContext::structQualifierErrorCheck(const TSourceLoc &line, const TPublicType& pType) in structQualifierErrorCheck() argument 662 switch(pType.qualifier) in structQualifierErrorCheck() [all …]
|
D | ParseHelper.h | 134 bool samplerErrorCheck(const TSourceLoc &line, const TPublicType& pType, const char* reason); 135 bool locationDeclaratorListCheck(const TSourceLoc &line, const TPublicType &pType); 136 bool structQualifierErrorCheck(const TSourceLoc &line, const TPublicType& pType); 157 …ool executeInitializer(const TSourceLoc &line, const TString &identifier, const TPublicType &pType,
|
/external/deqp-deps/glslang/glslang/MachineIndependent/ |
D | reflection.h | 58 …TObjectReflection(const TString& pName, const TType& pType, int pOffset, int pGLDefineType, int pS… in TObjectReflection() argument 60 …, size(pSize), index(pIndex), counterIndex(-1), stages(EShLanguageMask(0)), type(pType.clone()) { } in TObjectReflection()
|
D | ParseHelper.h | 357 bool structQualifierErrorCheck(const TSourceLoc&, const TPublicType& pType);
|
/external/mdnsresponder/mDNSWindows/DLL.NET/ |
D | dnssd_NET.cpp | 698 PString * pType = new PString(regtype); in Register() local 712 …int err = DNSServiceRegister(&sdRef->m_impl->m_ref, flags, interfaceIndex, pName->c_str(), pType->… in Register() 845 PString * pType = new PString(regtype); in Browse() local 848 …int err = DNSServiceBrowse(&sdRef->m_impl->m_ref, flags, interfaceIndex, pType->c_str(), pDomain->… in Browse() 881 PString * pType = new PString(regtype); in Resolve() local 884 …int err = DNSServiceResolve(&sdRef->m_impl->m_ref, flags, interfaceIndex, pName->c_str(), pType->c… in Resolve()
|
/external/pdfium/fpdfsdk/ |
D | fpdfppo.cpp | 34 CPDF_Object* pType = pDict->GetObjectFor("Type")->GetDirect(); in PageDictGetInheritableTag() local 35 if (!ToName(pType)) in PageDictGetInheritableTag() 37 if (pType->GetString().Compare("Page")) in PageDictGetInheritableTag()
|
/external/icu/icu4c/source/common/ |
D | uloc_tag.cpp | 1634 const char *pType = NULL; /* LDML type */ in _appendLDMLExtensionAsKeywords() local 1685 pType = uloc_toLegacyType(pKey, bcpTypeBuf); in _appendLDMLExtensionAsKeywords() 1686 if (pType == NULL) { in _appendLDMLExtensionAsKeywords() 1690 if (pType == bcpTypeBuf) { in _appendLDMLExtensionAsKeywords() 1699 pType = buf + bufIdx; in _appendLDMLExtensionAsKeywords() 1710 pType = LOCALE_TYPE_YES; in _appendLDMLExtensionAsKeywords() 1715 … if (!variantExists && !uprv_strcmp(pKey, POSIX_KEY) && !uprv_strcmp(pType, POSIX_VALUE) ) { in _appendLDMLExtensionAsKeywords() 1726 kwd->value = pType; in _appendLDMLExtensionAsKeywords()
|
/external/mesa3d/src/amd/addrlib/r800/ |
D | ciaddrlib.h | 84 AddrTileMode* pMode = 0, AddrTileType* pType = 0) const;
|
D | ciaddrlib.cpp | 598 AddrTileType* pType ///< [out] Tile type in HwlSetupTileCfg() 671 if (pType != NULL) in HwlSetupTileCfg() 673 *pType = pCfgTable->type; in HwlSetupTileCfg()
|
D | siaddrlib.h | 148 ADDR_TILEINFO* pInfo, AddrTileMode* pMode = 0, AddrTileType* pType = 0) const;
|
D | siaddrlib.cpp | 2965 AddrTileType* pType ///< [out] Tile type in HwlSetupTileCfg() 2980 if (pType) in HwlSetupTileCfg() 2982 *pType = ADDR_DISPLAYABLE; in HwlSetupTileCfg() 3020 if (pType) in HwlSetupTileCfg() 3022 *pType = pCfgTable->type; in HwlSetupTileCfg()
|
/external/tcpdump/ |
D | print-ipx.c | 52 uint8_t pType; /* Packet Type (i.e. level 2 protocol) */ member
|
/external/deqp-deps/glslang/hlsl/ |
D | hlslParseHelper.h | 130 bool structQualifierErrorCheck(const TSourceLoc&, const TPublicType& pType);
|