Home
last modified time | relevance | path

Searched full:ds (Results 1 – 25 of 4887) sorted by relevance

12345678910>>...196

/aosp_15_r20/external/cronet/third_party/libc++/src/lib/abi/
H A Dpowerpc-ibm-aix.libcxxabi.v1.stable.exceptions.nonew.abilist1 …fined': True, 'name': '_ZNKSt12bad_any_cast4whatEv', 'storage_mapping_class': 'DS', 'type': 'FUNC'}
2 …experimental15fundamentals_v112bad_any_cast4whatEv', 'storage_mapping_class': 'DS', 'type': 'FUNC'}
3 …name': '_ZNKSt16nested_exception14rethrow_nestedEv', 'storage_mapping_class': 'DS', 'type': 'FUNC'}
4 …: True, 'name': '_ZNKSt18bad_variant_access4whatEv', 'storage_mapping_class': 'DS', 'type': 'FUNC'}
5 … True, 'name': '_ZNKSt19bad_optional_access4whatEv', 'storage_mapping_class': 'DS', 'type': 'FUNC'}
6 …e': '_ZNKSt3__110__time_put8__do_putEPcRS1_PK2tmcc', 'storage_mapping_class': 'DS', 'type': 'FUNC'}
7 …e': '_ZNKSt3__110__time_put8__do_putEPwRS1_PK2tmcc', 'storage_mapping_class': 'DS', 'type': 'FUNC'}
8 …': True, 'name': '_ZNKSt3__110error_code7messageEv', 'storage_mapping_class': 'DS', 'type': 'FUNC'}
9 …d': True, 'name': '_ZNKSt3__112bad_weak_ptr4whatEv', 'storage_mapping_class': 'DS', 'type': 'FUNC'}
10 …e': '_ZNKSt3__112ctype_bynameIcE10do_tolowerEPcPKc', 'storage_mapping_class': 'DS', 'type': 'FUNC'}
[all …]
H A Dpowerpc64-ibm-aix.libcxxabi.v1.stable.exceptions.nonew.abilist1 …fined': True, 'name': '_ZNKSt12bad_any_cast4whatEv', 'storage_mapping_class': 'DS', 'type': 'FUNC'}
2 …experimental15fundamentals_v112bad_any_cast4whatEv', 'storage_mapping_class': 'DS', 'type': 'FUNC'}
3 …name': '_ZNKSt16nested_exception14rethrow_nestedEv', 'storage_mapping_class': 'DS', 'type': 'FUNC'}
4 …: True, 'name': '_ZNKSt18bad_variant_access4whatEv', 'storage_mapping_class': 'DS', 'type': 'FUNC'}
5 … True, 'name': '_ZNKSt19bad_optional_access4whatEv', 'storage_mapping_class': 'DS', 'type': 'FUNC'}
6 …e': '_ZNKSt3__110__time_put8__do_putEPcRS1_PK2tmcc', 'storage_mapping_class': 'DS', 'type': 'FUNC'}
7 …e': '_ZNKSt3__110__time_put8__do_putEPwRS1_PK2tmcc', 'storage_mapping_class': 'DS', 'type': 'FUNC'}
8 …': True, 'name': '_ZNKSt3__110error_code7messageEv', 'storage_mapping_class': 'DS', 'type': 'FUNC'}
9 …d': True, 'name': '_ZNKSt3__112bad_weak_ptr4whatEv', 'storage_mapping_class': 'DS', 'type': 'FUNC'}
10 …e': '_ZNKSt3__112ctype_bynameIcE10do_tolowerEPcPKc', 'storage_mapping_class': 'DS', 'type': 'FUNC'}
[all …]
/aosp_15_r20/external/python/cpython2/Modules/
Derrnomodule.c68 #define inscode(d, ds, de, name, code, comment) _inscode(d, de, name, code) in initerrno() argument
76 inscode(d, ds, de, "ENODEV", ENODEV, "No such device"); in initerrno()
79 inscode(d, ds, de, "ENOCSI", ENOCSI, "No CSI structure available"); in initerrno()
82 inscode(d, ds, de, "EHOSTUNREACH", EHOSTUNREACH, "No route to host"); in initerrno()
85 inscode(d, ds, de, "EHOSTUNREACH", WSAEHOSTUNREACH, "No route to host"); in initerrno()
89 inscode(d, ds, de, "ENOMSG", ENOMSG, "No message of desired type"); in initerrno()
92 inscode(d, ds, de, "EUCLEAN", EUCLEAN, "Structure needs cleaning"); in initerrno()
95 inscode(d, ds, de, "EL2NSYNC", EL2NSYNC, "Level 2 not synchronized"); in initerrno()
98 inscode(d, ds, de, "EL2HLT", EL2HLT, "Level 2 halted"); in initerrno()
101 inscode(d, ds, de, "ENODATA", ENODATA, "No data available"); in initerrno()
[all …]
/aosp_15_r20/external/tensorflow/tensorflow/python/data/experimental/kernel_tests/service/
H A Ddynamic_sharding_test.py47 ds = dataset_ops.Dataset.range(num_elements)
48 ds = self._make_dynamic_sharding_dataset(ds, cluster)
50 ds, list(range(num_elements)), assert_items_equal=True)
56 ds = dataset_ops.Dataset.from_tensor_slices(vals)
57 ds = self._make_dynamic_sharding_dataset(ds, cluster)
58 self.assertDatasetProduces(ds, vals, assert_items_equal=True)
64 ds = dataset_ops.Dataset.from_tensor_slices(elements)
65 ds = ds.interleave(lambda x: dataset_ops.Dataset.from_tensor_slices([x]))
66 ds = self._make_dynamic_sharding_dataset(ds, cluster)
67 self.assertDatasetProduces(ds, elements, assert_items_equal=True)
[all …]
H A Ddata_service_ops_test.py74 ds = self.make_distributed_range_dataset(
78 self.assertDatasetProduces(ds, list(range(num_elements)))
99 ds = dataset_ops.Dataset.from_tensors(element)
100 ds = self.make_distributed_dataset(
101 ds, cluster, data_transfer_protocol=self._get_data_transfer_protocol())
102 results = [sparse_ops.sparse_tensor_to_dense(elem) for elem in ds]
110 ds = dataset_ops.Dataset.from_tensor_slices([1, 5, 3, 2, 8])
111 ds = ds.map(math_ops.range)
112 ds = ds.apply(batching.dense_to_ragged_batch(2))
113 ds = self.make_distributed_dataset(
[all …]
/aosp_15_r20/tools/apksig/src/test/java/com/android/apksig/util/
H A DDataSourceTestBase.java50 DataSource ds = c.getDataSource(); in testSize() local
51 assertEquals(10, ds.size()); in testSize()
58 DataSource ds = c.getDataSource(); in testSlice() local
59 assertSliceEquals("123", ds, 5, 3); in testSlice()
60 DataSource slice = ds.slice(3, 5); in testSlice()
64 assertSliceEquals("", ds, 0, 0); in testSlice()
65 assertSliceEquals("", ds, 1, 0); in testSlice()
66 assertSliceEquals("", ds, ds.size() - 2, 0); in testSlice()
67 assertSliceEquals("", ds, ds.size() - 1, 0); in testSlice()
68 assertSliceEquals("", ds, ds.size(), 0); in testSlice()
[all …]
/aosp_15_r20/external/coreboot/src/soc/qualcomm/ipq40xx/
H A Dspi.c75 static int check_qup_state_valid(struct ipq_spi_slave *ds) in check_qup_state_valid() argument
77 return check_bit_state(ds->regs->qup_state, QUP_STATE_VALID_MASK, in check_qup_state_valid()
84 static int config_spi_state(struct ipq_spi_slave *ds, unsigned int state) in config_spi_state() argument
89 ret = check_qup_state_valid(ds); in config_spi_state()
96 val = ((read32(ds->regs->qup_state) & ~QUP_STATE_MASK) in config_spi_state()
98 write32(ds->regs->qup_state, val); in config_spi_state()
99 ret = check_qup_state_valid(ds); in config_spi_state()
103 val = ((read32(ds->regs->qup_state) & ~QUP_STATE_MASK) in config_spi_state()
105 write32(ds->regs->qup_state, val); in config_spi_state()
106 ret = check_qup_state_valid(ds); in config_spi_state()
[all …]
/aosp_15_r20/external/coreboot/src/soc/qualcomm/qcs405/
H A Dspi.c101 static int check_qup_state_valid(struct qcs_spi_slave *ds) in check_qup_state_valid() argument
103 return check_bit_state(ds->regs->qup_state, QUP_STATE_VALID_MASK, in check_qup_state_valid()
110 static int config_spi_state(struct qcs_spi_slave *ds, unsigned int state) in config_spi_state() argument
115 ret = check_qup_state_valid(ds); in config_spi_state()
122 val = ((read32(ds->regs->qup_state) & ~QUP_STATE_MASK) in config_spi_state()
124 write32(ds->regs->qup_state, val); in config_spi_state()
125 ret = check_qup_state_valid(ds); in config_spi_state()
129 val = ((read32(ds->regs->qup_state) & ~QUP_STATE_MASK) in config_spi_state()
131 write32(ds->regs->qup_state, val); in config_spi_state()
132 ret = check_qup_state_valid(ds); in config_spi_state()
[all …]
/aosp_15_r20/external/icu/icu4c/source/common/
H A Ducol_swp.cpp34 ucol_looksLikeCollationBinary(const UDataSwapper *ds, in ucol_looksLikeCollationBinary() argument
36 if(ds==nullptr || inData==nullptr || length<-1) { in ucol_looksLikeCollationBinary()
42 (void)udata_swapDataHeader(ds, inData, -1, nullptr, &errorCode); in ucol_looksLikeCollationBinary()
65 header.size=udata_readInt32(ds, inHeader->size); in ucol_looksLikeCollationBinary()
66 } else if((length<(42*4) || length<(header.size=udata_readInt32(ds, inHeader->size)))) { in ucol_looksLikeCollationBinary()
70 header.magic=ds->readUInt32(inHeader->magic); in ucol_looksLikeCollationBinary()
79 if(inHeader->isBigEndian!=ds->inIsBigEndian || inHeader->charSetFamily!=ds->inCharset) { in ucol_looksLikeCollationBinary()
90 swapFormatVersion3(const UDataSwapper *ds, in swapFormatVersion3() argument
106 if(ds==nullptr || inData==nullptr || length<-1 || (length>0 && outData==nullptr)) { in swapFormatVersion3()
125 header.size=udata_readInt32(ds, inHeader->size); in swapFormatVersion3()
[all …]
/aosp_15_r20/external/cronet/third_party/icu/source/common/
H A Ducol_swp.cpp34 ucol_looksLikeCollationBinary(const UDataSwapper *ds, in ucol_looksLikeCollationBinary() argument
36 if(ds==nullptr || inData==nullptr || length<-1) { in ucol_looksLikeCollationBinary()
42 (void)udata_swapDataHeader(ds, inData, -1, nullptr, &errorCode); in ucol_looksLikeCollationBinary()
65 header.size=udata_readInt32(ds, inHeader->size); in ucol_looksLikeCollationBinary()
66 } else if((length<(42*4) || length<(header.size=udata_readInt32(ds, inHeader->size)))) { in ucol_looksLikeCollationBinary()
70 header.magic=ds->readUInt32(inHeader->magic); in ucol_looksLikeCollationBinary()
79 if(inHeader->isBigEndian!=ds->inIsBigEndian || inHeader->charSetFamily!=ds->inCharset) { in ucol_looksLikeCollationBinary()
90 swapFormatVersion3(const UDataSwapper *ds, in swapFormatVersion3() argument
106 if(ds==nullptr || inData==nullptr || length<-1 || (length>0 && outData==nullptr)) { in swapFormatVersion3()
125 header.size=udata_readInt32(ds, inHeader->size); in swapFormatVersion3()
[all …]
/aosp_15_r20/external/coreboot/src/soc/qualcomm/ipq806x/
H A Dspi.c162 static int check_qup_state_valid(struct ipq_spi_slave *ds) in check_qup_state_valid() argument
164 return check_bit_state(ds->regs->qup_state, QUP_STATE_VALID_BIT, in check_qup_state_valid()
171 static int config_spi_state(struct ipq_spi_slave *ds, unsigned int state) in config_spi_state() argument
177 ret = check_qup_state_valid(ds); in config_spi_state()
201 val = (readl_i(ds->regs->qup_state) & ~QUP_STATE_MASK) in config_spi_state()
203 writel_i(val, ds->regs->qup_state); in config_spi_state()
204 return check_qup_state_valid(ds); in config_spi_state()
210 static void spi_set_mode(struct ipq_spi_slave *ds, unsigned int mode) in spi_set_mode() argument
239 val = readl_i(ds->regs->spi_config); in spi_set_mode()
241 writel_i(val, ds->regs->spi_config); in spi_set_mode()
[all …]
/aosp_15_r20/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/net/
H A DDatagramSocketTest.java105 try (DatagramSocket ds = new DatagramSocket()) { in test_Constructor() argument
108 boolean multicastAllEnabled = Libcore.os.getsockoptInt(ds.getFileDescriptor$(), in test_Constructor()
118 DatagramSocket ds = new DatagramSocket(0); in test_ConstructorI() local
119 ds.close(); in test_ConstructorI()
126 try (DatagramSocket ds = new DatagramSocket(0, InetAddress.getLocalHost())) { in test_ConstructorILjava_net_InetAddress() argument
127 assertTrue("Created socket with incorrect port", ds.getLocalPort() != 0); in test_ConstructorILjava_net_InetAddress()
129 .getLocalHost(), ds.getLocalAddress()); in test_ConstructorILjava_net_InetAddress()
137 DatagramSocket ds = new DatagramSocket(0); in test_close() local
140 ds.close(); in test_close()
142 ds.send(dp); in test_close()
[all …]
/aosp_15_r20/external/mesa3d/src/gallium/drivers/svga/
H A Dsvga_pipe_depthstencil.c62 struct svga_depth_stencil_state *ds) in define_depth_stencil_state_object() argument
66 ds->id = util_bitmask_add(svga->ds_object_id_bm); in define_depth_stencil_state_object()
73 /* Note: we use the ds->stencil[0].enabled value for both the front in define_depth_stencil_state_object()
79 ds->id, in define_depth_stencil_state_object()
81 ds->zenable, in define_depth_stencil_state_object()
82 ds->zwriteenable, in define_depth_stencil_state_object()
83 ds->zfunc, in define_depth_stencil_state_object()
85 ds->stencil[0].enabled, /*f|b*/ in define_depth_stencil_state_object()
86 ds->stencil[0].enabled, /*f*/ in define_depth_stencil_state_object()
87 ds->stencil[0].enabled, /*b*/ in define_depth_stencil_state_object()
[all …]
/aosp_15_r20/external/bc/scripts/
H A Dministat.c154 struct dataset *ds; in NewSet() local
156 ds = calloc(1, sizeof *ds); in NewSet()
157 assert(ds != NULL); in NewSet()
158 ds->lpoints = 100000; in NewSet()
159 ds->points = calloc(sizeof *ds->points, ds->lpoints); in NewSet()
160 assert(ds->points != NULL); in NewSet()
161 ds->syy = NAN; in NewSet()
162 return(ds); in NewSet()
166 AddPoint(struct dataset *ds, double a) in AddPoint() argument
170 if (ds->n >= ds->lpoints) { in AddPoint()
[all …]
/aosp_15_r20/external/perfetto/ui/src/plugins/dev.perfetto.RecordTrace/recordingV2/
H A Drecording_config_utils.ts160 const ds = new TraceConfig.DataSource(); constant
161 ds.config = new DataSourceConfig();
162 ds.config.targetBuffer = 1;
163 ds.config.name = 'android.packages_list';
164 protoCfg.dataSources.push(ds);
168 const ds = new TraceConfig.DataSource(); constant
169 ds.config = new DataSourceConfig();
170 ds.config.targetBuffer = 1;
171 ds.config.name = 'linux.system_info';
172 protoCfg.dataSources.push(ds);
[all …]
/aosp_15_r20/external/coreboot/src/ec/starlabs/merlin/variants/cezanne/
H A Demem.asl88 UCSV, 16, // UCSI DS Version
89 UCSD, 16, // UCSI DS Reserved
90 CCI0, 8, // UCSI DS CCI 0
91 CCI1, 8, // UCSI DS CCI 1
92 CCI2, 8, // UCSI DS CCI 2
93 CCI3, 8, // UCSI DS CCI 3
94 CTL0, 8, // UCSI DS Control 0
95 CTL1, 8, // UCSI DS Control 0
96 CTL2, 8, // UCSI DS Control 0
97 CTL3, 8, // UCSI DS Control 0
[all …]
/aosp_15_r20/external/tensorflow/tensorflow/python/autograph/tests/
H A Ddatasets_test.py22 def dataset_no_vars_loop(ds): argument
23 for e in ds:
27 def iterator_no_vars_loop(ds): argument
28 for e in iter(ds):
32 def dataset_single_var_loop(ds): argument
34 for e in ds:
39 def iterator_single_var_loop(ds): argument
41 for e in iter(ds):
46 def dataset_two_vars_loop(ds): argument
49 for e in ds:
[all …]
/aosp_15_r20/external/lmfit/man/
H A Dlmfit.727 . ds -- \(*W-
28 . ds PI pi
29 . if (\n(.H=4u)&(1m=24u) .ds -- \(*W\h'-12u'\(*W\h'-12u'-\" diablo 10 pitch
30 . if (\n(.H=4u)&(1m=20u) .ds -- \(*W\h'-12u'\(*W\h'-8u'-\" diablo 12 pitch
31 . ds L" ""
32 . ds R" ""
33 . ds C` ""
34 . ds C' ""
37 . ds -- \|\(em\|
38 . ds PI \(*p
[all …]
/aosp_15_r20/external/mesa3d/src/intel/vulkan/
H A Danv_utrace.c28 #include "ds/intel_tracepoints.h"
74 if (!u_trace_should_process(&device->ds.trace_context)) in command_buffers_count_utraces()
93 container_of(utctx, struct anv_device, ds.trace_context); in anv_utrace_delete_submit()
95 container_of(submit_data, struct anv_utrace_submit, ds); in anv_utrace_delete_submit()
97 intel_ds_flush_data_fini(&submit->ds); in anv_utrace_delete_submit()
115 container_of(utctx, struct anv_device, ds.trace_context); in anv_device_utrace_emit_gfx_copy_buffer()
134 container_of(utctx, struct anv_device, ds.trace_context); in anv_device_utrace_emit_cs_copy_buffer()
187 intel_ds_flush_data_init(&submit->ds, &queue->ds, queue->ds.submission_id); in anv_device_utrace_flush_cmd_buffers()
204 trace_intel_begin_trace_copy_cb(&submit->ds.trace, batch); in anv_device_utrace_flush_cmd_buffers()
211 intel_ds_queue_flush_data(&queue->ds, &cmd_buffers[i]->trace, in anv_device_utrace_flush_cmd_buffers()
[all …]
/aosp_15_r20/external/coreboot/src/ec/starlabs/merlin/variants/kbl/
H A Demem.asl95 MGI0, 8, // UCSI DS MGI 0
96 MGI1, 8, // UCSI DS MGI 1
97 MGI2, 8, // UCSI DS MGI 2
98 MGI3, 8, // UCSI DS MGI 3
99 MGI4, 8, // UCSI DS MGI 4
100 MGI5, 8, // UCSI DS MGI 5
101 MGI6, 8, // UCSI DS MGI 6
102 MGI7, 8, // UCSI DS MGI 7
103 MGI8, 8, // UCSI DS MGI 8
104 MGI9, 8, // UCSI DS MGI 9
[all …]
/aosp_15_r20/external/coreboot/src/ec/starlabs/merlin/variants/cezanne-desktop/
H A Demem.asl75 MGO0, 8, // UCSI DS MGO 0
76 MGO1, 8, // UCSI DS MGO 1
77 MGO2, 8, // UCSI DS MGO 2
78 MGO3, 8, // UCSI DS MGO 3
79 MGO4, 8, // UCSI DS MGO 4
80 MGO5, 8, // UCSI DS MGO 5
81 MGO6, 8, // UCSI DS MGO 6
82 MGO7, 8, // UCSI DS MGO 7
83 MGO8, 8, // UCSI DS MGO 8
84 MGO9, 8, // UCSI DS MGO 9
[all …]
/aosp_15_r20/prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/share/man/man7/
Dfsf-funding.727 . ds -- \(*W-
28 . ds PI pi
29 . if (\n(.H=4u)&(1m=24u) .ds -- \(*W\h'-12u'\(*W\h'-12u'-\" diablo 10 pitch
30 . if (\n(.H=4u)&(1m=20u) .ds -- \(*W\h'-12u'\(*W\h'-8u'-\" diablo 12 pitch
31 . ds L" ""
32 . ds R" ""
33 . ds C` ""
34 . ds C' ""
37 . ds -- \|\(em\|
38 . ds PI \(*p
[all …]
/aosp_15_r20/external/coreboot/src/ec/starlabs/merlin/variants/glk/
H A Demem.asl106 UCSV, 16, // UCSI DS Version
107 UCSD, 16, // UCSI DS Reserved
108 CCI0, 8, // UCSI DS CCI 0
109 CCI1, 8, // UCSI DS CCI 1
110 CCI2, 8, // UCSI DS CCI 2
111 CCI3, 8, // UCSI DS CCI 3
112 CTL0, 8, // UCSI DS Control 0
113 CTL1, 8, // UCSI DS Control 0
114 CTL2, 8, // UCSI DS Control 0
115 CTL3, 8, // UCSI DS Control 0
[all …]
/aosp_15_r20/external/coreboot/src/ec/starlabs/merlin/variants/glkr/
H A Demem.asl109 UCSV, 16, // UCSI DS Version
110 UCSD, 16, // UCSI DS Reserved
111 CCI0, 8, // UCSI DS CCI 0
112 CCI1, 8, // UCSI DS CCI 1
113 CCI2, 8, // UCSI DS CCI 2
114 CCI3, 8, // UCSI DS CCI 3
115 CTL0, 8, // UCSI DS Control 0
116 CTL1, 8, // UCSI DS Control 0
117 CTL2, 8, // UCSI DS Control 0
118 CTL3, 8, // UCSI DS Control 0
[all …]
/aosp_15_r20/external/coreboot/src/ec/starlabs/merlin/variants/apl/
H A Demem.asl106 MGI0, 8, // UCSI DS MGI 0
107 MGI1, 8, // UCSI DS MGI 1
108 MGI2, 8, // UCSI DS MGI 2
109 MGI3, 8, // UCSI DS MGI 3
110 MGI4, 8, // UCSI DS MGI 4
111 MGI5, 8, // UCSI DS MGI 5
112 MGI6, 8, // UCSI DS MGI 6
113 MGI7, 8, // UCSI DS MGI 7
114 MGI8, 8, // UCSI DS MGI 8
115 MGI9, 8, // UCSI DS MGI 9
[all …]

12345678910>>...196