HomeSort by relevance Sort by last modified time
    Searched refs:IntToPtr (Results 1 - 25 of 61) sorted by null

1 2 3

  /external/ceres-solver/internal/ceres/
problem_test.cc 208 static double *IntToPtr(int i) {
224 problem.AddParameterBlock(IntToPtr(5), 5); // x
225 problem.AddParameterBlock(IntToPtr(13), 3); // y
227 EXPECT_DEATH_IF_SUPPORTED(problem.AddParameterBlock(IntToPtr( 4), 2),
229 EXPECT_DEATH_IF_SUPPORTED(problem.AddParameterBlock(IntToPtr( 4), 3),
231 EXPECT_DEATH_IF_SUPPORTED(problem.AddParameterBlock(IntToPtr( 4), 9),
233 EXPECT_DEATH_IF_SUPPORTED(problem.AddParameterBlock(IntToPtr( 8), 3),
235 EXPECT_DEATH_IF_SUPPORTED(problem.AddParameterBlock(IntToPtr(12), 2),
237 EXPECT_DEATH_IF_SUPPORTED(problem.AddParameterBlock(IntToPtr(14), 3),
241 problem.AddParameterBlock(IntToPtr( 2), 3)
    [all...]
  /external/llvm/unittests/IR/
InstructionsTest.cpp 416 CastInst::IntToPtr,
424 CastInst::IntToPtr,
432 CastInst::IntToPtr,
438 EXPECT_EQ(CastInst::isEliminableCastPair(CastInst::IntToPtr,
445 EXPECT_EQ(CastInst::isEliminableCastPair(CastInst::IntToPtr,
463 // Cannot simplify inttoptr, addrspacecast
464 EXPECT_EQ(CastInst::isEliminableCastPair(CastInst::IntToPtr,
478 EXPECT_EQ(CastInst::isEliminableCastPair(CastInst::IntToPtr,
482 CastInst::IntToPtr);
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
basetsd.h 78 static __inline void *IntToPtr(const int i) { return((void *)(INT_PTR)i); }
115 #define IntToPtr(i) ((VOID *)(INT_PTR)((int)i))
  /external/llvm/lib/Target/XCore/
XCoreLowerThreadLocal.cpp 117 case Instruction::IntToPtr:
  /external/llvm/lib/Transforms/ObjCARC/
ObjCARCUtil.cpp 224 case Instruction::IntToPtr: case Instruction::FCmp:
  /external/llvm/unittests/Linker/
LinkModulesTest.cpp 50 Constant *OnePtr = ConstantExpr::getCast(Instruction::IntToPtr, One,
103 // i8* inttoptr (i32 1 to i8*)]
  /external/llvm/lib/Analysis/
ConstantFolding.cpp 382 if (CE->getOpcode() == Instruction::IntToPtr &&
497 Cast = Instruction::IntToPtr;
745 // "inttoptr (sub (ptrtoint Ptr), V)"
795 if (CE->getOpcode() == Instruction::IntToPtr) {
    [all...]
CostModel.cpp 449 case Instruction::IntToPtr:
MemoryBuiltins.cpp 433 if (CE->getOpcode() == Instruction::IntToPtr)
659 cast<ConstantExpr>(V)->getOpcode() == Instruction::IntToPtr) ||
ScalarEvolutionExpander.cpp 92 Op == Instruction::IntToPtr) &&
106 // Short-circuit unnecessary inttoptr<->ptrtoint casts.
107 if ((Op == Instruction::PtrToInt || Op == Instruction::IntToPtr) &&
111 CI->getOpcode() == Instruction::IntToPtr) &&
117 CE->getOpcode() == Instruction::IntToPtr) &&
365 /// a GEP instead of using ptrtoint+arithmetic+inttoptr. This helps
367 /// for getelementptr vs. inttoptr in
372 /// ScalarEvolution not recognizing inttoptr and ptrtoint operators, as
514 // better than ptrtoint+arithmetic+inttoptr at least.
    [all...]
TargetTransformInfo.cpp 285 case Instruction::IntToPtr: {
289 // An inttoptr cast is free so long as the input is a legal integer type
  /external/llvm/include/llvm/Analysis/
TargetFolder.h 193 return CreateCast(Instruction::IntToPtr, C, DestTy);
  /external/llvm/include/llvm/IR/
ConstantFolder.h 174 return CreateCast(Instruction::IntToPtr, C, DestTy);
NoFolder.h 233 return CreateCast(Instruction::IntToPtr, C, DestTy);
  /external/lldb/source/Expression/
IRInterpreter.cpp 240 case Instruction::IntToPtr:
507 case Instruction::IntToPtr:
    [all...]
  /external/llvm/lib/IR/
Instruction.cpp 239 case IntToPtr: return "inttoptr";
Instructions.cpp     [all...]
AutoUpgrade.cpp 540 return CastInst::Create(Instruction::IntToPtr, Temp, DestTy);
Constants.cpp     [all...]
  /external/chromium_org/third_party/webrtc/modules/audio_device/win/
audio_device_wave_win.cc     [all...]
  /external/llvm/lib/Target/AArch64/
AArch64TargetTransformInfo.cpp 227 case Instruction::IntToPtr:
  /external/llvm/lib/Target/CppBackend/
CPPBackend.cpp 854 case Instruction::IntToPtr: Out << "Instruction::IntToPtr"; break;
    [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
FastISel.cpp 139 I->getOpcode() == Instruction::IntToPtr) &&
    [all...]
  /external/llvm/lib/AsmParser/
LLLexer.cpp 719 INSTKEYWORD(inttoptr, IntToPtr);
  /external/llvm/lib/Transforms/InstCombine/
InstCombineLoadStoreAlloca.cpp 549 opcode = Instruction::IntToPtr;
    [all...]

Completed in 1309 milliseconds

1 2 3