Home
last modified time | relevance | path

Searched refs:extras (Results 1 - 25 of 60) sorted by relevance

123

/third_party/node/deps/npm/node_modules/node-gyp/gyp/pylib/packaging/
H A Drequirements.py24 URL, and extras. Raises InvalidRequirement on a badly-formed requirement
41 self.extras: Set[str] = set(parsed.extras if parsed.extras else [])
51 if self.extras:
52 formatted_extras = ",".join(sorted(self.extras))
86 and self.extras == other.extras
H A D_parser.py55 extras: List[str]
69 requirement = WS? IDENTIFIER WS? extras WS? requirement_details
79 extras = _parse_extras(tokenizer)
85 return ParsedRequirement(name, url, extras, specifier, marker)
161 extras = (LEFT_BRACKET wsp* extras_list? wsp* RIGHT_BRACKET)?
169 around="extras",
172 extras = _parse_extras_list(tokenizer)
175 return extras
182 extras: List[str] = []
185 return extras
[all...]
/kernel/linux/linux-5.10/drivers/net/ethernet/freescale/dpaa2/
H A Ddpaa2-eth-debugfs.c18 struct dpaa2_eth_drv_stats *extras; in dpaa2_dbg_cpu_show() local
28 extras = per_cpu_ptr(priv->percpu_extras, i); in dpaa2_dbg_cpu_show()
33 extras->rx_sg_frames, in dpaa2_dbg_cpu_show()
36 extras->tx_conf_frames, in dpaa2_dbg_cpu_show()
37 extras->tx_sg_frames, in dpaa2_dbg_cpu_show()
38 extras->tx_converted_sg_frames, in dpaa2_dbg_cpu_show()
39 extras->tx_portal_busy); in dpaa2_dbg_cpu_show()
/kernel/linux/linux-6.6/drivers/net/ethernet/freescale/dpaa2/
H A Ddpaa2-eth-debugfs.c18 struct dpaa2_eth_drv_stats *extras; in dpaa2_dbg_cpu_show() local
28 extras = per_cpu_ptr(priv->percpu_extras, i); in dpaa2_dbg_cpu_show()
33 extras->rx_sg_frames, in dpaa2_dbg_cpu_show()
36 extras->tx_conf_frames, in dpaa2_dbg_cpu_show()
37 extras->tx_sg_frames, in dpaa2_dbg_cpu_show()
38 extras->tx_converted_sg_frames, in dpaa2_dbg_cpu_show()
39 extras->tx_portal_busy); in dpaa2_dbg_cpu_show()
/third_party/icu/icu4j/main/classes/collate/src/com/ibm/icu/impl/text/
H A DRbnfScannerProviderImpl.java75 public RbnfLenientScanner get(ULocale locale, String extras) { in get() argument
77 String key = locale.toString() + "/" + extras; in get()
84 result = createScanner(locale, extras); in get()
96 protected RbnfLenientScanner createScanner(ULocale locale, String extras) { in createScanner() argument
104 if (extras != null) { in createScanner()
105 String rules = collator.getRules() + extras; in createScanner()
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/impl/text/
H A DRbnfScannerProviderImpl.java77 public RbnfLenientScanner get(ULocale locale, String extras) { in get() argument
79 String key = locale.toString() + "/" + extras; in get()
86 result = createScanner(locale, extras); in get()
98 protected RbnfLenientScanner createScanner(ULocale locale, String extras) { in createScanner() argument
106 if (extras != null) { in createScanner()
107 String rules = collator.getRules() + extras; in createScanner()
/third_party/protobuf/csharp/src/Google.Protobuf/
H A DUnknownField.cs211 /// both the <paramref name="current"/> and <paramref name="extras"/> lists.
212 /// If <paramref name="current" /> is null and <paramref name="extras"/> is empty,
214 /// is null) or the elements of <paramref name="extras"/> are added to <paramref name="current" />.
216 private static List<T> AddAll<T>(List<T> current, IList<T> extras) in AddAll() argument
218 if (extras.Count == 0) in AddAll()
224 current = new List<T>(extras); in AddAll()
228 current.AddRange(extras); in AddAll()
/test/xts/acts/ability/ability_runtime/actsjsdataabilitytest/entry/src/ohosTest/js/DataAbility/
H A Ddata.js37 call(uri, method, arg, extras) {
39 return extras;
/third_party/gn/examples/ios/build/toolchain/apple/
H A Dswiftc.py19 def compile_module(module, sources, settings, extras, tmpdir):
101 ] + extra_args + extras + sources,
172 parsed, extras = parser.parse_known_args(args)
178 extras,
/kernel/linux/linux-5.10/drivers/net/xen-netback/
H A Drx.c247 struct xen_netif_extra_info extras[XEN_NETIF_EXTRA_TYPE_MAX - 1]; member
275 extra = &pkt->extras[XEN_NETIF_EXTRA_TYPE_GSO - 1]; in xenvif_rx_next_skb()
290 extra = &pkt->extras[XEN_NETIF_EXTRA_TYPE_XDP - 1]; in xenvif_rx_next_skb()
303 extra = &pkt->extras[XEN_NETIF_EXTRA_TYPE_HASH - 1]; in xenvif_rx_next_skb()
447 for (i = 0; i < ARRAY_SIZE(pkt->extras); i++) { in xenvif_rx_extra_slot()
448 if (pkt->extras[i].type) { in xenvif_rx_extra_slot()
449 *extra = pkt->extras[i]; in xenvif_rx_extra_slot()
454 pkt->extras[i].type = 0; in xenvif_rx_extra_slot()
H A Dnetback.c216 extra_count = 0; /* only the first frag can have extras */ in xenvif_tx_err()
725 struct xen_netif_extra_info *extras, in xenvif_get_extras()
752 memcpy(&extras[extra.type - 1], &extra, sizeof(extra)); in xenvif_get_extras()
926 struct xen_netif_extra_info extras[XEN_NETIF_EXTRA_TYPE_MAX-1]; in xenvif_tx_build_gops() local
963 memset(extras, 0, sizeof(extras)); in xenvif_tx_build_gops()
966 work_to_do = xenvif_get_extras(queue, extras, in xenvif_tx_build_gops()
974 if (extras[XEN_NETIF_EXTRA_TYPE_MCAST_ADD - 1].type) { in xenvif_tx_build_gops()
977 extra = &extras[XEN_NETIF_EXTRA_TYPE_MCAST_ADD - 1]; in xenvif_tx_build_gops()
987 if (extras[XEN_NETIF_EXTRA_TYPE_MCAST_DE in xenvif_tx_build_gops()
724 xenvif_get_extras(struct xenvif_queue *queue, struct xen_netif_extra_info *extras, unsigned int *extra_count, int work_to_do) xenvif_get_extras() argument
[all...]
/kernel/linux/linux-6.6/drivers/net/xen-netback/
H A Drx.c247 struct xen_netif_extra_info extras[XEN_NETIF_EXTRA_TYPE_MAX - 1]; member
275 extra = &pkt->extras[XEN_NETIF_EXTRA_TYPE_GSO - 1]; in xenvif_rx_next_skb()
290 extra = &pkt->extras[XEN_NETIF_EXTRA_TYPE_XDP - 1]; in xenvif_rx_next_skb()
303 extra = &pkt->extras[XEN_NETIF_EXTRA_TYPE_HASH - 1]; in xenvif_rx_next_skb()
447 for (i = 0; i < ARRAY_SIZE(pkt->extras); i++) { in xenvif_rx_extra_slot()
448 if (pkt->extras[i].type) { in xenvif_rx_extra_slot()
449 *extra = pkt->extras[i]; in xenvif_rx_extra_slot()
454 pkt->extras[i].type = 0; in xenvif_rx_extra_slot()
H A Dnetback.c216 extra_count = 0; /* only the first frag can have extras */ in xenvif_tx_err()
725 struct xen_netif_extra_info *extras, in xenvif_get_extras()
752 memcpy(&extras[extra.type - 1], &extra, sizeof(extra)); in xenvif_get_extras()
926 struct xen_netif_extra_info extras[XEN_NETIF_EXTRA_TYPE_MAX-1]; in xenvif_tx_build_gops() local
961 memset(extras, 0, sizeof(extras)); in xenvif_tx_build_gops()
964 work_to_do = xenvif_get_extras(queue, extras, in xenvif_tx_build_gops()
972 if (extras[XEN_NETIF_EXTRA_TYPE_MCAST_ADD - 1].type) { in xenvif_tx_build_gops()
975 extra = &extras[XEN_NETIF_EXTRA_TYPE_MCAST_ADD - 1]; in xenvif_tx_build_gops()
985 if (extras[XEN_NETIF_EXTRA_TYPE_MCAST_DE in xenvif_tx_build_gops()
724 xenvif_get_extras(struct xenvif_queue *queue, struct xen_netif_extra_info *extras, unsigned int *extra_count, int work_to_do) xenvif_get_extras() argument
[all...]
/third_party/skia/third_party/externals/angle2/src/tests/test_utils/runner/android/java/src/com/android/angle/test/
H A DAngleNativeTest.java78 Bundle extras = intent.getExtras(); in parseArgumentsFromIntent()
79 if (extras != null) in parseArgumentsFromIntent()
81 for (String s : extras.keySet()) in parseArgumentsFromIntent()
/third_party/python/PCbuild/
H A Dprepare_ssl.py30 def find_all_on_path(filename, extras=None):
37 if extras:
38 for p in extras:
/third_party/mesa3d/src/gallium/drivers/svga/
H A Dsvga_state_constants.c589 float extras[MAX_EXTRA_CONSTS][4]; in emit_consts_vgpu9() local
595 count = svga_get_extra_vs_constants(svga, (float *) extras); in emit_consts_vgpu9()
599 count = svga_get_extra_fs_constants(svga, (float *) extras); in emit_consts_vgpu9()
608 assert(count <= ARRAY_SIZE(extras)); in emit_consts_vgpu9()
612 (const float (*) [4])extras); in emit_consts_vgpu9()
899 float extras[MAX_EXTRA_CONSTS][4]; in emit_consts_vgpu10() local
915 extra_count = svga_get_extra_vs_constants(svga, (float *) extras); in emit_consts_vgpu10()
919 extra_count = svga_get_extra_fs_constants(svga, (float *) extras); in emit_consts_vgpu10()
923 extra_count = svga_get_extra_gs_constants(svga, (float *) extras); in emit_consts_vgpu10()
927 extra_count = svga_get_extra_tcs_constants(svga, (float *) extras); in emit_consts_vgpu10()
[all...]
/third_party/cJSON/tests/unity/examples/example_2/
H A Dmakefile49 $(UNITY_ROOT)/extras/fixture/src/unity_fixture.c \
57 INC_DIRS=-Isrc -I$(UNITY_ROOT)/src -I$(UNITY_ROOT)/extras/fixture/src
/third_party/unity/examples/example_2/
H A Dmakefile50 $(UNITY_ROOT)/extras/fixture/src/unity_fixture.c \
58 INC_DIRS=-Isrc -I$(UNITY_ROOT)/src -I$(UNITY_ROOT)/extras/fixture/src
/third_party/unity/test/
H A Drakefile_helper.rb206 src_files = Dir[File.join('..','extras','fixture','src','*.c')]
207 src_files += Dir[File.join('..','extras','fixture','test','*.c')]
208 src_files += Dir[File.join('..','extras','fixture','test','main','*.c')]
209 src_files += Dir[File.join('..','extras','memory','src','*.c')]
213 $extra_paths = [File.join('..','extras','fixture','src'), File.join('..','extras','memory','src')]
232 src_files = Dir[File.join('..','extras','memory','src','*.c')]
233 src_files += Dir[File.join('..','extras','memory','test','*.c')]
234 src_files += Dir[File.join('..','extras','memory','test','main','*.c')]
238 $extra_paths = [File.join('..','extras','memor
[all...]
/third_party/python/Tools/c-analyzer/cpython/
H A D_capi.py501 extras = [extra]
516 for extra in extras]
519 for extra in extras}
520 elif len(extras) == 1:
521 extra, = extras
529 # for extra in extras]
532 # for extra in extras:
/third_party/vixl/tools/
H A Dmake_instruction_doc_aarch64.pl36 my @extras = qw/bind debug dci dc32 dc64 place/;
89 ($i ~~ @extras) and $type = 'pseudo';
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
H A DRbnfLenientScannerProvider.java26 * @param extras extra collation rules
31 RbnfLenientScanner get(ULocale locale, String extras); in get() argument
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/text/
H A DRbnfLenientScannerProvider.java28 * @param extras extra collation rules
33 RbnfLenientScanner get(ULocale locale, String extras); in get() argument
/third_party/python/Lib/test/test_asyncio/
H A Dtest_ssl.py255 extras = {}
256 extras = dict(ssl_handshake_timeout=support.SHORT_TIMEOUT)
263 **extras)
320 extras = {}
321 extras = dict(ssl_handshake_timeout=support.SHORT_TIMEOUT)
327 **extras)
606 extras = {}
608 extras = dict(ssl_handshake_timeout=support.SHORT_TIMEOUT)
613 **extras))
1149 extras
[all...]
/third_party/skia/third_party/externals/freetype/src/tools/
H A Dglnames.py5200 extras = []
5206 extras.append( name )
5208 return extras
5337 # dump final glyph list (mac extras + sid standard names)

Completed in 17 milliseconds

123