HomeSort by relevance Sort by last modified time
    Searched refs:PT (Results 51 - 75 of 154) sorted by null

1 23 4 5 6 7

  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/sh/sh64/
ptext64-32-1.d 4 #name: PT, PTA, PTB expansion for external symbols, 64-bit ABI with -expand-pt32.
ptext64-1.d 4 #name: PT, PTA, PTB expansion for external symbols, 64-bit ABI.
  /external/clang/lib/StaticAnalyzer/Checkers/
NSErrorChecker.cpp 287 const ObjCObjectPointerType* PT =
290 if (!PT)
293 const ObjCInterfaceDecl *ID = PT->getInterfaceDecl();
MallocSizeofChecker.cpp 163 static bool compatibleWithArrayType(ASTContext &C, QualType PT, QualType T) {
167 if (typesCompatible(C, PT, AT->getElementType()))
  /external/llvm/tools/llvm-pdbdump/
VariableDumper.cpp 161 FunctionDumper::PointerType PT = FunctionDumper::PointerType::Pointer;
163 PT = FunctionDumper::PointerType::Reference;
165 Dumper.start(*FunctionSig, NameStr.c_str(), PT);
  /external/webrtc/webrtc/modules/audio_coding/neteq/test/
RTPencode.cc 86 int* PT,
840 int* PT,
850 *PT = NETEQ_CODEC_PCMU_PT;
854 *PT = NETEQ_CODEC_PCMA_PT;
858 *PT = NETEQ_CODEC_PCM16B_PT;
862 *PT = NETEQ_CODEC_PCM16B_WB_PT;
866 *PT = NETEQ_CODEC_PCM16B_SWB32KHZ_PT;
870 *PT = NETEQ_CODEC_PCM16B_SWB48KHZ_PT;
874 *PT = NETEQ_CODEC_G722_PT;
880 *PT = NETEQ_CODEC_ILBC_PT
    [all...]
  /external/clang/tools/libclang/
CXType.cpp 779 static long long validateFieldParentType(CXCursor PC, CXType PT){
793 QualType RT = GetQualType(PT);
805 long long clang_Type_getOffsetOf(CXType PT, const char *S) {
806 // check that PT is not incomplete/dependent
807 CXCursor PC = clang_getTypeDeclaration(PT);
808 long long Error = validateFieldParentType(PC,PT);
814 ASTContext &Ctx = cxtu::getASTUnit(GetTU(PT))->getASTContext();
840 CXType PT = clang_getCursorType(PC);
841 long long Error = validateFieldParentType(PC,PT);
944 unsigned clang_Type_visitFields(CXType PT,
    [all...]
  /external/llvm/include/llvm/IR/
Value.h 733 typedef Value* PT;
735 static inline void *getAsVoidPointer(PT P) { return P; }
736 static inline PT getFromVoidPointer(void *P) {
737 return static_cast<PT>(P);
  /libcore/luni/src/test/java/libcore/java/util/
EnumSetTest.java 105 HF, TA, W, RE, OS, IR, PT, AU, HG, TL, PB, BI, PO, AT, RN, FR, RA, AC, TH, PA, U, NP, PU,
  /external/clang/lib/Sema/
SemaExceptionSpec.cpp 85 if (const PointerType *PT = T->getAs<PointerType>()) {
86 PointeeT = PT->getPointeeType();
126 if (const PointerType *PT = T->getAs<PointerType>())
127 T = PT->getPointeeType();
128 else if (const MemberPointerType *PT = T->getAs<MemberPointerType>())
129 T = PT->getPointeeType();
    [all...]
  /external/llvm/lib/ExecutionEngine/Orc/
IndirectionUtils.cpp 34 GlobalVariable* createImplPointer(PointerType &PT, Module &M,
36 auto IP = new GlobalVariable(M, &PT, false, GlobalValue::ExternalLinkage,
  /frameworks/av/media/libstagefright/rtsp/
ARTPSource.cpp 53 unsigned long PT;
56 sessionDesc->getFormatType(index, &PT, &desc, &params);
APacketSource.cpp 412 unsigned long PT;
415 sessionDesc->getFormatType(index, &PT, &desc, &params);
429 if (!sessionDesc->getDimensions(index, PT, &width, &height)) {
461 if (!sessionDesc->getDimensions(index, PT, &width, &height)) {
514 if (!sessionDesc->getDimensions(index, PT, &width, &height)) {
ARTPWriter.cpp 35 #define PT 97
587 data[1] = (1 << 7) | PT; // M-bit
626 data[1] = (lastPacket ? (1 << 7) : 0x00) | PT; // M-bit
697 data[1] = (lastPacket ? 0x80 : 0x00) | PT; // M-bit
779 data[1] = PT;
  /external/llvm/lib/IR/
IRBuilder.cpp 47 PointerType *PT = cast<PointerType>(Ptr->getType());
48 if (PT->getElementType()->isIntegerTy(8))
52 PT = getInt8PtrTy(PT->getAddressSpace());
53 BitCastInst *BCI = new BitCastInst(Ptr, PT, "");
  /external/mesa3d/src/gallium/drivers/radeon/
AMDILPeepholeOptimizer.cpp 123 size_t getTypeSize(PointerType * const PT, bool dereferencePtr = false);
216 const PointerType *PT = dyn_cast<PointerType>(arg->getType());
217 if (!PT) {
220 Type *DereferencedType = PT->getElementType();
    [all...]
R600KernelParameters.cpp 405 PointerType *PT = dyn_cast<PointerType>(T);
408 if (PT) {
409 ST = dyn_cast<StructType>(PT->getElementType());
  /external/clang/lib/Analysis/
BodyFarm.cpp 305 const PointerType *PT = TheValueTy->getAs<PointerType>();
306 if (!PT)
308 QualType PointeeTy = PT->getPointeeType();
  /external/llvm/lib/CodeGen/
GlobalMerge.cpp 532 PointerType *PT = dyn_cast<PointerType>(GV.getType());
533 assert(PT && "Global variable is not a pointer!");
535 unsigned AddressSpace = PT->getAddressSpace();
AtomicExpandPass.cpp 219 Type *PT = PointerType::get(NewTy,
221 Value *NewAddr = Builder.CreateBitCast(Addr, PT);
301 Type *PT = PointerType::get(NewTy,
303 Value *NewAddr = Builder.CreateBitCast(Addr, PT);
  /external/llvm/lib/Analysis/
MemoryBuiltins.cpp 277 PointerType *PT = getMallocType(CI, TLI);
278 return PT ? PT->getElementType() : nullptr;
465 PointerType *PT = cast<PointerType>(A.getType());
466 APInt Size(IntTyBits, DL.getTypeAllocSize(PT->getElementType()));
  /external/clang/lib/StaticAnalyzer/Core/
MemRegion.cpp 304 const PointerType *PT,
307 ID.AddPointer(PT);
    [all...]
  /external/clang/lib/ARCMigrate/
TransGCAttrs.cpp 74 } else if (PointerTypeLoc PT = TL.getAs<PointerTypeLoc>()) {
75 TL = PT.getPointeeLoc();
  /frameworks/compile/slang/
slang_rs_export_type.cpp 360 const clang::PointerType *PT = static_cast<const clang::PointerType*>(CTI);
361 const clang::Type *PointeeType = GetPointeeType(PT);
624 const clang::PointerType *PT = static_cast<const clang::PointerType*>(CTI);
625 const clang::Type *PointeeType = GetPointeeType(PT);
794 const clang::Type *PT = GetPointeeType(P);
796 if (NormalizeType(PT, PointeeName, nullptr, nullptr,
    [all...]
  /external/libpng/contrib/libtests/
pngvalid.c 4480 png_time pt; local
    [all...]

Completed in 972 milliseconds

1 23 4 5 6 7