Home
last modified time | relevance | path

Searched refs:isTarget (Results 1 – 21 of 21) sorted by relevance

/external/iptables/iptables/
Diptables-xml.c263 isTarget(char *arg) in isTarget() function
317 while (arg < argc && (argvattr[arg] || !isTarget(argv[arg]))) in do_rule_part()
330 if (i < argc && argv[i][0] == '-' && !isTarget(argv[i]) in do_rule_part()
338 if (part == -1 && !argvattr[arg] && (isTarget(argv[arg]))) { in do_rule_part()
346 } else if (!argvattr[arg] && isTarget(argv[arg]) && in do_rule_part()
374 && (isTarget(argv[arg]) in do_rule_part()
390 && (isTarget(argv[arg + 1]) in do_rule_part()
459 if (isTarget(oldargv[old]) && isTarget(newargv[new])) { in compareRules()
497 if (combine && argc > 2 && !isTarget(argv[2]) && in do_rule()
524 if (argc >= 3 && !isTarget(argv[2])) { in do_rule()
/external/llvm/lib/Target/AMDGPU/
DR600Intrinsics.td15 let TargetPrefix = "R600", isTarget = 1 in {
20 } // End TargetPrefix = "R600", isTarget = 1
22 let TargetPrefix = "r600", isTarget = 1 in {
65 } // End TargetPrefix = "r600", isTarget = 1
DSIIntrinsics.td15 let TargetPrefix = "SI", isTarget = 1 in {
177 } // End TargetPrefix = "SI", isTarget = 1
179 let TargetPrefix = "amdgcn", isTarget = 1 in {
DAMDGPUIntrinsics.td14 let TargetPrefix = "AMDGPU", isTarget = 1 in {
/external/llvm/include/llvm/CodeGen/
DSelectionDAG.h478 bool isTarget = false, bool isOpaque = false);
480 bool isTarget = false, bool isOpaque = false);
482 bool isTarget = false, bool isOpaque = false);
484 bool isTarget = false);
508 bool isTarget = false);
510 bool isTarget = false);
512 bool isTarget = false);
532 SDValue getFrameIndex(int FI, EVT VT, bool isTarget = false);
536 SDValue getJumpTable(int JTI, EVT VT, bool isTarget = false,
574 int64_t Offset = 0, bool isTarget = false,
DSelectionDAGNodes.h1283 ConstantSDNode(bool isTarget, bool isOpaque, const ConstantInt *val,
1285 : SDNode(isTarget ? ISD::TargetConstant : ISD::Constant, 0, DL,
1312 ConstantFPSDNode(bool isTarget, const ConstantFP *val, const DebugLoc &DL,
1314 : SDNode(isTarget ? ISD::TargetConstantFP : ISD::ConstantFP, 0, DL,
1442 ConstantPoolSDNode(bool isTarget, const Constant *c, EVT VT, int o,
1444 : SDNode(isTarget ? ISD::TargetConstantPool : ISD::ConstantPool, 0,
1450 ConstantPoolSDNode(bool isTarget, MachineConstantPoolValue *v,
1452 : SDNode(isTarget ? ISD::TargetConstantPool : ISD::ConstantPool, 0,
1694 ExternalSymbolSDNode(bool isTarget, const char *Sym, unsigned char TF, EVT VT)
1695 : SDNode(isTarget ? ISD::TargetExternalSymbol : ISD::ExternalSymbol,
/external/llvm/test/TableGen/
Dintrinsic-varargs.td18 bit isTarget = 0;
Dintrinsic-long-name.td18 bit isTarget = 0;
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/CodeGen/
DSelectionDAG.h587 bool isTarget = false, bool isOpaque = false);
589 bool isTarget = false, bool isOpaque = false);
598 bool isTarget = false, bool isOpaque = false);
600 bool isTarget = false);
631 bool isTarget = false);
633 bool isTarget = false);
635 bool isTarget = false);
654 SDValue getFrameIndex(int FI, EVT VT, bool isTarget = false);
658 SDValue getJumpTable(int JTI, EVT VT, bool isTarget = false,
697 bool isTarget = false, unsigned TargetFlags = 0);
DSelectionDAGNodes.h1569 ConstantSDNode(bool isTarget, bool isOpaque, const ConstantInt *val, EVT VT)
1570 : SDNode(isTarget ? ISD::TargetConstant : ISD::Constant, 0, DebugLoc(),
1610 ConstantFPSDNode(bool isTarget, const ConstantFP *val, EVT VT)
1611 : SDNode(isTarget ? ISD::TargetConstantFP : ISD::ConstantFP, 0,
1822 ConstantPoolSDNode(bool isTarget, const Constant *c, EVT VT, int o,
1824 : SDNode(isTarget ? ISD::TargetConstantPool : ISD::ConstantPool, 0,
1831 ConstantPoolSDNode(bool isTarget, MachineConstantPoolValue *v,
1833 : SDNode(isTarget ? ISD::TargetConstantPool : ISD::ConstantPool, 0,
2122 ExternalSymbolSDNode(bool isTarget, const char *Sym, unsigned TF, EVT VT)
2123 : SDNode(isTarget ? ISD::TargetExternalSymbol : ISD::ExternalSymbol, 0,
/external/javassist/src/main/javassist/bytecode/stackmap/
DMapMaker.java421 if (isTarget(bb, blocks[i - 1])) { in toStackMap()
444 private boolean isTarget(TypedBlock cur, TypedBlock prev) { in isTarget() method in MapMaker
570 if (effective[i] = isTarget(bb, blocks[i - 1])) { in toStackMap2()
DBasicBlock.java206 boolean isBlockBegin, boolean isTarget) {
218 if (isTarget)
/external/llvm/lib/CodeGen/SelectionDAG/
DSelectionDAG.cpp1203 bool isTarget) { in getIntPtrConstant() argument
1204 return getConstant(Val, DL, TLI->getPointerTy(getDataLayout()), isTarget); in getIntPtrConstant()
1208 bool isTarget) { in getConstantFP() argument
1209 return getConstantFP(*ConstantFP::get(*getContext(), V), DL, VT, isTarget); in getConstantFP()
1213 EVT VT, bool isTarget) { in getConstantFP() argument
1221 unsigned Opc = isTarget ? ISD::TargetConstantFP : ISD::ConstantFP; in getConstantFP()
1232 N = newSDNode<ConstantFPSDNode>(isTarget, &V, DL.getDebugLoc(), EltVT); in getConstantFP()
1244 bool isTarget) { in getConstantFP() argument
1247 return getConstantFP(APFloat((float)Val), DL, VT, isTarget); in getConstantFP()
1249 return getConstantFP(APFloat(Val), DL, VT, isTarget); in getConstantFP()
[all …]
/external/llvm/utils/TableGen/
DCodeGenTarget.cpp437 bool isTarget = Defs[I]->getValueAsBit("isTarget"); in LoadIntrinsics() local
438 if (isTarget == TargetOnly) in LoadIntrinsics()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/SelectionDAG/
DSelectionDAG.cpp1329 bool isTarget) { in getIntPtrConstant() argument
1330 return getConstant(Val, DL, TLI->getPointerTy(getDataLayout()), isTarget); in getIntPtrConstant()
1340 bool isTarget) { in getConstantFP() argument
1341 return getConstantFP(*ConstantFP::get(*getContext(), V), DL, VT, isTarget); in getConstantFP()
1345 EVT VT, bool isTarget) { in getConstantFP() argument
1353 unsigned Opc = isTarget ? ISD::TargetConstantFP : ISD::ConstantFP; in getConstantFP()
1364 N = newSDNode<ConstantFPSDNode>(isTarget, &V, EltVT); in getConstantFP()
1377 bool isTarget) { in getConstantFP() argument
1380 return getConstantFP(APFloat((float)Val), DL, VT, isTarget); in getConstantFP()
1382 return getConstantFP(APFloat(Val), DL, VT, isTarget); in getConstantFP()
[all …]
/external/proguard/src/proguard/optimize/peephole/
DInstructionSequenceReplacer.java157 branchTargetFinder.isTarget(offset)) || in visitAnyInstruction()
DBranchTargetFinder.java106 public boolean isTarget(int offset) in isTarget() method in BranchTargetFinder
/external/deqp/external/openglcts/modules/gl/
Dgl4cDirectStateAccessQueriesTests.cpp508 while (isTarget(++invalid_target)) in testInvalidTarget()
1251 bool ErrorsTest::isTarget(glw::GLenum maybe_target) in isTarget() function in gl4cts::DirectStateAccess::Queries::ErrorsTest
Dgl4cDirectStateAccessTests.hpp945 bool isTarget(glw::GLenum maybe_target);
/external/llvm/include/llvm/IR/
DIntrinsics.td256 bit isTarget = 0;
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/IR/
DIntrinsics.td317 bit isTarget = 0;