/third_party/mesa3d/src/gallium/drivers/vc4/ |
H A D | vc4_draw.c | 73 * Does the initial bining command list setup for drawing to a given FBO. 94 * command list. in vc4_start_draw() 103 cl_emit(&job->bcl, PRIMITIVE_LIST_FORMAT, list) { in vc4_start_draw() 104 list.data_type = _16_BIT_INDEX; in vc4_start_draw() 105 list.primitive_type = TRIANGLES_LIST; in vc4_start_draw()
|
/third_party/python/Tools/peg_generator/pegen/ |
H A D | parser_generator.py | 159 computed_rules = list(self.all_rules) 306 if isinstance(value, list): 341 sccs = list(sccutils.strongly_connected_components(graph.keys(), graph))
|
/third_party/python/Tools/scripts/ |
H A D | stable_abi.py | 144 members: list = None 238 """Generate/check the stable ABI list for documentation annotations""" 330 feature_macros = list(manifest.select({'feature_macro'})) 340 """Generate/check the stable ABI list for documentation annotations""" 602 + 'removed from the stable ABI list or or marked `abi_only`') 649 "-l", "--list", action='store_true', 650 help="list available generators and their default filenames; then exit", 673 if args.list:
|
/third_party/python/Tools/ssl/ |
H A D | multissltests.py | 284 for member in list(members): 463 args.openssl = list(OPENSSL_RECENT_VERSIONS) 464 args.libressl = list(LIBRESSL_RECENT_VERSIONS)
|
/third_party/protobuf/csharp/compatibility_tests/v3.0.0/src/Google.Protobuf.Test/Reflection/ |
H A D | FieldAccessTest.cs | 11 // notice, this list of conditions and the following disclaimer. 13 // copyright notice, this list of conditions and the following disclaimer 75 // Just one example for repeated fields - they're all just returning the list in GetValue() 76 var list = (IList) fields[TestAllTypes.RepeatedInt32FieldNumber].Accessor.GetValue(message); in GetValue() 77 Assert.AreEqual(message.RepeatedInt32, list); in GetValue() 78 Assert.AreEqual(message.RepeatedInt32[0], list[0]); // Just in case there was any doubt... in GetValue()
|
/third_party/protobuf/csharp/src/Google.Protobuf/ |
H A D | JsonParser.cs | 11 // notice, this list of conditions and the following disclaimer. 13 // copyright notice, this list of conditions and the following disclaimer 261 IList list = (IList) field.Accessor.GetValue(message); in MergeRepeatedField() 275 list.Add(value); in MergeRepeatedField() 476 var list = NewMessageForField(field); in MergeStructValue() 478 Merge(list, tokenizer); in MergeStructValue() 479 field.Accessor.SetValue(message, list); in MergeStructValue() 528 // Don't add the @type property or its value to the recorded token list in MergeAny()
|
/third_party/skia/src/gpu/geometry/ |
H A D | GrQuadBuffer.h | 117 MetadataIter(GrQuadBuffer<T>* list) in MetadataIter() argument 118 : fBuffer(list) in MetadataIter() 120 SkDEBUGCODE(fExpectedCount = list->count();) in MetadataIter() 171 // explore a linked-list structure for concatenating quads when batching ops
|
/third_party/skia/third_party/externals/swiftshader/src/Renderer/ |
H A D | Renderer.hpp | 27 #include <list> 454 std::list<Query*> queries; 504 std::list<Query*> *queries;
|
/third_party/skia/third_party/externals/sfntly/java/src/com/google/typography/font/sfntly/table/core/ |
H A D | CMapFormat4.java | 272 List<Builder.Segment> list = new ArrayList<Builder.Segment>(original.size()); in deepCopy() 274 list.add(new Segment(segment)); in deepCopy() 276 return list; in deepCopy()
|
/third_party/skia/third_party/externals/swiftshader/third_party/marl/src/ |
H A D | thread.cpp | 123 Thread::Affinity::Affinity(std::initializer_list<Core> list, in Affinity() argument 126 cores.reserve(list.size()); in Affinity() 127 for (auto core : list) { in Affinity()
|
/third_party/typescript/tests/baselines/reference/ |
H A D | isomorphicMappedTypeInference.js | 171 function getProps<T, K extends keyof T>(obj: T, list: K[]): Pick<T, K> { 292 function getProps(obj, list) {
393 declare function getProps<T, K extends keyof T>(obj: T, list: K[]): Pick<T, K>;
|
/third_party/python/Lib/test/ |
H A D | test_reprlib.py | 373 self.values = list(values) 394 m = MyContainer(list('abcde')) 399 m = MyContainer2(list('abcde'))
|
/third_party/protobuf/ruby/src/main/java/com/google/protobuf/jruby/ |
H A D | RubyMap.java | 11 * notice, this list of conditions and the following disclaimer. 13 * copyright notice, this list of conditions and the following disclaimer 244 * Returns the list of keys contained in the map, in unspecified order. 255 * Returns the list of values contained in the map, in unspecified order. 365 List<DynamicMessage> list = new ArrayList<DynamicMessage>(); in build() 373 list.add(mapMessage.build(context)); in build() 375 return list; in build()
|
/third_party/python/Lib/lib2to3/pgen2/ |
H A D | pgen.py | 29 names = list(self.dfas.keys()) 108 names = list(self.dfas.keys()) 234 # dfa is a list of DFAState instances 333 msg = " ".join([msg] + list(map(str, args))) 340 self.arcs = [] # list of (label, NFAState) pairs
|
/third_party/python/Lib/ |
H A D | asyncore.py | 135 for fd, obj in list(map.items()): 178 for fd, obj in list(map.items()): 561 for x in list(map.values()):
|
/third_party/skia/include/private/ |
H A D | SkTDArray.h | 41 SkTDArray(const std::initializer_list<T>& list) : SkTDArray(list.begin(), list.size()) {} in SkTDArray() argument
|
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/fst/ |
H A D | fst_group.c | 150 /* The list is sorted in descending order by priorities, so MB IEs will in fst_group_create_mb_ie() 457 struct dl_list *list = &g->ifaces; in fst_group_attach_iface() local 461 * Add new interface to the list. in fst_group_attach_iface() 462 * The list is sorted in descending order by priority to allow in fst_group_attach_iface() 470 list = &f->group_lentry; in fst_group_attach_iface() 472 dl_list_add(list, &i->group_lentry); in fst_group_attach_iface()
|
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/p2p/ |
H A D | p2p_utils.c | 212 const struct wpa_freq_range_list *list) in p2p_channels_remove_freqs() 216 if (list == NULL) in p2p_channels_remove_freqs() 227 if (freq > 0 && freq_range_list_includes(list, freq)) { in p2p_channels_remove_freqs() 248 * p2p_channels_includes - Check whether a channel is included in the list 211 p2p_channels_remove_freqs(struct p2p_channels *chan, const struct wpa_freq_range_list *list) p2p_channels_remove_freqs() argument
|
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/ap/ |
H A D | hostapd.h | 17 #include "utils/list.h" 132 struct dl_list list; member 146 struct dl_list list; member 167 struct sta_info *sta_list; /* STA info list head */ 436 struct dl_list list; member 486 * When set, indicates that this interface is part of list of 495 struct ap_info *ap_list; /* AP info list head */
|
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/fst/ |
H A D | fst_group.c | 150 /* The list is sorted in descending order by priorities, so MB IEs will in fst_group_create_mb_ie() 457 struct dl_list *list = &g->ifaces; in fst_group_attach_iface() local 461 * Add new interface to the list. in fst_group_attach_iface() 462 * The list is sorted in descending order by priority to allow in fst_group_attach_iface() 470 list = &f->group_lentry; in fst_group_attach_iface() 472 dl_list_add(list, &i->group_lentry); in fst_group_attach_iface()
|
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/p2p/ |
H A D | p2p_utils.c | 215 const struct wpa_freq_range_list *list) in p2p_channels_remove_freqs() 219 if (list == NULL) in p2p_channels_remove_freqs() 230 if (freq > 0 && freq_range_list_includes(list, freq)) { in p2p_channels_remove_freqs() 251 * p2p_channels_includes - Check whether a channel is included in the list 314 p2p_info(p2p, "p2p_supported_freq_go update channel list"); in p2p_supported_freq_go() 214 p2p_channels_remove_freqs(struct p2p_channels *chan, const struct wpa_freq_range_list *list) p2p_channels_remove_freqs() argument
|
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/ap/ |
H A D | hostapd.h | 17 #include "utils/list.h" 123 struct dl_list list; member 135 struct dl_list list; member 156 struct sta_info *sta_list; /* STA info list head */ 405 struct dl_list list; member 455 * When set, indicates that this interface is part of list of 464 struct ap_info *ap_list; /* AP info list head */
|
/kernel/linux/linux-5.10/drivers/acpi/ |
H A D | scan.c | 550 * acpi_device_del() under the ACPICA's namespace mutex and the list is used to 1011 * Use power resources only if the D0 list of them is populated, because in acpi_bus_get_power_flags() 1013 * in those cases the power resources list returned by it may be bogus. in acpi_bus_get_power_flags() 1018 * D3cold is supported if the D3hot list of power resources is in acpi_bus_get_power_flags() 1124 list_for_each_entry(hwid, &adev->pnp.ids, list) in acpi_device_is_battery() 1209 hid = list_first_entry(&device->pnp.ids, struct acpi_hardware_id, list); in acpi_device_hid() 1228 list_add_tail(&id->list, &pnp->ids); in acpi_add_id() 1362 list_for_each_entry_safe(id, tmp, &pnp->ids, list) { in acpi_free_pnp_ids() 1425 LIST_HEAD(list); in acpi_dma_get_range() 1452 ret = acpi_dev_get_dma_resources(adev, &list); in acpi_dma_get_range() [all...] |
/kernel/linux/linux-5.10/drivers/infiniband/ulp/rtrs/ |
H A D | rtrs-srv.c | 245 struct ib_sge list; in rdma_write_sg() local 263 rtrs_err(s, "Invalid RDMA-Write sg list length 0\n"); in rdma_write_sg() 332 list.addr = srv_mr->iu->dma_addr; in rdma_write_sg() 333 list.length = sizeof(*msg); in rdma_write_sg() 334 list.lkey = sess->s.dev->ib_pd->local_dma_lkey; in rdma_write_sg() 335 imm_wr.wr.sg_list = &list; in rdma_write_sg() 434 struct ib_sge list; in send_io_resp_imm() local 452 list.addr = srv_mr->iu->dma_addr; in send_io_resp_imm() 453 list.length = sizeof(*msg); in send_io_resp_imm() 454 list in send_io_resp_imm() [all...] |
/kernel/linux/linux-5.10/drivers/net/wireless/broadcom/brcm80211/brcmfmac/ |
H A D | chip.c | 7 #include <linux/list.h> 219 struct list_head list; member 516 list_add_tail(&core->list, &ci->cores); in brcmf_chip_add_core() 529 list_for_each_entry(core, &ci->cores, list) { in brcmf_chip_cores_check() 1061 cc = list_first_entry(&chip->cores, struct brcmf_core_priv, list); in brcmf_chip_setup() 1142 list_for_each_entry_safe(core, tmp, &chip->cores, list) { in brcmf_chip_detach() 1143 list_del(&core->list); in brcmf_chip_detach() 1155 list_for_each_entry(core, &chip->cores, list) { in brcmf_chip_get_d11core() 1170 list_for_each_entry(core, &chip->cores, list) in brcmf_chip_get_core() 1183 cc = list_first_entry(&chip->cores, struct brcmf_core_priv, list); in brcmf_chip_get_chipcommon() [all...] |