HomeSort by relevance Sort by last modified time
    Searched defs:OC (Results 1 - 25 of 38) sorted by null

1 2

  /external/llvm/include/llvm/Transforms/Utils/
Local.h 226 Constant *OC = ConstantExpr::getIntegerCast(OpC, IntPtrTy, true /*SExt*/);
227 Scale = ConstantExpr::getMul(OC, Scale, isInBounds/*NUW*/);
  /prebuilts/clang/host/darwin-x86/clang-4393122/include/llvm/Transforms/Utils/
Local.h 239 Constant *OC = ConstantExpr::getIntegerCast(OpC, IntPtrTy, true /*SExt*/);
240 Scale = ConstantExpr::getMul(OC, Scale, isInBounds/*NUW*/);
  /prebuilts/clang/host/darwin-x86/clang-4479392/include/llvm/Transforms/Utils/
Local.h 239 Constant *OC = ConstantExpr::getIntegerCast(OpC, IntPtrTy, true /*SExt*/);
240 Scale = ConstantExpr::getMul(OC, Scale, isInBounds/*NUW*/);
  /prebuilts/clang/host/linux-x86/clang-4393122/include/llvm/Transforms/Utils/
Local.h 239 Constant *OC = ConstantExpr::getIntegerCast(OpC, IntPtrTy, true /*SExt*/);
240 Scale = ConstantExpr::getMul(OC, Scale, isInBounds/*NUW*/);
  /prebuilts/clang/host/linux-x86/clang-4479392/include/llvm/Transforms/Utils/
Local.h 239 Constant *OC = ConstantExpr::getIntegerCast(OpC, IntPtrTy, true /*SExt*/);
240 Scale = ConstantExpr::getMul(OC, Scale, isInBounds/*NUW*/);
  /external/spirv-llvm/lib/SPIRV/libSPIRV/
SPIRVInstruction.cpp 138 isSpecConstantOpAllowedOp(Op OC) {
202 return Allow.count(OC);
207 auto OC = Inst->getOpCode();
208 assert (isSpecConstantOpAllowedOp(OC) &&
211 Ops.insert(Ops.begin(), OC);
222 auto OC = static_cast<Op>(Ops[0]);
223 assert (isSpecConstantOpAllowedOp(OC) &&
226 return SPIRVInstTemplateBase::create(OC, Inst->getType(),
SPIRVOpCode.h 134 unsigned OC = OpCode;
135 return (OpGroupWaitEvents <= OC &&
136 OC <= OpGroupSMax) ||
137 (OpGroupReserveReadPipePackets <= OC &&
138 OC <= OpGroupCommitWritePipe);
142 unsigned OC = OpCode;
143 return OpGroupIAdd <= OC && OC <= OpGroupSMax;
147 unsigned OC = OpCode;
148 return OpGroupAll <= OC && OC <= OpGroupSMax
    [all...]
SPIRVDecorate.h 55 SPIRVDecorateGeneric(Op OC, SPIRVWord WC, Decoration TheDec,
58 SPIRVDecorateGeneric(Op OC, SPIRVWord WC, Decoration TheDec,
61 SPIRVDecorateGeneric(Op OC);
129 static const Op OC = OpDecorate;
133 :SPIRVDecorateGeneric(OC, 3, TheDec, TheTarget){}
136 :SPIRVDecorateGeneric(OC, 4, TheDec, TheTarget, V){}
138 SPIRVDecorate():SPIRVDecorateGeneric(OC){}
199 static const Op OC = OpMemberDecorate;
204 :SPIRVDecorateGeneric(OC, 4, TheDec, TheTarget),
210 :SPIRVDecorateGeneric(OC, 5, TheDec, TheTarget, V)
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/Transforms/Utils/
Local.h 239 Constant *OC = ConstantExpr::getIntegerCast(OpC, IntPtrTy, true /*SExt*/);
240 Scale = ConstantExpr::getMul(OC, Scale, isInBounds/*NUW*/);
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/llvm/include/llvm/Transforms/Utils/
Local.h 239 Constant *OC = ConstantExpr::getIntegerCast(OpC, IntPtrTy, true /*SExt*/);
240 Scale = ConstantExpr::getMul(OC, Scale, isInBounds/*NUW*/);
  /device/linaro/bootloader/arm-trusted-firmware/plat/rockchip/rk3399/drivers/m0/
Makefile 45 OC := ${M0_CROSS_COMPILE}objcopy
107 $(Q)$(OC) -O binary $< $@
  /external/spirv-llvm/lib/SPIRV/
OCL21ToSPIRV.cpp 73 void visitCallConvert(CallInst *CI, StringRef MangledName, Op OC);
90 void transBuiltin(CallInst *CI, Op OC);
163 Op OC = OpNop;
164 if (!OpCodeNameMap::rfind(Ref.str(), &OC))
166 DEBUG(dbgs() << "maps to opcode " << OC << '\n');
168 if (isCvtOpCode(OC)) {
169 visitCallConvert(&CI, MangledName, OC);
172 if (OC == OpDecorate) {
176 transBuiltin(&CI, OC);
180 StringRef MangledName, Op OC) {
    [all...]
SPIRVRegularizeLLVM.cpp 80 /// Assuming F is a SPIR-V builtin function with op code \param OC.
81 void lowerFuncPtr(Function *F, Op OC);
173 void SPIRVRegularizeLLVM::lowerFuncPtr(Function* F, Op OC) {
175 auto Name = decorateSPIRVFunction(getName(OC));
199 auto OC = getSPIRVFuncOC(F->getName());
200 assert(OC != OpNop && "Invalid function pointer usage");
201 Work.push_back(std::make_pair(F, OC));
OCLUtil.cpp 163 Op OC = OpNop;
166 if (OCLSPIRVBuiltinMap::find(Info.UniqName, &OC))
167 Entry = SPIRVEntry::create(OC);
SPIRVToOCL20.cpp 90 void visitCallSPIRVAtomicBuiltin(CallInst *CI, Op OC);
107 void visitCallSPIRVGroupBuiltin(CallInst *CI, Op OC);
115 void visitCallSPIRVPipeBuiltin(CallInst *CI, Op OC);
119 void visitCallSPIRVBuiltin(CallInst *CI, Op OC);
167 Op OC = OpNop;
169 (OC = getSPIRVFuncOC(DemangledName)) == OpNop)
172 << "OpCode = " << OC << '\n');
174 if (OC == OpImageQuerySize || OC == OpImageQuerySizeLod) {
178 if (OC == OpMemoryBarrier)
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4579689/include/llvm/Transforms/Utils/
Local.h 261 Constant *OC = ConstantExpr::getIntegerCast(OpC, IntPtrTy, true /*SExt*/);
262 Scale = ConstantExpr::getMul(OC, Scale, isInBounds/*NUW*/);
  /prebuilts/clang/host/darwin-x86/clang-4630689/include/llvm/Transforms/Utils/
Local.h 261 Constant *OC = ConstantExpr::getIntegerCast(OpC, IntPtrTy, true /*SExt*/);
262 Scale = ConstantExpr::getMul(OC, Scale, isInBounds/*NUW*/);
  /prebuilts/clang/host/darwin-x86/clang-4639204/include/llvm/Transforms/Utils/
Local.h 261 Constant *OC = ConstantExpr::getIntegerCast(OpC, IntPtrTy, true /*SExt*/);
262 Scale = ConstantExpr::getMul(OC, Scale, isInBounds/*NUW*/);
  /prebuilts/clang/host/darwin-x86/clang-4691093/include/llvm/Transforms/Utils/
Local.h 261 Constant *OC = ConstantExpr::getIntegerCast(OpC, IntPtrTy, true /*SExt*/);
262 Scale = ConstantExpr::getMul(OC, Scale, isInBounds/*NUW*/);
  /prebuilts/clang/host/linux-x86/clang-4579689/include/llvm/Transforms/Utils/
Local.h 261 Constant *OC = ConstantExpr::getIntegerCast(OpC, IntPtrTy, true /*SExt*/);
262 Scale = ConstantExpr::getMul(OC, Scale, isInBounds/*NUW*/);
  /prebuilts/clang/host/linux-x86/clang-4630689/include/llvm/Transforms/Utils/
Local.h 261 Constant *OC = ConstantExpr::getIntegerCast(OpC, IntPtrTy, true /*SExt*/);
262 Scale = ConstantExpr::getMul(OC, Scale, isInBounds/*NUW*/);
  /prebuilts/clang/host/linux-x86/clang-4639204/include/llvm/Transforms/Utils/
Local.h 261 Constant *OC = ConstantExpr::getIntegerCast(OpC, IntPtrTy, true /*SExt*/);
262 Scale = ConstantExpr::getMul(OC, Scale, isInBounds/*NUW*/);
  /prebuilts/clang/host/linux-x86/clang-4691093/include/llvm/Transforms/Utils/
Local.h 261 Constant *OC = ConstantExpr::getIntegerCast(OpC, IntPtrTy, true /*SExt*/);
262 Scale = ConstantExpr::getMul(OC, Scale, isInBounds/*NUW*/);
  /device/linaro/bootloader/arm-trusted-firmware/
Makefile 124 OC := ${CROSS_COMPILE}objcopy
  /external/clang/test/Layout/
ms-x86-pack-and-align.cpp 583 struct OC : virtual OA, virtual OB {};
585 struct OD : OC {};
597 // CHECK-NEXT: 0 | struct OC
598 // CHECK-NEXT: 0 | (OC vbtable pointer)
605 // CHECK-NEXT: 0 | struct OC (base)
606 // CHECK-NEXT: 0 | (OC vbtable pointer)
620 // CHECK-X64-NEXT: 0 | struct OC
621 // CHECK-X64-NEXT: 0 | (OC vbtable pointer)
628 // CHECK-X64-NEXT: 0 | struct OC (base)
629 // CHECK-X64-NEXT: 0 | (OC vbtable pointer
    [all...]

Completed in 1315 milliseconds

1 2