Home
last modified time | relevance | path

Searched refs:Leaf (Results 1 – 14 of 14) sorted by relevance

/external/selinux/sepolgen/src/sepolgen/
Drefpolicy.py148 class Leaf(PolicyBase): class
259 class SecurityContext(Leaf):
268 Leaf.__init__(self, parent)
334 class ObjectClass(Leaf):
343 Leaf.__init__(self, parent)
349 class TypeAttribute(Leaf):
355 Leaf.__init__(self, parent)
362 class RoleAttribute(Leaf):
368 Leaf.__init__(self, parent)
376 class Role(Leaf):
[all …]
/external/llvm/lib/Transforms/Utils/
DLowerSwitch.cpp87 BasicBlock *newLeafBlock(CaseRange &Leaf, Value *Val, BasicBlock *OrigBlock,
301 BasicBlock* LowerSwitch::newLeafBlock(CaseRange& Leaf, Value* Val, in newLeafBlock() argument
311 if (Leaf.Low == Leaf.High) { in newLeafBlock()
314 Leaf.Low, "SwitchLeaf"); in newLeafBlock()
317 if (Leaf.Low->isMinValue(true /*isSigned*/)) { in newLeafBlock()
319 Comp = new ICmpInst(*NewLeaf, ICmpInst::ICMP_SLE, Val, Leaf.High, in newLeafBlock()
321 } else if (Leaf.Low->isZero()) { in newLeafBlock()
323 Comp = new ICmpInst(*NewLeaf, ICmpInst::ICMP_ULE, Val, Leaf.High, in newLeafBlock()
327 Constant* NegLo = ConstantExpr::getNeg(Leaf.Low); in newLeafBlock()
331 Constant *UpperBound = ConstantExpr::getAdd(NegLo, Leaf.High); in newLeafBlock()
[all …]
/external/llvm/include/llvm/ADT/
DIntervalMap.h934 typedef IntervalMapImpl::LeafNode<KeyT, ValT, Sizer::LeafSize, Traits> Leaf; typedef
1149 return NR.get<Leaf>().safeLookup(x, NotFound); in treeSafeLookup()
1160 const unsigned Nodes = RootLeaf::Capacity / Leaf::Capacity + 1; in branchRoot()
1170 NewOffset = distribute(Nodes, rootSize, Leaf::Capacity, nullptr, size, in branchRoot()
1177 Leaf *L = newNode<Leaf>(); in branchRoot()
1186 rootBranch().stop(n) = node[n].template get<Leaf>().stop(size[n]-1); in branchRoot()
1189 rootBranchStart() = node[0].template get<Leaf>().start(0); in branchRoot()
1211 NewOffset = distribute(Nodes, rootSize, Leaf::Capacity, nullptr, Size, in splitRoot()
1267 deleteNode(&Node.get<Leaf>()); in deleteNode()
1319 return branched() ? path.leaf<Leaf>().start(path.leafOffset()) : in unsafeStart()
[all …]
/external/clang/lib/Rewrite/
DRewriteRope.cpp614 if (RopePieceBTreeLeaf *Leaf = dyn_cast<RopePieceBTreeLeaf>(this)) in Destroy() local
615 delete Leaf; in Destroy()
628 if (RopePieceBTreeLeaf *Leaf = dyn_cast<RopePieceBTreeLeaf>(this)) in split() local
629 return Leaf->split(Offset); in split()
642 if (RopePieceBTreeLeaf *Leaf = dyn_cast<RopePieceBTreeLeaf>(this)) in insert() local
643 return Leaf->insert(Offset, R); in insert()
651 if (RopePieceBTreeLeaf *Leaf = dyn_cast<RopePieceBTreeLeaf>(this)) in erase() local
652 return Leaf->erase(Offset, NumBytes); in erase()
731 if (RopePieceBTreeLeaf *Leaf = dyn_cast<RopePieceBTreeLeaf>(getRoot(Root))) in clear() local
732 Leaf->clear(); in clear()
/external/llvm/lib/Target/X86/
DX86InstrSGX.td18 // ENCLS - Execute an Enclave System Function of Specified Leaf Number
22 // ENCLU - Execute an Enclave User Function of Specified Leaf Number
DREADME.txt468 Leaf functions that require one 4-byte spill slot have a prolog like this:
/external/v8/src/wasm/
Dast-decoder.cc238 void Leaf(LocalType type, TFNode* node = nullptr) { in Leaf() function in v8::internal::wasm::LR_WasmDecoder
329 Leaf(kAstStmt); in DecodeFunctionBody()
334 Leaf(kAstStmt); in DecodeFunctionBody()
348 Leaf(kAstStmt); in DecodeFunctionBody()
435 Leaf(kAstEnd); in DecodeFunctionBody()
444 Leaf(kAstEnd, nullptr); in DecodeFunctionBody()
449 Leaf(kAstI32, BUILD(Int32Constant, value)); in DecodeFunctionBody()
455 Leaf(kAstI32, BUILD(Int32Constant, value)); in DecodeFunctionBody()
461 Leaf(kAstI64, BUILD(Int64Constant, value)); in DecodeFunctionBody()
467 Leaf(kAstF32, BUILD(Float32Constant, value)); in DecodeFunctionBody()
[all …]
/external/clang/lib/Lex/
DPPMacroExpansion.cpp134 auto Leaf = LeafModuleMacros.find(II); in updateModuleMacroInfo() local
135 if (Leaf == LeafModuleMacros.end()) { in updateModuleMacroInfo()
149 for (auto *LeafMM : Leaf->second) { in updateModuleMacroInfo()
205 ArrayRef<ModuleMacro*> Leaf; in dumpMacroInfo() local
208 Leaf = LeafIt->second; in dumpMacroInfo()
236 llvm::SmallVector<ModuleMacro *, 16> Worklist(Leaf.begin(), Leaf.end()); in dumpMacroInfo()
/external/llvm/unittests/IR/
DPatternMatch.cpp57 Value *Leaf = IRB.CreateAdd(IRB.CreateAdd(Two, IRB.getInt32(8)), in TEST_F() local
65 EXPECT_FALSE(m_OneUse(m_Value()).match(Leaf)); in TEST_F()
/external/llvm/test/CodeGen/AArch64/
Darm64-spill-lr.ll4 ; Leaf function which uses all callee-saved registers and allocates >= 256 bytes
/external/boringssl/src/ssl/test/runner/
Dcommon.go980 Leaf *x509.Certificate member
Dhandshake_client.go517 x509Cert := chain.Leaf
/external/llvm/utils/TableGen/
DCodeGenDAGPatterns.cpp2932 Record *Leaf) { in checkOperandClass() argument
2933 if (OI.Rec == Leaf) in checkOperandClass()
2938 if (Leaf->isSubClassOf("ValueType")) in checkOperandClass()
2942 if (Leaf->isSubClassOf("ComplexPattern")) in checkOperandClass()
/external/llvm/include/llvm/Target/
DTargetSelectionDAG.td669 // Leaf fragments.