/external/mesa3d/src/gallium/drivers/lima/ir/pp/ |
D | node.c | 34 .slots = (int []) { 51 .slots = (int []) { 58 .slots = (int []) { 65 .slots = (int []) { 71 .slots = (int []) { 77 .slots = (int []) { 83 .slots = (int []) { 89 .slots = (int []) { 95 .slots = (int []) { 101 .slots = (int []) { [all …]
|
D | instr.c | 64 int *slots = ppir_op_infos[mul->op].slots; in ppir_instr_insert_mul_node() local 66 for (int i = 0; slots[i] != PPIR_INSTR_SLOT_END; i++) { in ppir_instr_insert_mul_node() 68 if (slots[i] == pos) { in ppir_instr_insert_mul_node() 69 if (!instr->slots[pos]) { in ppir_instr_insert_mul_node() 106 instr->slots[pos] = mul; in ppir_instr_insert_mul_node() 157 if (!instr->slots[i]) in ppir_instr_update_src_pipeline() 160 ppir_alu_node *alu = ppir_node_to_alu(instr->slots[i]); in ppir_instr_update_src_pipeline() 167 ppir_node *branch_node = instr->slots[PPIR_INSTR_SLOT_BRANCH]; in ppir_instr_update_src_pipeline() 212 int *slots = ppir_op_infos[node->op].slots; in ppir_instr_insert_node() local 213 for (int i = 0; slots[i] != PPIR_INSTR_SLOT_END; i++) { in ppir_instr_insert_node() [all …]
|
/external/llvm-project/llvm/lib/AsmParser/ |
D | Parser.cpp | 27 SlotMapping *Slots, bool UpgradeDebugInfo, in parseAssemblyInto() argument 35 M ? M->getContext() : Context, Slots) in parseAssemblyInto() 41 SlotMapping *Slots, in parseAssemblyInto() argument 43 return ::parseAssemblyInto(F, M, Index, Err, Slots, in parseAssemblyInto() 49 SlotMapping *Slots, in parseAssembly() argument 54 if (parseAssemblyInto(F, M.get(), nullptr, Err, Slots, DataLayoutCallback)) in parseAssembly() 63 SlotMapping *Slots) { in parseAssemblyFile() argument 72 return parseAssembly(FileOrErr.get()->getMemBufferRef(), Err, Context, Slots); in parseAssemblyFile() 77 LLVMContext &Context, SlotMapping *Slots, in parseAssemblyWithIndex() argument 85 if (parseAssemblyInto(F, M.get(), Index.get(), Err, Slots, UpgradeDebugInfo, in parseAssemblyWithIndex() [all …]
|
/external/rust/crates/tokio/src/util/ |
D | slab.rs | 30 /// When allocating an object, first previously used slots are reused. If no 62 /// Caches the array pointer & number of initialized slots. 100 /// Minimum number of slots a page can contain. 106 /// Slots 107 slots: Mutex<Slots<T>>, field 109 // Number of slots currently being used. This is not guaranteed to be up to 116 // The number of slots the page can hold. 124 /// Pointer to the page's slots. 125 slots: *const Slot<T>, field 127 /// Number of initialized slots. [all …]
|
/external/avb/libavb_ab/ |
D | avb_ab_flow.c | 67 data->slots[0].priority = AVB_AB_MAX_PRIORITY; in avb_ab_data_init() 68 data->slots[0].tries_remaining = AVB_AB_MAX_TRIES_REMAINING; in avb_ab_data_init() 69 data->slots[0].successful_boot = 0; in avb_ab_data_init() 70 data->slots[1].priority = AVB_AB_MAX_PRIORITY - 1; in avb_ab_data_init() 71 data->slots[1].tries_remaining = AVB_AB_MAX_TRIES_REMAINING; in avb_ab_data_init() 72 data->slots[1].successful_boot = 0; in avb_ab_data_init() 187 slot_normalize(&ab_data->slots[0]); in load_metadata() 188 slot_normalize(&ab_data->slots[1]); in load_metadata() 228 /* Validate all bootable slots. */ in avb_ab_flow() 230 if (slot_is_bootable(&ab_data.slots[n])) { in avb_ab_flow() [all …]
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/ |
D | StackColoring.cpp | 11 // which represent the possible lifetime of stack slots. It attempts to 12 // merge disjoint stack slots and reduce the used stack space. 13 // NOTE: This pass is not StackSlotColoring, which optimizes spill slots. 16 // 1. Allow merging multiple small slots into a single larger slot at different 19 // spill slots. 95 STATISTIC(StackSpaceSaved, "Number of bytes saved due to merging slots."); 103 // Stack Coloring reduces stack usage by merging stack slots when they 128 // stack slots for `x` or `y` are used, and then `x` is only used if `var` 130 // of the stack slots used together, and therefore we can merge them, 169 // L4) on function exit, all stack slots are marked as *out-of-scope*. [all …]
|
/external/mesa3d/src/gallium/drivers/lima/ir/gp/ |
D | node.c | 33 .slots = (int []) { 43 .slots = (int []) { GPIR_INSTR_SLOT_MUL1, GPIR_INSTR_SLOT_MUL0, GPIR_INSTR_SLOT_END }, 48 .slots = (int []) { GPIR_INSTR_SLOT_MUL0, GPIR_INSTR_SLOT_END }, 53 .slots = (int []) { GPIR_INSTR_SLOT_MUL0, GPIR_INSTR_SLOT_END }, 59 .slots = (int []) { GPIR_INSTR_SLOT_MUL0, GPIR_INSTR_SLOT_END }, 66 .slots = (int []) { GPIR_INSTR_SLOT_ADD0, GPIR_INSTR_SLOT_ADD1, GPIR_INSTR_SLOT_END }, 71 .slots = (int []) { GPIR_INSTR_SLOT_ADD0, GPIR_INSTR_SLOT_ADD1, GPIR_INSTR_SLOT_END }, 78 .slots = (int []) { GPIR_INSTR_SLOT_ADD0, GPIR_INSTR_SLOT_ADD1, GPIR_INSTR_SLOT_END }, 85 .slots = (int []) { GPIR_INSTR_SLOT_ADD0, GPIR_INSTR_SLOT_ADD1, GPIR_INSTR_SLOT_END }, 92 .slots = (int []) { GPIR_INSTR_SLOT_ADD0, GPIR_INSTR_SLOT_ADD1, GPIR_INSTR_SLOT_END }, [all …]
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/AsmParser/ |
D | Parser.cpp | 27 SlotMapping *Slots, bool UpgradeDebugInfo, in parseAssemblyInto() argument 35 M ? M->getContext() : Context, Slots, UpgradeDebugInfo, in parseAssemblyInto() 42 SlotMapping *Slots, bool UpgradeDebugInfo, in parseAssembly() argument 47 if (parseAssemblyInto(F, M.get(), nullptr, Err, Slots, UpgradeDebugInfo, in parseAssembly() 56 LLVMContext &Context, SlotMapping *Slots, in parseAssemblyFile() argument 66 return parseAssembly(FileOrErr.get()->getMemBufferRef(), Err, Context, Slots, in parseAssemblyFile() 72 SlotMapping *Slots, bool UpgradeDebugInfo, StringRef DataLayoutString) { in parseAssemblyWithIndex() argument 78 if (parseAssemblyInto(F, M.get(), Index.get(), Err, Slots, UpgradeDebugInfo, in parseAssemblyWithIndex() 87 SlotMapping *Slots, bool UpgradeDebugInfo, StringRef DataLayoutString) { in parseAssemblyFileWithIndex() argument 97 Context, Slots, UpgradeDebugInfo, in parseAssemblyFileWithIndex() [all …]
|
/external/llvm/lib/AsmParser/ |
D | Parser.cpp | 26 SlotMapping *Slots) { in parseAssemblyInto() argument 31 return LLParser(F.getBuffer(), SM, Err, &M, Slots).Run(); in parseAssemblyInto() 37 SlotMapping *Slots) { in parseAssembly() argument 41 if (parseAssemblyInto(F, *M, Err, Slots)) in parseAssembly() 50 SlotMapping *Slots) { in parseAssemblyFile() argument 59 return parseAssembly(FileOrErr.get()->getMemBufferRef(), Err, Context, Slots); in parseAssemblyFile() 65 SlotMapping *Slots) { in parseAssemblyString() argument 67 return parseAssembly(F, Err, Context, Slots); in parseAssemblyString() 71 const Module &M, const SlotMapping *Slots) { in parseConstantValue() argument 77 .parseStandaloneConstantValue(C, Slots)) in parseConstantValue() [all …]
|
/external/llvm-project/llvm/lib/CodeGen/ |
D | StackColoring.cpp | 11 // which represent the possible lifetime of stack slots. It attempts to 12 // merge disjoint stack slots and reduce the used stack space. 13 // NOTE: This pass is not StackSlotColoring, which optimizes spill slots. 16 // 1. Allow merging multiple small slots into a single larger slot at different 19 // spill slots. 95 STATISTIC(StackSpaceSaved, "Number of bytes saved due to merging slots."); 103 // Stack Coloring reduces stack usage by merging stack slots when they 128 // stack slots for `x` or `y` are used, and then `x` is only used if `var` 130 // of the stack slots used together, and therefore we can merge them, 169 // L4) on function exit, all stack slots are marked as *out-of-scope*. [all …]
|
/external/llvm/include/llvm/AsmParser/ |
D | Parser.h | 37 /// \param Slots The optional slot mapping that will be initialized during 42 SlotMapping *Slots = nullptr); 53 /// \param Slots The optional slot mapping that will be initialized during 58 SlotMapping *Slots = nullptr); 64 /// \param Slots The optional slot mapping that will be initialized during 68 SlotMapping *Slots = nullptr); 78 /// \param Slots The optional slot mapping that will be initialized during 82 SlotMapping *Slots = nullptr); 89 /// \param Slots The optional slot mapping that will restore the parsing state 93 const SlotMapping *Slots = nullptr); [all …]
|
/external/llvm-project/llvm/include/llvm/AsmParser/ |
D | Parser.h | 43 /// \param Slots The optional slot mapping that will be initialized during 47 SlotMapping *Slots = nullptr); 58 /// \param Slots The optional slot mapping that will be initialized during 63 SlotMapping *Slots = nullptr); 82 /// \param Slots The optional slot mapping that will be initialized during 87 SlotMapping *Slots = nullptr, 93 SlotMapping *Slots, DataLayoutCallbackTy DataLayoutCallback); 110 /// \param Slots The optional slot mapping that will be initialized during 115 SlotMapping *Slots = nullptr, 122 /// \param Slots The optional slot mapping that will be initialized during [all …]
|
/external/llvm/lib/CodeGen/ |
D | StackColoring.cpp | 12 // which represent the possible lifetime of stack slots. It attempts to 13 // merge disjoint stack slots and reduce the used stack space. 14 // NOTE: This pass is not StackSlotColoring, which optimizes spill slots. 17 // 1. Allow merging multiple small slots into a single larger slot at different 20 // spill slots. 86 STATISTIC(StackSpaceSaved, "Number of bytes saved due to merging slots."); 162 // Relying entirely on first-use of stack slots is problematic, 221 // tries to identify "degenerate" slots -- those slots where on a single 223 // K before we hit the slot K lifetime start marker. For such slots, 225 // the variable's lifetime. NB: with this implementation, slots can [all …]
|
/external/grpc-grpc/src/core/lib/surface/ |
D | channel_init.cc | 33 stage_slot* slots; member 43 g_slots[i].slots = nullptr; in grpc_channel_init_init() 57 g_slots[type].slots = static_cast<stage_slot*>( in grpc_channel_init_register_stage() 58 gpr_realloc(g_slots[type].slots, in grpc_channel_init_register_stage() 59 g_slots[type].cap_slots * sizeof(*g_slots[type].slots))); in grpc_channel_init_register_stage() 61 stage_slot* s = &g_slots[type].slots[g_slots[type].num_slots++]; in grpc_channel_init_register_stage() 80 qsort(g_slots[i].slots, g_slots[i].num_slots, sizeof(*g_slots[i].slots), in grpc_channel_init_finalize() 88 gpr_free(g_slots[i].slots); in grpc_channel_init_shutdown() 89 g_slots[i].slots = in grpc_channel_init_shutdown() 102 const stage_slot* slot = &g_slots[type].slots[i]; in grpc_channel_init_create_stack()
|
/external/rust/crates/grpcio-sys/grpc/src/core/lib/surface/ |
D | channel_init.cc | 33 stage_slot* slots; member 43 g_slots[i].slots = nullptr; in grpc_channel_init_init() 57 g_slots[type].slots = static_cast<stage_slot*>( in grpc_channel_init_register_stage() 58 gpr_realloc(g_slots[type].slots, in grpc_channel_init_register_stage() 59 g_slots[type].cap_slots * sizeof(*g_slots[type].slots))); in grpc_channel_init_register_stage() 61 stage_slot* s = &g_slots[type].slots[g_slots[type].num_slots++]; in grpc_channel_init_register_stage() 80 qsort(g_slots[i].slots, g_slots[i].num_slots, sizeof(*g_slots[i].slots), in grpc_channel_init_finalize() 88 gpr_free(g_slots[i].slots); in grpc_channel_init_shutdown() 89 g_slots[i].slots = in grpc_channel_init_shutdown() 102 const stage_slot* slot = &g_slots[type].slots[i]; in grpc_channel_init_create_stack()
|
/external/python/cpython2/Tools/framer/framer/ |
D | slots.py | 1 """Descriptions of all the slots in Python's type objects.""" 10 Slots = (Slot("ob_size"), variable 58 # give some slots symbolic names 59 TP_NAME = Slots[1] 60 TP_BASICSIZE = Slots[2] 61 TP_DEALLOC = Slots[4] 62 TP_DOC = Slots[20] 63 TP_METHODS = Slots[27] 64 TP_MEMBERS = Slots[28]
|
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/AsmParser/ |
D | Parser.h | 37 /// \param Slots The optional slot mapping that will be initialized during 45 SlotMapping *Slots = nullptr, bool UpgradeDebugInfo = true, 57 /// \param Slots The optional slot mapping that will be initialized during 66 SlotMapping *Slots = nullptr, 87 /// \param Slots The optional slot mapping that will be initialized during 95 LLVMContext &Context, SlotMapping *Slots = nullptr, 114 /// \param Slots The optional slot mapping that will be initialized during 122 SlotMapping *Slots = nullptr, 130 /// \param Slots The optional slot mapping that will be initialized during 141 SlotMapping *Slots = nullptr, [all …]
|
/external/kotlinx.coroutines/kotlinx-coroutines-core/common/src/flow/internal/ |
D | AbstractSharedFlow.kt | 24 protected var slots: Array<S?>? = null // allocated when needed variable in kotlinx.coroutines.flow.internal.AbstractSharedFlow 26 protected var nCollectors = 0 // number of allocated (!free) slots 48 val slots = when (val curSlots = slots) { in createSlot() constant 49 null -> createSlotArray(2).also { slots = it } in createSlot() 51 curSlots.copyOf(2 * curSlots.size).also { slots = it } in createSlot() 59 slot = slots[index] ?: createSlot().also { slots[index] = it } in createSlot() 61 if (index >= slots.size) index = 0 in createSlot() 97 slots?.forEach { slot -> in forEachSlotLocked()
|
/external/avb/test/ |
D | avb_ab_flow_unittest.cc | 42 static_assert(offsetof(AvbABData, slots) % 8 == 0, 43 "AvbABData slots member has wrong offset"); 58 EXPECT_EQ(AVB_AB_MAX_PRIORITY, data.slots[0].priority); in TEST_F() 59 EXPECT_EQ(AVB_AB_MAX_TRIES_REMAINING, data.slots[0].tries_remaining); in TEST_F() 60 EXPECT_EQ(0, data.slots[0].successful_boot); in TEST_F() 61 EXPECT_EQ(AVB_AB_MAX_PRIORITY - 1, data.slots[1].priority); in TEST_F() 62 EXPECT_EQ(AVB_AB_MAX_TRIES_REMAINING, data.slots[1].tries_remaining); in TEST_F() 63 EXPECT_EQ(0, data.slots[1].successful_boot); in TEST_F() 82 memcmp(reinterpret_cast<void*>(data.slots), in TEST_F() 83 reinterpret_cast<void*>(restored.slots), in TEST_F() [all …]
|
/external/llvm/lib/Target/Hexagon/MCTargetDesc/ |
D | HexagonShuffler.h | 30 // Mask of the slots or units that may execute the insn and 32 unsigned Slots, Weight; variable 38 Slots = s & ~(~0U << HEXAGON_PACKET_SIZE); in setUnits() 42 unsigned getUnits() const { return (Slots); }; in getUnits() 62 // Available HVX slots. 73 // Count of adjacent slots that the insn requires to be executed. 122 // Check if the handles are in ascending order by core slots. 126 // Check if the handles are in ascending order by HVX slots. 156 SHUFFLE_ERROR_STORES, ///< No free slots for store insns. 157 SHUFFLE_ERROR_LOADS, ///< No free slots for load insns. [all …]
|
/external/skia/src/sksl/codegen/ |
D | SkSLVMCodeGenerator.cpp | 68 explicit Value(size_t slots) { in Value() 69 fVals.resize(slots); in Value() 76 size_t slots() const { return fVals.size(); } in slots() function 219 * getSlot returning the start of the contiguous chunk of slots. 227 skvm::F32 f32(const Value& v) { SkASSERT(v.slots() == 1); return f32(v[0]); } in f32() 228 skvm::I32 i32(const Value& v) { SkASSERT(v.slots() == 1); return i32(v[0]); } in i32() 232 Value result(v.slots()); in unary() 233 for (size_t i = 0; i < v.slots(); ++i) { in unary() 542 SkASSERT(resultIdx == result.slots()); in writeBinaryExpression() 546 size_t nslots = std::max(lVal.slots(), rVal.slots()); in writeBinaryExpression() [all …]
|
/external/rust/crates/managed/src/ |
D | slotmap.rs | 8 /// Provides links between slots and elements. 43 /// let mut slots = [SlotIndex::default(); 1024]; 47 /// ManagedSlice::Borrowed(&mut slots[..])); 55 /// The logical list of used slots. 58 slots: Partial<'a, Slot>, field 63 /// Refers to the one-past-the-end index of `slots` if there are no elements. 115 let slot_generation = self.slots in get() 129 let slot_generation = self.slots in get_mut() 148 let slot = self.slots.get_mut(index.0).unwrap(); in reserve() 189 let slot = self.slots.get_mut(index.idx).unwrap(); in remove() [all …]
|
/external/rust/crates/grpcio-sys/grpc/third_party/abseil-cpp/absl/container/internal/ |
D | container_memory_test.cc | 233 union Slots { in TEST() union 234 Slots() {} in TEST() function 235 ~Slots() {} in TEST() 236 slot_type slots[100]; in TEST() member 237 } slots; in TEST() local 243 slot_policy::construct(&alloc, &slots.slots[0], CopyableMovableInstance(1), in TEST() 246 slot_policy::transfer(&alloc, &slots.slots[i + 1], &slots.slots[i]); in TEST() 248 slot_policy::destroy(&alloc, &slots.slots[99]); in TEST()
|
/external/openscreen/third_party/abseil/src/absl/container/internal/ |
D | container_memory_test.cc | 233 union Slots { in TEST() union 234 Slots() {} in TEST() function 235 ~Slots() {} in TEST() 236 slot_type slots[100]; in TEST() member 237 } slots; in TEST() local 243 slot_policy::construct(&alloc, &slots.slots[0], CopyableMovableInstance(1), in TEST() 246 slot_policy::transfer(&alloc, &slots.slots[i + 1], &slots.slots[i]); in TEST() 248 slot_policy::destroy(&alloc, &slots.slots[99]); in TEST()
|
/external/libtextclassifier/abseil-cpp/absl/container/internal/ |
D | container_memory_test.cc | 233 union Slots { in TEST() union 234 Slots() {} in TEST() function 235 ~Slots() {} in TEST() 236 slot_type slots[100]; in TEST() member 237 } slots; in TEST() local 243 slot_policy::construct(&alloc, &slots.slots[0], CopyableMovableInstance(1), in TEST() 246 slot_policy::transfer(&alloc, &slots.slots[i + 1], &slots.slots[i]); in TEST() 248 slot_policy::destroy(&alloc, &slots.slots[99]); in TEST()
|