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

1 2 3

  /external/apache-harmony/security/src/test/support/common/java/org/apache/harmony/security/tests/support/
MyKeyStore.java 50 private Hashtable Chain = new Hashtable();
71 if (Chain.containsKey(alias)) {
72 return (Certificate[]) Chain.get(alias);
92 Certificate[] chain) throws KeyStoreException {
97 if (chain != null) {
98 Chain.put(alias, chain);
103 public void engineSetKeyEntry(String alias, byte[] key, Certificate[] chain)
111 if (Chain.containsKey(alias)) {
112 Chain.remove(alias)
    [all...]
  /libcore/support/src/test/java/org/apache/harmony/security/tests/support/
MyKeyStore.java 51 private Hashtable<String, Object> Chain = new Hashtable<String, Object>();
72 if (Chain.containsKey(alias)) {
73 return (Certificate[]) Chain.get(alias);
93 Certificate[] chain) throws KeyStoreException {
98 if (chain != null) {
99 Chain.put(alias, chain);
104 public void engineSetKeyEntry(String alias, byte[] key, Certificate[] chain)
112 if (Chain.containsKey(alias)) {
113 Chain.remove(alias)
    [all...]
  /external/clang/include/clang/Serialization/
ModuleManager.h 31 /// \brief The chain of AST files. The first entry is the one named by the
33 SmallVector<ModuleFile *, 2> Chain;
92 /// \brief The first visit() state in the chain.
109 ModuleIterator begin() { return Chain.begin(); }
111 ModuleIterator end() { return Chain.end(); }
115 ModuleConstIterator begin() const { return Chain.begin(); }
117 ModuleConstIterator end() const { return Chain.end(); }
121 ModuleReverseIterator rbegin() { return Chain.rbegin(); }
123 ModuleReverseIterator rend() { return Chain.rend(); }
127 ModuleFile &getPrimaryModule() { return *Chain[0];
    [all...]
ASTWriter.h 110 ASTReader *Chain;
315 /// if its primary namespace comes from the chain. If it does, we add the
709 bool hasChain() const { return Chain; }
  /external/llvm/lib/Target/XCore/
XCoreISelDAGToDAG.cpp 182 /// Given a chain return a new chain where any appearance of Old is replaced
183 /// by New. There must be at most one instruction between Old and Chain and
187 replaceInChain(SelectionDAG *CurDAG, SDValue Chain, SDValue Old, SDValue New)
189 if (Chain == Old)
191 if (Chain->getOpcode() != ISD::TokenFactor)
195 for (unsigned i = 0, e = Chain->getNumOperands(); i != e; ++i) {
196 if (Chain->getOperand(i) == Old) {
200 Ops.push_back(Chain->getOperand(i));
205 return CurDAG->getNode(ISD::TokenFactor, SDLoc(Chain), MVT::Other
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/radeon/
R600ISelLowering.cpp 254 SDValue Chain = Op.getOperand(0);
266 return DAG.getCopyToReg(Chain, Op.getDebugLoc(), Reg, Op.getOperand(2));
334 SDValue Chain = Op.getOperand(0);
352 MVT::Other, Chain,
SIISelLowering.cpp 310 SDValue Chain = Op.getOperand(0);
327 MVT::Other, Chain,
AMDILISelLowering.cpp 476 SDValue Chain = Op.getOperand(0);
484 Chain, Jump, Cond);
  /external/llvm/lib/CodeGen/SelectionDAG/
ScheduleDAGSDNodes.cpp 208 SDNode *Chain = 0;
211 Chain = Node->getOperand(NumOps-1).getNode();
212 if (!Chain)
215 // Look for other loads of the same chain. Find loads that are loading from
222 for (SDNode::use_iterator I = Chain->use_begin(), E = Chain->use_end();
473 "Chain dependence via physreg data?");
762 if (I->isCtrl()) continue; // ignore chain preds
771 if (II->isCtrl()) continue; // ignore chain preds
    [all...]
LegalizeTypesGeneric.cpp 250 SDValue Chain = LD->getChain();
259 Lo = DAG.getLoad(NVT, dl, Chain, Ptr, LD->getPointerInfo(),
266 Hi = DAG.getLoad(NVT, dl, Chain, Ptr,
273 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Lo.getValue(1),
280 // Modified the chain - switch anything that used the old chain to use
282 ReplaceValueWith(SDValue(N, 1), Chain);
288 SDValue Chain = N->getOperand(0);
293 Lo = DAG.getVAArg(NVT, dl, Chain, Ptr, N->getOperand(2), Align);
300 // Modified the chain - switch anything that used the old chain to us
    [all...]
LegalizeDAG.cpp 309 SDValue Chain = ST->getChain();
323 Result = DAG.getStore(Chain, dl, Result, Ptr, ST->getPointerInfo(),
343 SDValue Store = DAG.getTruncStore(Chain, dl,
408 Store1 = DAG.getTruncStore(Chain, dl, TLI.isLittleEndian()?Lo:Hi, Ptr,
414 Store2 = DAG.getTruncStore(Chain, dl, TLI.isLittleEndian()?Hi:Lo, Ptr,
431 SDValue Chain = LD->getChain();
441 SDValue newLoad = DAG.getLoad(intVT, dl, Chain, Ptr, LD->getPointerInfo(),
451 ChainResult = Chain;
473 SDValue Load = DAG.getLoad(RegVT, dl, Chain, Ptr,
491 SDValue Load = DAG.getExtLoad(ISD::EXTLOAD, dl, RegVT, Chain, Ptr
    [all...]
LegalizeVectorOps.cpp 380 SDValue Chain = LD->getChain();
416 ScalarLoad = DAG.getLoad(WideVT, dl, Chain, BasePTR,
426 ScalarLoad = DAG.getExtLoad(ISD::EXTLOAD, dl, WideVT, Chain, BasePTR,
497 Chain, BasePTR, LD->getPointerInfo().getWithOffset(Idx * Stride),
524 SDValue Chain = ST->getChain();
557 SDValue Store = DAG.getTruncStore(Chain, dl, Ex, BasePTR,
LegalizeFloatTypes.cpp 508 // Legalized the chain result - switch anything that used the old chain to
520 // Legalized the chain result - switch anything that used the old chain to
547 SDValue Chain = N->getOperand(0); // Get the chain.
554 NewVAARG = DAG.getVAArg(NVT, dl, Chain, Ptr, N->getOperand(2),
557 // Legalized the chain result - switch anything that used the old chain to
    [all...]
  /external/llvm/lib/Target/Mips/
MipsSEISelDAGToDAG.cpp 422 SDValue Chain = CurDAG->getCopyToReg(CurDAG->getEntryNode(), DL, DestReg,
424 SDValue ResNode = CurDAG->getCopyFromReg(Chain, DL, DestReg, PtrVT);
  /external/mesa3d/src/gallium/drivers/radeon/
R600ISelLowering.cpp 254 SDValue Chain = Op.getOperand(0);
266 return DAG.getCopyToReg(Chain, Op.getDebugLoc(), Reg, Op.getOperand(2));
334 SDValue Chain = Op.getOperand(0);
352 MVT::Other, Chain,
SIISelLowering.cpp 310 SDValue Chain = Op.getOperand(0);
327 MVT::Other, Chain,
AMDILISelLowering.cpp 476 SDValue Chain = Op.getOperand(0);
484 Chain, Jump, Cond);
  /external/llvm/lib/Target/R600/
AMDILISelLowering.cpp 379 SDValue Chain = Op.getOperand(0);
387 Chain, Jump, Cond);
  /external/chromium_org/chrome/browser/custom_handlers/
protocol_handler_registry.cc 173 void ProtocolHandlerRegistry::JobInterceptorFactory::Chain(
  /external/llvm/lib/CodeGen/
MachineBlockPlacement.cpp 23 // first time it reaches a chain of basic blocks, it schedules them in the
63 /// \brief Type for our function-wide basic block -> block chain mapping.
68 /// \brief A chain of blocks which will be laid out contiguously.
70 /// This is the datastructure representing a chain of consecutive blocks that
72 /// probabilities and code locality. We also can use a block chain to represent
77 /// them. They participate in a block-to-chain mapping, which is updated
80 /// \brief The sequence of blocks belonging to this chain.
82 /// This is the sequence of blocks for a particular chain. These will be laid
86 /// \brief A handle to the function-wide basic block to block chain mapping.
88 /// This is retained in each block chain to simplify the computation of chil
    [all...]
  /external/llvm/lib/Target/NVPTX/
NVPTXISelDAGToDAG.cpp 247 SDValue Chain = N->getOperand(0);
279 getI32Imm(fromTypeWidth), Addr, Chain };
308 getI32Imm(fromTypeWidth), Base, Offset, Chain };
362 getI32Imm(fromTypeWidth), Base, Offset, Chain };
414 getI32Imm(fromTypeWidth), N1, Chain };
429 SDValue Chain = N->getOperand(0);
540 getI32Imm(FromTypeWidth), Addr, Chain };
594 getI32Imm(FromTypeWidth), Base, Offset, Chain };
697 getI32Imm(FromTypeWidth), Base, Offset, Chain };
799 getI32Imm(FromTypeWidth), Op1, Chain };
    [all...]
  /external/llvm/lib/Target/Hexagon/
HexagonISelDAGToDAG.cpp 387 SDValue Chain = LD->getChain();
419 Chain);
436 SDValue Chain = LD->getChain();
454 Chain);
475 Chain);
503 SDValue Chain = LD->getChain();
522 TargetConstVal, Chain);
549 Base, TargetConst0, Chain);
580 SDValue Chain = LD->getChain();
633 TargetConstVal, Chain);
    [all...]
HexagonISelLowering.cpp 286 CreateCopyOfByValArgument(SDValue Src, SDValue Dst, SDValue Chain,
291 return DAG.getMemcpy(Chain, dl, Dst, Src, SizeNode, Flags.getByValAlign(),
301 HexagonTargetLowering::LowerReturn(SDValue Chain,
318 SmallVector<SDValue, 4> RetOps(1, Chain);
324 Chain = DAG.getCopyToReg(Chain, dl, VA.getLocReg(), OutVals[i], Flag);
327 Flag = Chain.getValue(1);
331 RetOps[0] = Chain; // Update chain.
346 /// Chain/InFlag are the input chain/flag to use, and that TheCall is the cal
    [all...]
  /external/llvm/lib/Target/MSP430/
MSP430ISelLowering.cpp 254 MSP430TargetLowering::LowerFormalArguments(SDValue Chain,
269 return LowerCCCArguments(Chain, CallConv, isVarArg, Ins, dl, DAG, InVals);
272 return Chain;
285 SDValue Chain = CLI.Chain;
299 return LowerCCCCallTo(Chain, Callee, CallConv, isVarArg, isTailCall,
310 MSP430TargetLowering::LowerCCCArguments(SDValue Chain,
353 SDValue ArgValue = DAG.getCopyFromReg(Chain, dl, VReg, RegVT);
395 InVal = DAG.getLoad(VA.getLocVT(), dl, Chain, FIN,
404 return Chain;
    [all...]
  /external/llvm/lib/Target/PowerPC/
PPCISelDAGToDAG.cpp     [all...]

Completed in 527 milliseconds

1 2 3