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

  /external/llvm/include/llvm/ADT/
PointerIntPair.h 60 PointerIntPair(PointerTy PtrVal, IntType IntVal) {
63 setPointerAndInt(PtrVal, IntVal);
65 explicit PointerIntPair(PointerTy PtrVal) {
66 initWithPointer(PtrVal);
78 void setPointer(PointerTy PtrVal) {
80 = reinterpret_cast<intptr_t>(PtrTraits::getAsVoidPointer(PtrVal));
96 void initWithPointer(PointerTy PtrVal) {
98 = reinterpret_cast<intptr_t>(PtrTraits::getAsVoidPointer(PtrVal));
104 void setPointerAndInt(PointerTy PtrVal, IntType IntVal) {
106 = 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 486 void AliasSetTracker::deleteValue(Value *PtrVal) {
488 AA.deleteValue(PtrVal);
492 if (Instruction *Inst = dyn_cast<Instruction>(PtrVal)) {
504 PointerMapType::iterator I = PointerMap.find_as(PtrVal);
  /external/llvm/include/llvm/Analysis/
AliasSetTracker.h 380 void deleteValue(Value *PtrVal);
  /external/llvm/lib/Transforms/Scalar/
SCCP.cpp     [all...]
GVN.cpp     [all...]
  /external/llvm/include/llvm/CodeGen/
SelectionDAG.h 660 SDValue Ptr, SDValue Val, const Value* PtrVal,
671 SDValue Chain, SDValue Ptr, const Value* PtrVal,
    [all...]
  /external/llvm/lib/Transforms/Vectorize/
LoopVectorize.cpp     [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
SelectionDAGBuilder.cpp     [all...]
SelectionDAG.cpp     [all...]

Completed in 278 milliseconds