HomeSort by relevance Sort by last modified time
    Searched refs:PtrVal (Results 1 - 14 of 14) sorted by null

  /external/llvm/include/llvm/ADT/
PointerIntPair.h 67 PointerIntPair(PointerTy PtrVal, IntType IntVal) {
68 setPointerAndInt(PtrVal, IntVal);
70 explicit PointerIntPair(PointerTy PtrVal) {
71 initWithPointer(PtrVal);
83 void setPointer(PointerTy PtrVal) {
85 = reinterpret_cast<intptr_t>(PtrTraits::getAsVoidPointer(PtrVal));
101 void initWithPointer(PointerTy PtrVal) {
103 = reinterpret_cast<intptr_t>(PtrTraits::getAsVoidPointer(PtrVal));
109 void setPointerAndInt(PointerTy PtrVal, IntType IntVal) {
111 = reinterpret_cast<intptr_t>(PtrTraits::getAsVoidPointer(PtrVal));
    [all...]
DenseMapInfo.h 43 static unsigned getHashValue(const T *PtrVal) {
44 return (unsigned((uintptr_t)PtrVal) >> 4) ^
45 (unsigned((uintptr_t)PtrVal) >> 9);
ImmutableList.h 214 uintptr_t PtrVal = reinterpret_cast<uintptr_t>(X.getInternalPointer());
215 return (unsigned((uintptr_t)PtrVal) >> 4) ^
216 (unsigned((uintptr_t)PtrVal) >> 9);
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/radeon/
R600KernelParameters.cpp 45 Param() : Val(NULL), PtrVal(NULL), OffsetInDW(0), SizeInDW(0),
49 Value* PtrVal;
239 if (I->PtrVal) {
240 Propagate(I->PtrVal, I->Val->getName(), I->IsIndirect);
345 P.PtrVal = ParamPtr;
  /external/mesa3d/src/gallium/drivers/radeon/
R600KernelParameters.cpp 45 Param() : Val(NULL), PtrVal(NULL), OffsetInDW(0), SizeInDW(0),
49 Value* PtrVal;
239 if (I->PtrVal) {
240 Propagate(I->PtrVal, I->Val->getName(), I->IsIndirect);
345 P.PtrVal = ParamPtr;
  /external/llvm/lib/Analysis/
AliasSetTracker.cpp 483 void AliasSetTracker::deleteValue(Value *PtrVal) {
485 AA.deleteValue(PtrVal);
489 if (Instruction *Inst = dyn_cast<Instruction>(PtrVal)) {
501 PointerMapType::iterator I = PointerMap.find_as(PtrVal);
  /external/llvm/include/llvm/Analysis/
AliasSetTracker.h 381 void deleteValue(Value *PtrVal);
  /external/llvm/lib/Transforms/Scalar/
SCCP.cpp     [all...]
GVN.cpp     [all...]
  /external/clang/lib/CodeGen/
MicrosoftCXXABI.cpp 390 llvm::Constant *getImageRelativeConstant(llvm::Constant *PtrVal) {
392 return PtrVal;
397 llvm::ConstantExpr::getPtrToInt(PtrVal, CGM.IntPtrTy);
    [all...]
  /external/llvm/include/llvm/CodeGen/
SelectionDAG.h 741 SDValue Ptr, SDValue Val, const Value *PtrVal,
    [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
SelectionDAGBuilder.cpp     [all...]
SelectionDAG.cpp     [all...]
  /external/llvm/lib/Transforms/Vectorize/
LoopVectorize.cpp     [all...]

Completed in 215 milliseconds