Home
last modified time | relevance | path

Searched refs:reads (Results 1 – 25 of 984) sorted by relevance

12345678910>>...40

/external/deqp/android/cts/master/src/
Degl-manual-robustness.txt2 dEQP-EGL.functional.robustness.reset_context.shaders.out_of_bounds_non_robust.reset_status.reads.un…
3 dEQP-EGL.functional.robustness.reset_context.shaders.out_of_bounds_non_robust.reset_status.reads.un…
4 dEQP-EGL.functional.robustness.reset_context.shaders.out_of_bounds_non_robust.reset_status.reads.un…
5 dEQP-EGL.functional.robustness.reset_context.shaders.out_of_bounds_non_robust.reset_status.reads.un…
6 dEQP-EGL.functional.robustness.reset_context.shaders.out_of_bounds_non_robust.reset_status.reads.sh…
7 dEQP-EGL.functional.robustness.reset_context.shaders.out_of_bounds_non_robust.reset_status.reads.sh…
8 dEQP-EGL.functional.robustness.reset_context.shaders.out_of_bounds_non_robust.reset_status.reads.sh…
9 dEQP-EGL.functional.robustness.reset_context.shaders.out_of_bounds_non_robust.reset_status.reads.sh…
10 dEQP-EGL.functional.robustness.reset_context.shaders.out_of_bounds_non_robust.reset_status.reads.lo…
11 dEQP-EGL.functional.robustness.reset_context.shaders.out_of_bounds_non_robust.reset_status.reads.lo…
[all …]
/external/jackson-core/src/test/java/com/fasterxml/jackson/core/json/
DTestRootValues.java12 private final byte[][] reads; field in TestRootValues.Issue516InputStream
15 public Issue516InputStream(byte[][] reads) { in Issue516InputStream() argument
16 this.reads = reads; in Issue516InputStream()
27 if (currentRead >= reads.length) { in read()
30 byte[] bytes = reads[currentRead++]; in read()
41 private final char[][] reads; field in TestRootValues.Issue516Reader
44 public Issue516Reader(char[][] reads) { in Issue516Reader() argument
45 this.reads = reads; in Issue516Reader()
59 if (currentRead >= reads.length) { in read()
62 char[] bytes = reads[currentRead++]; in read()
/external/mesa3d/src/compiler/nir/
Dnir_lower_memory_model.c35 bool *reads, bool *writes) in get_intrinsic_info() argument
40 *reads = true; in get_intrinsic_info()
57 *reads = true; in get_intrinsic_info()
62 *reads = true; in get_intrinsic_info()
79 *reads = true; in get_intrinsic_info()
84 *reads = true; in get_intrinsic_info()
101 *reads = true; in get_intrinsic_info()
106 *reads = true; in get_intrinsic_info()
123 *reads = true; in get_intrinsic_info()
153 bool reads = false, writes = false; in visit_instr() local
[all …]
/external/skqp/src/compute/skc/
Dextent_ring.c49 return ring->size.pow2 - (ring->outer.writes - ring->outer.reads); in skc_extent_ring_rem()
55 return (ring->outer.writes - ring->outer.reads) == ring->size.pow2; in skc_extent_ring_is_full()
61 return ring->outer.writes - ring->inner.reads; in skc_extent_ring_wip_count()
114 snap->reads = ring->inner.reads; in skc_extent_ring_snap_alloc()
115 snap->writes = ring->inner.reads = ring->inner.writes; in skc_extent_ring_snap_alloc()
158 ring->outer.reads = curr->writes; in skc_extent_ring_snap_free()
187 return snap->writes - snap->reads; in skc_extent_ring_snap_count()
193 return snap->reads & snap->ring->size.mask; in skc_extent_ring_snap_from()
Dextent_ring.h42 skc_uint reads; // number of reads member
50 skc_uint reads; // number of reads member
111 skc_uint reads; // number of reads member
/external/python/cpython3/Lib/test/
Dtest_telnetlib.py92 def __init__(self, reads=()): argument
93 self.reads = list(reads) # Intentionally make a copy.
100 while self.reads and len(out) < size:
101 out += self.reads.pop(0)
103 self.reads.insert(0, out[size:])
152 def test_socket(reads): argument
154 return SocketStub(reads)
163 def test_telnet(reads=(), cls=TelnetAlike): argument
166 for x in reads:
168 with test_socket(reads):
[all …]
/external/tensorflow/tensorflow/python/framework/
Dauto_control_deps_utils.py100 reads = object_identity.ObjectIdentitySet()
105 reads.update(t for t in op.inputs if t.dtype == dtypes.resource)
106 return (reads, writes)
113 return (reads, writes)
121 reads.add(op.inputs[i])
125 return (reads, writes)
Dauto_control_deps.py534 reads, writes = utils.get_read_write_resource_inputs(op)
543 updated = _acd_resource_resolvers_registry.lookup(key)(op, reads, writes)
546 reads = reads.difference(writes)
551 for t in reads:
/external/skqp/src/compute/skc/platforms/cl_12/kernels/
Drasters_alloc.cl106 skc_uint reads = 0;
110reads = SKC_ATOMIC_ADD_GLOBAL_RELAXED_DEVICE(bp_atomics+SKC_BP_ATOMIC_OFFSET_READS,prefix); // rin…
114 reads = SKC_RASTERS_ALLOC_BROADCAST(reads,SKC_RASTERS_ALLOC_GROUP_SIZE - 1);
117 reads += prefix - extra_blocks;
127 // store reads
128 metas[SKC_RASTER_COHORT_META_OFFSET_READS + gid] = reads;
131 skc_block_id_t const block_id = bp_ids[reads & bp_mask];
/external/freetype/src/base/
Dftstream.c499 FT_Byte reads[2]; in FT_Stream_ReadUShort() local
512 if ( stream->read( stream, stream->pos, reads, 2L ) != 2L ) in FT_Stream_ReadUShort()
515 p = reads; in FT_Stream_ReadUShort()
544 FT_Byte reads[2]; in FT_Stream_ReadUShortLE() local
557 if ( stream->read( stream, stream->pos, reads, 2L ) != 2L ) in FT_Stream_ReadUShortLE()
560 p = reads; in FT_Stream_ReadUShortLE()
589 FT_Byte reads[3]; in FT_Stream_ReadUOffset() local
602 if (stream->read( stream, stream->pos, reads, 3L ) != 3L ) in FT_Stream_ReadUOffset()
605 p = reads; in FT_Stream_ReadUOffset()
634 FT_Byte reads[4]; in FT_Stream_ReadULong() local
[all …]
/external/llvm/lib/Target/AMDGPU/
DCaymanInstructions.td204 // 8-bit reads
209 // 16-bit reads
214 // 32-bit reads
219 // 64-bit reads
224 // 128-bit reads
229 // 8-bit reads
234 // 16-bit reads
239 // 32-bit reads
244 // 64-bit reads
249 // 128-bit reads
/external/tpm2-tss/.ci/
Ddocker.run53 ../configure --enable-tcti-partial-reads=$WITH_TCTI_PARTIAL --enable-tcti-device-async=$WITH_TCTI_A…
66 …scan-build --status-bugs ../configure --enable-tcti-partial-reads=$WITH_TCTI_PARTIAL --enable-tcti…
68 …../configure --enable-tcti-partial-reads=$WITH_TCTI_PARTIAL --enable-tcti-device-async=$WITH_TCTI_…
70 …../configure --with-sanitizer=undefined --enable-tcti-partial-reads=$WITH_TCTI_PARTIAL --enable-tc…
/external/bcc/src/cc/frontends/p4/test/testprograms/
Dbasic_routing.p4125 reads {
139 reads {
154 reads {
166 reads {
182 reads {
218 reads {
/external/skqp/src/compute/skc/platforms/cl_12/
Dcq_pool_cl.c107 pool->reads = 0; in skc_cq_pool_create()
166 pool->reads = 0; in skc_cq_pool_expand()
183 if (pool->reads == pool->writes) in skc_cq_pool_read()
186 cl_command_queue cq = pool->cq[pool->reads++ % pool->size]; in skc_cq_pool_read()
Draster_builder_cl_12.h127 …skc_uint reads[SKC_TTSK_SIZE_COHORT]; // starting ring reads -- [0] is … member
130 #define SKC_RASTER_COHORT_META_OFFSET_READS (SKC_OFFSET_OF(struct skc_raster_cohort_meta,reads) / s…
/external/llvm-project/llvm/test/Transforms/ThinLTOBitcodeWriter/
Dsplit-vfunc.ll16 i8* bitcast (i8 (i8*)* @reads to i8*)
72 ; M0: define i8 @reads
73 ; M1: declare void @reads()
74 define i8 @reads(i8* %this) {
/external/bcc/tools/
Dfiletop_example.txt4 filetop shows reads and writes by file, with process details. For example:
35 so this is reads and writes that may return entirely from the file system cache
53 Note that tracing VFS level reads and writes can be a frequent activity, and
138 File reads and writes by process
150 -s {reads,writes,rbytes,wbytes}, --sort {reads,writes,rbytes,wbytes}
Dbtrfsdist_example.txt4 btrfsdist traces btrfs reads, writes, opens, and fsyncs, and summarizes their
39 mode of 1,308 reads that took between 2 and 3 microseconds, and a slower
40 mode of over 7,312 reads that took between 256 and 511 microseconds. It's
154 tracing. Note that the rate also increased, with over 200k reads for the
/external/libwebsockets/minimal-examples/http-client/
DREADME.md6 minimal-http-client-multi|Connects to and reads https://warmcat.com, 8 times concurrently
8 minimal-http-client|Connects to and reads https://warmcat.com
/external/autotest/client/tests/disktest/
Dcontrol5 This test reads back all data written during the test, and if the data it reads
/external/llvm-project/polly/lib/External/ppcg/
Dppcg.c524 isl_union_map *reads; in compute_order_dependences() local
536 reads = isl_union_map_copy(ps->tagged_reads); in compute_order_dependences()
540 reads = isl_union_map_union(reads, unmatched); in compute_order_dependences()
543 access = isl_union_access_info_set_may_source(access, reads); in compute_order_dependences()
692 access = isl_union_access_info_from_sink(isl_union_map_copy(ps->reads)); in compute_flow_dep()
736 isl_union_map_copy(scop->reads)); in compute_dependences()
845 isl_union_map_free(ps->reads); in ppcg_scop_free()
905 ps->reads = pet_scop_get_may_reads(scop); in ppcg_scop_from_pet_scop()
923 if (!ps->context || !ps->domain || !ps->call || !ps->reads || in ppcg_scop_from_pet_scop()
/external/ltp/testcases/kernel/io/ltp-aiodio/
DREADME2 TESTS to check consistency between O_DIRECT reads/writes and buffered
3 reads/writes and truncate.
/external/python/cpython3/Doc/library/
Dpipes.rst69 The first letter can be either of ``'-'`` (which means the command reads its
70 standard input), ``'f'`` (which means the commands reads a given file on the
71 command line) or ``'.'`` (which means the commands reads no input, and hence
/external/llvm-project/mlir/lib/Dialect/Vector/
DVectorTransferOpTransforms.cpp95 llvm::SmallVector<Operation *, 8> reads; in deadStoreOp() local
121 reads.push_back(user); in deadStoreOp()
131 for (Operation *read : reads) { in deadStoreOp()
/external/tensorflow/tensorflow/python/eager/
Dgradient_input_output_exclusions.py116 self.reads = set()
124 self.reads.add(qn)
134 self.reads.add(qn)
228 if v in special_tracker.reads:

12345678910>>...40