/external/python/cpython3/Tools/cases_generator/ |
D | stack.py | 2 from analyzer import StackItem, Instruction, Uop 24 def var_size(var: StackItem) -> str: argument 53 def pop(self, item: StackItem) -> None: argument 56 def push(self, item: StackItem) -> None: argument 126 self.variables: list[StackItem] = [] 129 def pop(self, var: StackItem) -> str: argument 169 def push(self, var: StackItem) -> str: argument
|
D | analyzer.py | 100 class StackItem: class 119 inputs: list[StackItem] 120 outputs: list[StackItem] 290 def convert_stack_item(item: parser.StackEffect, replace_op_arg_1: str | None) -> StackItem: 294 return StackItem( 299 inputs: list[StackItem] = [ 302 outputs: list[StackItem] = [convert_stack_item(i, replace_op_arg_1) for i in op.outputs]
|
D | tier2_generator.py | 17 StackItem, 37 var: StackItem, uop: Uop, variables: set[str], out: CWriter argument
|
D | optimizer_generator.py | 13 StackItem, 38 def type_name(var: StackItem) -> str: argument
|
D | tier1_generator.py | 17 StackItem,
|
/external/python/cpython3/Lib/test/ |
D | test_generated_cases.py | 32 from analyzer import StackItem 50 x := StackItem("x", None, "", "1"), 51 y := StackItem("y", None, "", "oparg"), 52 z := StackItem("z", None, "", "oparg*2"), 55 StackItem("x", None, "", "1"), 56 StackItem("b", None, "", "oparg*4"), 57 StackItem("c", None, "", "1"),
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AMDGPU/ |
D | R600ControlFlowFinalizer.cpp | 53 enum StackItem { enum 61 std::vector<StackItem> BranchStack; 62 std::vector<StackItem> LoopStack; 72 bool branchStackContains(CFStack::StackItem); 74 unsigned getSubEntrySize(CFStack::StackItem Item); 86 bool CFStack::branchStackContains(CFStack::StackItem Item) { in branchStackContains() 87 for (std::vector<CFStack::StackItem>::const_iterator I = BranchStack.begin(), in branchStackContains() 133 unsigned CFStack::getSubEntrySize(CFStack::StackItem Item) { in getSubEntrySize() 168 CFStack::StackItem Item = CFStack::ENTRY; in pushBranch() 204 CFStack::StackItem Top = BranchStack.back(); in popBranch()
|
/external/llvm/lib/Target/AMDGPU/ |
D | R600ControlFlowFinalizer.cpp | 35 enum StackItem { enum 43 std::vector<StackItem> BranchStack; 44 std::vector<StackItem> LoopStack; 55 bool branchStackContains(CFStack::StackItem); 57 unsigned getSubEntrySize(CFStack::StackItem Item); 69 bool CFStack::branchStackContains(CFStack::StackItem Item) { in branchStackContains() 70 for (std::vector<CFStack::StackItem>::const_iterator I = BranchStack.begin(), in branchStackContains() 116 unsigned CFStack::getSubEntrySize(CFStack::StackItem Item) { in getSubEntrySize() 151 CFStack::StackItem Item = CFStack::ENTRY; in pushBranch() 187 CFStack::StackItem Top = BranchStack.back(); in popBranch()
|
/external/swiftshader/third_party/llvm-16.0/llvm/lib/Target/AMDGPU/ |
D | R600ControlFlowFinalizer.cpp | 29 enum StackItem { enum 37 std::vector<StackItem> BranchStack; 38 std::vector<StackItem> LoopStack; 48 bool branchStackContains(CFStack::StackItem); 50 unsigned getSubEntrySize(CFStack::StackItem Item); 62 bool CFStack::branchStackContains(CFStack::StackItem Item) { in branchStackContains() 104 unsigned CFStack::getSubEntrySize(CFStack::StackItem Item) { in getSubEntrySize() 138 CFStack::StackItem Item = CFStack::ENTRY; in pushBranch() 174 CFStack::StackItem Top = BranchStack.back(); in popBranch()
|
/external/executorch/extension/pytree/ |
D | pybindings.cpp | 323 struct StackItem { in broadcast_to_and_flatten() struct 328 std::stack<StackItem> stack; in broadcast_to_and_flatten()
|
/external/vulkan-validation-layers/layers/ |
D | vk_mem_alloc.h | 6912 struct StackItem struct 6920 VmaVector< StackItem, VmaStlAllocator<StackItem> > m_Stack; argument 6931 m_Stack(VmaStlAllocator<StackItem>(pAllocationCallbacks)), in VmaJsonWriter() 6949 StackItem item; in BeginObject() 6974 StackItem item; in BeginArray() 7116 StackItem& currItem = m_Stack.back(); in BeginValue()
|
/external/skia/vma_android/include/ |
D | vk_mem_alloc.h | 5470 struct StackItem struct 5480 VmaVector< StackItem, VmaStlAllocator<StackItem> > m_Stack; argument 5496 m_Stack(VmaStlAllocator<StackItem>(pAllocationCallbacks)), in VmaJsonWriter() 5512 StackItem item; in BeginObject() 5537 StackItem item; in BeginArray() 5696 StackItem& currItem = m_Stack.back(); in BeginValue()
|
/external/angle/third_party/vulkan_memory_allocator/include/ |
D | vk_mem_alloc.h | 5554 struct StackItem struct 5564 VmaVector< StackItem, VmaStlAllocator<StackItem> > m_Stack; argument 5575 m_Stack(VmaStlAllocator<StackItem>(pAllocationCallbacks)), in VmaJsonWriter() 5591 StackItem item; in BeginObject() 5616 StackItem item; in BeginArray() 5757 StackItem& currItem = m_Stack.back(); in BeginValue()
|