HomeSort by relevance Sort by last modified time
    Searched defs:Ptr (Results 51 - 75 of 164) sorted by null

1 23 4 5 6 7

  /external/llvm/lib/Target/R600/
SITypeRewriter.cpp 82 Value *Ptr = I.getPointerOperand();
83 Type *PtrTy = Ptr->getType();
87 Value *BitCast = Builder.CreateBitCast(Ptr,
AMDGPUPromoteAlloca.cpp 110 static Value* calculateVectorIndex(Value *Ptr,
112 if (isa<AllocaInst>(Ptr))
113 return Constant::getNullValue(Type::getInt32Ty(Ptr->getContext()));
115 GetElementPtrInst *GEP = cast<GetElementPtrInst>(Ptr);
204 Value *Ptr = Inst->getOperand(0);
205 Value *Index = calculateVectorIndex(Ptr, GEPVectorIdx);
214 Value *Ptr = Inst->getOperand(1);
215 Value *Index = calculateVectorIndex(Ptr, GEPVectorIdx);
  /external/llvm/lib/Transforms/Scalar/
LoadCombine.cpp 199 Value *Ptr = Builder->CreateConstGEP1_64(
205 Ptr, PointerType::get(IntegerType::get(Ptr->getContext(), TotalSize),
206 Ptr->getType()->getPointerAddressSpace())),
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vpx_scale/win32/
scaleopt.c 102 movq mm0, QWORD PTR [esi];
128 movd DWORD PTR [edi-4], mm1
156 movd mm0, DWORD ptr [esi] // src[0];
157 movd mm1, DWORD ptr [esi+ecx] // src[1];
159 movd mm2, DWORD ptr [esi+ecx*2]
195 movd DWORD PTR [edi], mm0
196 movd DWORD PTR [edi+edx], mm1
200 movd DWORD PTR [edi+edx*2], mm3
209 movd DWORD PTR [eax+edx], mm5
250 movq mm0, QWORD PTR [esi]
    [all...]
  /development/ndk/sources/android/ndk_helper/
vecmath.h 905 float* Ptr()
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/radeon/
SIISelLowering.cpp 335 LoadSDNode *Ptr = dyn_cast<LoadSDNode>(Op);
337 assert(Ptr);
339 unsigned AddrSpace = Ptr->getPointerInfo().getAddrSpace();
348 ConstantSDNode *BasePtr = dyn_cast<ConstantSDNode>(Ptr->getBasePtr());
  /external/clang/include/clang/Sema/
Ownership.h 46 void *Ptr;
47 explicit OpaquePtr(void *Ptr) : Ptr(Ptr) {}
52 OpaquePtr() : Ptr(nullptr) {}
75 return Traits::getFromVoidPointer(Ptr);
79 Ptr = Traits::getAsVoidPointer(P);
82 LLVM_EXPLICIT operator bool() const { return Ptr != nullptr; }
84 void *getAsOpaquePtr() const { return Ptr; }
91 void *Ptr;
    [all...]
  /external/clang/lib/AST/
DeclarationName.cpp 330 uintptr_t Ptr = reinterpret_cast<uintptr_t>(&UDirExtra);
331 Ptr |= StoredDeclarationNameExtra;
333 return DeclarationName(Ptr);
  /external/clang/lib/Lex/
LiteralSupport.cpp 919 for (const char *Ptr = DigitsBegin; Ptr != SuffixBegin; ++Ptr)
920 if (!isDigitSeparator(*Ptr))
921 N = N * radix + llvm::hexDigitValue(*Ptr);
930 const char *Ptr = DigitsBegin;
937 while (Ptr < SuffixBegin) {
938 if (isDigitSeparator(*Ptr)) {
939 ++Ptr;
943 unsigned C = llvm::hexDigitValue(*Ptr++)
    [all...]
Preprocessor.cpp 414 const char *Ptr = Buffer.data();
415 unsigned Len = getSpelling(Tok, Ptr, Invalid);
416 return StringRef(Ptr, Len);
  /external/clang/test/CodeGenCXX/
x86_32-arguments.cpp 36 unsigned Ptr;
37 CallSite(unsigned XX) : Ptr(XX) {}
  /external/llvm/include/llvm/Analysis/
AliasAnalysis.h 107 /// Ptr - The address of the start of the location.
108 const Value *Ptr;
121 : Ptr(P), Size(S), TBAATag(N) {}
125 Copy.Ptr = NewPtr;
503 /// specified basic block to modify the value pointed to by Ptr.
513 /// Ptr. The instructions to consider are all of the instructions in the
520 const Value *Ptr, uint64_t Size) {
521 return canInstructionRangeModify(I1, I2, Location(Ptr, Size));
579 return DenseMapInfo<const Value *>::getHashValue(Val.Ptr) ^
585 return LHS.Ptr == RHS.Ptr &
    [all...]
  /external/llvm/include/llvm/Support/
Allocator.h 58 /// \brief Deallocate \a Ptr to \a Size bytes of memory allocated by this
60 void Deallocate(const void *Ptr, size_t Size) {
69 return static_cast<DerivedT *>(this)->Deallocate(Ptr, Size);
84 Deallocate(T *Ptr, size_t Num = 1) {
85 Deallocate(static_cast<const void *>(Ptr), Num * sizeof(T));
98 void Deallocate(const void *Ptr, size_t /*Size*/) {
99 free(const_cast<void *>(Ptr));
215 char *Ptr = alignPtr(CurPtr, Alignment);
218 if (Ptr + Size <= End) {
219 CurPtr = Ptr + Size
    [all...]
  /external/llvm/lib/Analysis/IPA/
GlobalsModRef.cpp 325 Value *Ptr = GetUnderlyingObject(SI->getOperand(0));
327 if (!isAllocLikeFn(Ptr, TLI))
333 if (AnalyzeUsesOfPointer(Ptr, ReadersWriters, ReadersWriters, GV))
337 AllocRelatedValues.push_back(Ptr);
484 const Value *UV1 = GetUnderlyingObject(LocA.Ptr);
485 const Value *UV2 = GetUnderlyingObject(LocB.Ptr);
544 dyn_cast<GlobalValue>(GetUnderlyingObject(Loc.Ptr)))
  /external/llvm/lib/Support/
FoldingSet.cpp 52 void FoldingSetNodeID::AddPointer(const void *Ptr) {
57 Bits.append(reinterpret_cast<unsigned *>(&Ptr),
58 reinterpret_cast<unsigned *>(&Ptr+1));
201 intptr_t Ptr = reinterpret_cast<intptr_t>(NextInBucketPtr);
202 assert((Ptr & 1) && "Not a bucket pointer");
203 return reinterpret_cast<void**>(Ptr & ~intptr_t(1));
339 void *Ptr = N->getNextInBucket();
340 if (!Ptr) return false; // Not in folding set.
346 void *NodeNextPtr = Ptr;
350 if (Node *NodeInBucket = GetNextPtr(Ptr)) {
    [all...]
SourceMgr.cpp 36 static LineNoCacheTy *getCache(void *Ptr) {
37 return (LineNoCacheTy*)Ptr;
96 const char *Ptr = BufStart;
104 Ptr = Cache->LastQuery;
110 for (; SMLoc::getFromPointer(Ptr) != Loc; ++Ptr)
111 if (*Ptr == '\n') ++LineNo;
120 Cache.LastQuery = Ptr;
123 size_t NewlineOffs = StringRef(BufStart, Ptr-BufStart).find_last_of("\n\r");
125 return std::make_pair(LineNo, Ptr-BufStart-NewlineOffs)
    [all...]
  /external/llvm/lib/Transforms/IPO/
Inliner.cpp 586 Value *Ptr = InlineInfo.InlinedCalls[i];
587 CallSites.push_back(std::make_pair(CallSite(Ptr), NewHistoryID));
  /external/mesa3d/src/gallium/drivers/radeon/
SIISelLowering.cpp 335 LoadSDNode *Ptr = dyn_cast<LoadSDNode>(Op);
337 assert(Ptr);
339 unsigned AddrSpace = Ptr->getPointerInfo().getAddrSpace();
348 ConstantSDNode *BasePtr = dyn_cast<ConstantSDNode>(Ptr->getBasePtr());
  /frameworks/compile/slang/
slang_rs_backend.cpp 370 llvm::Value *Ptr = NULL;
372 Ptr = IB->CreateInBoundsGEP(HelperFunctionParameter, Idx);
376 Params.push_back(Ptr);
378 llvm::Value *V = IB->CreateLoad(Ptr);
  /hardware/ti/omap3/dspbridge/inc/
std.h 56 *! 22-Nov-1994 mf: Ptr is void * everywhere.
218 typedef void *Ptr; /* pointer to arbitrary type */
220 /* Arg should be size of Ptr */
247 * These macros are used to cast 'Arg' types to 'Int' or 'Ptr'.
249 * size as Int and Ptr in 55x large model.
253 #define ArgToPtr(A) ((Ptr)(A))
256 #define ArgToPtr(A) ((Ptr)(A))
  /hardware/ti/omap3/dspbridge/libbridge/inc/
std.h 56 *! 22-Nov-1994 mf: Ptr is void * everywhere.
220 typedef void *Ptr; /* pointer to arbitrary type */
222 /* Arg should be size of Ptr */
251 * These macros are used to cast 'Arg' types to 'Int' or 'Ptr'.
253 * size as Int and Ptr in 55x large model.
257 #define ArgToPtr(A) ((Ptr)(A))
260 #define ArgToPtr(A) ((Ptr)(A))
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
evntprov.h 68 ULONGLONG Ptr;
74 ULONGLONG Ptr;
180 EventDataDescriptor->Ptr = (ULONGLONG)(ULONG_PTR)DataPtr;
  /external/clang/include/clang/AST/
ExternalASTSource.h 317 mutable uint64_t Ptr;
320 LazyOffsetPtr() : Ptr(0) { }
322 explicit LazyOffsetPtr(T *Ptr) : Ptr(reinterpret_cast<uint64_t>(Ptr)) { }
323 explicit LazyOffsetPtr(uint64_t Offset) : Ptr((Offset << 1) | 0x01) {
326 Ptr = 0;
329 LazyOffsetPtr &operator=(T *Ptr) {
330 this->Ptr = reinterpret_cast<uint64_t>(Ptr);
    [all...]
  /external/clang/lib/Rewrite/Core/
Rewriter.cpp 191 const char *Ptr = SourceMgr->getCharacterData(Range.getBegin());
196 return std::string(Ptr, Ptr+EndOff-StartOff);
  /external/clang/test/SemaCXX/
explicit.cpp 211 struct Ptr {
218 Ptr p;

Completed in 1212 milliseconds

1 23 4 5 6 7