/third_party/lz4/ossfuzz/ |
D | fuzz_data_producer.c | 9 FUZZ_dataProducer_t* const producer = malloc(sizeof(FUZZ_dataProducer_t)); in FUZZ_dataProducer_create() local 11 FUZZ_ASSERT(producer != NULL); in FUZZ_dataProducer_create() 13 producer->data = data; in FUZZ_dataProducer_create() 14 producer->size = size; in FUZZ_dataProducer_create() 15 return producer; in FUZZ_dataProducer_create() 18 void FUZZ_dataProducer_free(FUZZ_dataProducer_t *producer) { free(producer); } in FUZZ_dataProducer_free() argument 20 uint32_t FUZZ_dataProducer_retrieve32(FUZZ_dataProducer_t *producer) { in FUZZ_dataProducer_retrieve32() argument 21 const uint8_t* data = producer->data; in FUZZ_dataProducer_retrieve32() 22 const size_t size = producer->size; in FUZZ_dataProducer_retrieve32() 26 producer->size -= 1; in FUZZ_dataProducer_retrieve32() [all …]
|
D | fuzz_data_producer.h | 17 void FUZZ_dataProducer_free(FUZZ_dataProducer_t *producer); 20 uint32_t FUZZ_dataProducer_retrieve32(FUZZ_dataProducer_t *producer); 26 uint32_t FUZZ_dataProducer_range32(FUZZ_dataProducer_t *producer, uint32_t min, 30 LZ4F_preferences_t FUZZ_dataProducer_preferences(FUZZ_dataProducer_t* producer); 33 LZ4F_frameInfo_t FUZZ_dataProducer_frameInfo(FUZZ_dataProducer_t* producer); 36 size_t FUZZ_dataProducer_remainingBytes(FUZZ_dataProducer_t *producer);
|
D | round_trip_frame_uncompressed_fuzzer.c | 44 FUZZ_dataProducer_t *producer, LZ4F_preferences_t const prefs) { in compress_round_trip() argument 48 size_t const uncompressedOffsetSeed = FUZZ_dataProducer_retrieve32(producer); in compress_round_trip() 49 size_t const uncompressedEndOffsetSeed = FUZZ_dataProducer_retrieve32(producer); in compress_round_trip() 50 size = FUZZ_dataProducer_remainingBytes(producer); in compress_round_trip() 119 FUZZ_dataProducer_free(producer); in compress_round_trip() 124 FUZZ_dataProducer_t *producer = FUZZ_dataProducer_create(data, size); in compress_independent_block_mode() local 125 LZ4F_preferences_t prefs = FUZZ_dataProducer_preferences(producer); in compress_independent_block_mode() 127 compress_round_trip(data, size, producer, prefs); in compress_independent_block_mode()
|
D | round_trip_frame_fuzzer.c | 19 FUZZ_dataProducer_t* producer = FUZZ_dataProducer_create(data, size); in LLVMFuzzerTestOneInput() local 20 LZ4F_preferences_t const prefs = FUZZ_dataProducer_preferences(producer); in LLVMFuzzerTestOneInput() 21 size = FUZZ_dataProducer_remainingBytes(producer); in LLVMFuzzerTestOneInput() 25 char* const rt = (char*)malloc(FUZZ_dataProducer_remainingBytes(producer)); in LLVMFuzzerTestOneInput() 40 FUZZ_dataProducer_free(producer); in LLVMFuzzerTestOneInput()
|
D | compress_frame_fuzzer.c | 20 FUZZ_dataProducer_t *producer = FUZZ_dataProducer_create(data, size); in LLVMFuzzerTestOneInput() local 21 LZ4F_preferences_t const prefs = FUZZ_dataProducer_preferences(producer); in LLVMFuzzerTestOneInput() 22 size_t const dstCapacitySeed = FUZZ_dataProducer_retrieve32(producer); in LLVMFuzzerTestOneInput() 23 size = FUZZ_dataProducer_remainingBytes(producer); in LLVMFuzzerTestOneInput() 45 FUZZ_dataProducer_free(producer); in LLVMFuzzerTestOneInput()
|
D | compress_hc_fuzzer.c | 19 FUZZ_dataProducer_t *producer = FUZZ_dataProducer_create(data, size); in LLVMFuzzerTestOneInput() local 20 size_t const dstCapacitySeed = FUZZ_dataProducer_retrieve32(producer); in LLVMFuzzerTestOneInput() 21 size_t const levelSeed = FUZZ_dataProducer_retrieve32(producer); in LLVMFuzzerTestOneInput() 22 size = FUZZ_dataProducer_remainingBytes(producer); in LLVMFuzzerTestOneInput() 61 FUZZ_dataProducer_free(producer); in LLVMFuzzerTestOneInput()
|
D | decompress_frame_fuzzer.c | 33 FUZZ_dataProducer_t *producer = FUZZ_dataProducer_create(data, size); in LLVMFuzzerTestOneInput() local 34 size_t const dstCapacitySeed = FUZZ_dataProducer_retrieve32(producer); in LLVMFuzzerTestOneInput() 35 size_t const dictSizeSeed = FUZZ_dataProducer_retrieve32(producer); in LLVMFuzzerTestOneInput() 36 size = FUZZ_dataProducer_remainingBytes(producer); in LLVMFuzzerTestOneInput() 72 FUZZ_dataProducer_free(producer); in LLVMFuzzerTestOneInput()
|
D | round_trip_hc_fuzzer.c | 18 FUZZ_dataProducer_t *producer = FUZZ_dataProducer_create(data, size); in LLVMFuzzerTestOneInput() local 19 int const level = FUZZ_dataProducer_range32(producer, in LLVMFuzzerTestOneInput() 21 size = FUZZ_dataProducer_remainingBytes(producer); in LLVMFuzzerTestOneInput() 41 FUZZ_dataProducer_free(producer); in LLVMFuzzerTestOneInput()
|
D | compress_fuzzer.c | 18 FUZZ_dataProducer_t *producer = FUZZ_dataProducer_create(data, size); in LLVMFuzzerTestOneInput() local 19 size_t const dstCapacitySeed = FUZZ_dataProducer_retrieve32(producer); in LLVMFuzzerTestOneInput() 20 size = FUZZ_dataProducer_remainingBytes(producer); in LLVMFuzzerTestOneInput() 55 FUZZ_dataProducer_free(producer); in LLVMFuzzerTestOneInput()
|
D | decompress_fuzzer.c | 17 FUZZ_dataProducer_t *producer = FUZZ_dataProducer_create(data, size); in LLVMFuzzerTestOneInput() local 18 size_t const dstCapacitySeed = FUZZ_dataProducer_retrieve32(producer); in LLVMFuzzerTestOneInput() 19 size = FUZZ_dataProducer_remainingBytes(producer); in LLVMFuzzerTestOneInput() 75 FUZZ_dataProducer_free(producer); in LLVMFuzzerTestOneInput()
|
/third_party/node/deps/openssl/openssl/util/ |
D | add-depends.pl | 51 my $producer = shift @ARGV; 52 die "Producer not given\n" unless $producer; 103 print STDERR "DEBUG[$producer]: ignoring $objfile <- $line\n" 197 print STDERR "DEBUG[$producer]: ignoring $objfile <- $line\n" 252 print STDERR "DEBUG[$producer]: ignoring $objfile <- $tail\n" 301 print STDERR "DEBUG[$producer]: ignoring $objfile <- $tail\n" 316 die "Producer unrecognised: $producer\n" 317 unless exists $procedures{$producer} && exists $continuations{$producer}; 319 my $procedure = $procedures{$producer}; 320 my $continuation = $continuations{$producer};
|
/third_party/openssl/util/ |
D | add-depends.pl | 51 my $producer = shift @ARGV; 52 die "Producer not given\n" unless $producer; 103 print STDERR "DEBUG[$producer]: ignoring $objfile <- $line\n" 197 print STDERR "DEBUG[$producer]: ignoring $objfile <- $line\n" 252 print STDERR "DEBUG[$producer]: ignoring $objfile <- $tail\n" 301 print STDERR "DEBUG[$producer]: ignoring $objfile <- $tail\n" 316 die "Producer unrecognised: $producer\n" 317 unless exists $procedures{$producer} && exists $continuations{$producer}; 319 my $procedure = $procedures{$producer}; 320 my $continuation = $continuations{$producer};
|
/third_party/EGL/extensions/KHR/ |
D | EGL_KHR_stream.txt | 63 Each EGLStream is associated with a "producer" that generates 64 image frames and inserts them into the EGLStream. The producer is 78 These APIs may be connected directly to an EGLStream as a producer 79 or consumer. Once a stream oriented producer is "connected" to an 92 oriented producer to insert an image frame or to cause a rendering 96 producer has a new image frame it empties the mailbox (discards 103 Timing is mainly controlled by the producer. The consumer 104 operated with a fixed latency that it indicates to the producer 108 indicated by EGL_CONSUMER_LATENCY_USEC_KHR. The producer controls 115 This extension does not cover the details of how a producer or a [all …]
|
D | EGL_KHR_stream_fifo.txt | 62 consumer to consume the frame that the producer most recently 64 producer creates them then it gets the most recent one over and 65 over until a new one is inserted. If the producer inserts frames 67 are discarded. The producer is never stalled. 70 In fifo mode no images are discarded. If the producer attempts to 71 insert a frame and the fifo is full then the producer will stall 80 producer (with help from the consumer in the form of the 85 an associated timestamp set by the producer. The consumer can use 176 number of internal buffers used by the producer. The producer may 194 to the time that the producer inserted the image frame into the [all …]
|
/third_party/skia/third_party/externals/egl-registry/extensions/KHR/ |
D | EGL_KHR_stream.txt | 63 Each EGLStream is associated with a "producer" that generates 64 image frames and inserts them into the EGLStream. The producer is 78 These APIs may be connected directly to an EGLStream as a producer 79 or consumer. Once a stream oriented producer is "connected" to an 92 oriented producer to insert an image frame or to cause a rendering 96 producer has a new image frame it empties the mailbox (discards 103 Timing is mainly controlled by the producer. The consumer 104 operated with a fixed latency that it indicates to the producer 108 indicated by EGL_CONSUMER_LATENCY_USEC_KHR. The producer controls 115 This extension does not cover the details of how a producer or a [all …]
|
D | EGL_KHR_stream_fifo.txt | 62 consumer to consume the frame that the producer most recently 64 producer creates them then it gets the most recent one over and 65 over until a new one is inserted. If the producer inserts frames 67 are discarded. The producer is never stalled. 70 In fifo mode no images are discarded. If the producer attempts to 71 insert a frame and the fifo is full then the producer will stall 80 producer (with help from the consumer in the form of the 85 an associated timestamp set by the producer. The consumer can use 176 number of internal buffers used by the producer. The producer may 194 to the time that the producer inserted the image frame into the [all …]
|
/third_party/mesa3d/src/compiler/nir/ |
D | nir_linking_helpers.c | 188 nir_remove_unused_varyings(nir_shader *producer, nir_shader *consumer) in nir_remove_unused_varyings() argument 190 assert(producer->info.stage != MESA_SHADER_FRAGMENT); in nir_remove_unused_varyings() 196 nir_foreach_shader_out_variable(var, producer) { in nir_remove_unused_varyings() 203 get_variable_io_mask(var, producer->info.stage); in nir_remove_unused_varyings() 206 get_variable_io_mask(var, producer->info.stage); in nir_remove_unused_varyings() 230 if (producer->info.stage == MESA_SHADER_TESS_CTRL) in nir_remove_unused_varyings() 231 tcs_add_output_reads(producer, read, patches_read); in nir_remove_unused_varyings() 234 progress = nir_remove_unused_io_vars(producer, nir_var_shader_out, read, in nir_remove_unused_varyings() 536 gather_varying_component_info(nir_shader *producer, nir_shader *consumer, in gather_varying_component_info() argument 547 nir_foreach_shader_out_variable(var, producer) { in gather_varying_component_info() [all …]
|
/third_party/EGL/extensions/NV/ |
D | EGL_NV_stream_origin.txt | 48 both the connected consumer and producer and appropriate handling is 58 Similarly, producer applications might need to adjust how rendering 64 the producer or consumer endpoints so that clients are not required 118 stream images surface as agreed upon by consumer and producer. 135 and a producer are connected to the stream. Querying it before that 143 stream images surface as agreed upon by consumer and producer. 160 and a producer are connected to the stream. Querying it before that 184 and a producer are connected to the stream. Querying it before that 206 and a producer are connected to the stream. Querying it before that 213 indicates whether the producer endpoint will handle frame orientation [all …]
|
D | EGL_NV_stream_fifo_synchronous.txt | 51 inserted into a stream by the producer and become available to the 61 producer. If the application acquires and uses an image from one 62 producer which requires a long time to finish rendering, it will be 65 an older frame from the slower producer until the new one is ready. 67 This could be handled with existing interfaces by the producer 69 stream. However this requires the producer to have knowledge of the 71 the producer's pipeline which will slow it even further. 74 availability of new frames inserted by the producer until they are 75 ready to be used. The producer proceeds as normal, but the frames 114 inserted by the producer become available to the consumer [all …]
|
/third_party/mesa3d/src/compiler/glsl/ |
D | gl_nir_link_varyings.c | 2149 remove_unused_io_vars(nir_shader *producer, nir_shader *consumer, in remove_unused_io_vars() argument 2157 nir_shader *shader = mode == nir_var_shader_out ? producer : consumer; in remove_unused_io_vars() 2228 _mesa_shader_stage_to_string(producer->info.stage)); in remove_unused_io_vars() 2234 _mesa_shader_stage_to_string(producer->info.stage)); in remove_unused_io_vars() 2247 remove_unused_varyings(nir_shader *producer, nir_shader *consumer, in remove_unused_varyings() argument 2250 assert(producer->info.stage != MESA_SHADER_FRAGMENT); in remove_unused_varyings() 2254 nir_foreach_shader_out_variable(var, producer) { in remove_unused_varyings() 2259 if (nir_is_arrayed_io(var, producer->info.stage) || var->data.per_view) { in remove_unused_varyings() 2299 nir_foreach_shader_out_variable(var, producer) { in remove_unused_varyings() 2305 set_variable_io_mask(written[comp + i], var, producer->info.stage); in remove_unused_varyings() [all …]
|
D | link_interface_blocks.cpp | 178 interstage_match(struct gl_shader_program *prog, ir_variable *producer, in interstage_match() argument 182 if (consumer->get_interface_type() != producer->get_interface_type()) { in interstage_match() 193 producer->data.how_declared != ir_var_declared_implicitly) && in interstage_match() 195 producer->get_interface_type())) in interstage_match() 213 (producer->is_interface_instance() && in interstage_match() 214 producer->type->is_array())) { in interstage_match() 215 if (consumer_instance_type != producer->type) in interstage_match() 380 const gl_linked_shader *producer, in validate_interstage_inout_blocks() argument 385 const bool extra_array_level = (producer->Stage == MESA_SHADER_VERTEX && in validate_interstage_inout_blocks() 408 producer->symbols->get_interface("gl_PerVertex", in validate_interstage_inout_blocks() [all …]
|
/third_party/skia/third_party/externals/egl-registry/extensions/NV/ |
D | EGL_NV_stream_fifo_synchronous.txt | 51 inserted into a stream by the producer and become available to the 61 producer. If the application acquires and uses an image from one 62 producer which requires a long time to finish rendering, it will be 65 an older frame from the slower producer until the new one is ready. 67 This could be handled with existing interfaces by the producer 69 stream. However this requires the producer to have knowledge of the 71 the producer's pipeline which will slow it even further. 74 availability of new frames inserted by the producer until they are 75 ready to be used. The producer proceeds as normal, but the frames 114 inserted by the producer become available to the consumer [all …]
|
/third_party/mesa3d/src/intel/compiler/ |
D | brw_nir.c | 934 nir_shader *producer, nir_shader *consumer) in brw_nir_link_shaders() argument 936 if (producer->info.stage == MESA_SHADER_MESH && in brw_nir_link_shaders() 955 nir_lower_io_arrays_to_elements(producer, consumer); in brw_nir_link_shaders() 956 nir_validate_shader(producer, "after nir_lower_io_arrays_to_elements"); in brw_nir_link_shaders() 959 const bool p_is_scalar = compiler->scalar_stage[producer->info.stage]; in brw_nir_link_shaders() 963 NIR_PASS(_, producer, nir_lower_io_to_scalar_early, nir_var_shader_out); in brw_nir_link_shaders() 965 brw_nir_optimize(producer, compiler, p_is_scalar, false); in brw_nir_link_shaders() 969 if (nir_link_opt_varyings(producer, consumer)) in brw_nir_link_shaders() 972 NIR_PASS(_, producer, nir_remove_dead_variables, nir_var_shader_out, NULL); in brw_nir_link_shaders() 975 if (nir_remove_unused_varyings(producer, consumer)) { in brw_nir_link_shaders() [all …]
|
/third_party/mesa3d/docs/ |
D | perfetto.rst | 21 - pps-producer: A systemwide daemon that can collect global performance 23 - mesa: Per-process producer within mesa to capture render-stage traces 69 4. Start other producers you may need, e.g. ``pps-producer``. 102 # In parallel from the Mesa repo, start the PPS producer 103 mesa $ ./build/src/tool/pps/pps-producer 126 Below is driver specific information/instructions for the PPS producer. 136 sudo ./build/src/tool/pps/pps-producer 147 sudo ./build/src/tool/pps/pps-producer 162 INTEL_PERFETTO_METRIC_SET=RasterizerAndPixelBackend ./build/src/tool/pps/pps-producer 179 To run the producer, follow these two simple steps: [all …]
|
/third_party/python/Doc/library/ |
D | asynchat.rst | 64 define a :abbr:`FIFO (first-in, first-out)` queue of *producers*. A producer need 67 The producer indicates exhaustion (*i.e.* that it contains no more data) by 69 the :class:`async_chat` object removes the producer from the queue and starts 70 using the next producer, if any. When the producer queue is empty the 84 Pushes a ``None`` on to the producer queue. When this producer is popped off 98 output buffers and the producer queue. 122 .. method:: async_chat.push_with_producer(producer) 124 Takes a producer object and adds it to the producer queue associated with 126 channel will consume this producer's data by calling its :meth:`more`
|