/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_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 | 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 | 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 | 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 | round_trip_fuzzer.c | 17 FUZZ_dataProducer_t *producer = FUZZ_dataProducer_create(data, size); in LLVMFuzzerTestOneInput() local 18 size_t const partialCapacitySeed = FUZZ_dataProducer_retrieve32(producer); in LLVMFuzzerTestOneInput() 19 size = FUZZ_dataProducer_remainingBytes(producer); in LLVMFuzzerTestOneInput() 54 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() 59 FUZZ_dataProducer_free(producer); in LLVMFuzzerTestOneInput()
|
/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 | 176 nir_remove_unused_varyings(nir_shader *producer, nir_shader *consumer) in nir_remove_unused_varyings() argument 178 assert(producer->info.stage != MESA_SHADER_FRAGMENT); in nir_remove_unused_varyings() 184 nir_foreach_shader_out_variable(var, producer) { in nir_remove_unused_varyings() 191 get_variable_io_mask(var, producer->info.stage); in nir_remove_unused_varyings() 194 get_variable_io_mask(var, producer->info.stage); in nir_remove_unused_varyings() 218 if (producer->info.stage == MESA_SHADER_TESS_CTRL) in nir_remove_unused_varyings() 219 tcs_add_output_reads(producer, read, patches_read); in nir_remove_unused_varyings() 222 progress = nir_remove_unused_io_vars(producer, nir_var_shader_out, read, in nir_remove_unused_varyings() 512 gather_varying_component_info(nir_shader *producer, nir_shader *consumer, in gather_varying_component_info() argument 523 nir_foreach_shader_out_variable(var, producer) { in gather_varying_component_info() [all …]
|
/third_party/openssl/util/ |
D | add-depends.pl | 48 my $producer = shift @ARGV; 49 die "Producer not given\n" unless $producer; 216 die "Producer unrecognised: $producer\n" 217 unless exists $procedures{$producer} && exists $continuations{$producer}; 219 my $procedure = $procedures{$producer}; 220 my $continuation = $continuations{$producer};
|
/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 | 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/flutter/skia/src/gpu/ |
D | SkGpuDevice_drawTexture.cpp | 80 static bool can_ignore_bilerp_constraint(const GrTextureProducer& producer, in can_ignore_bilerp_constraint() argument 236 const SkPaint& paint, GrTextureProducer* producer, in draw_texture_producer() argument 243 auto proxy = producer->refTextureProxyForParams(GrSamplerState::ClampNearest(), nullptr); in draw_texture_producer() 249 std::move(proxy), producer->alphaType(), producer->colorSpace()); in draw_texture_producer() 258 bool canUseTextureCoordsAsLocalCoords = !use_shader(producer->isAlphaOnly(), paint) && !mf; in draw_texture_producer() 269 producer->width(), producer->height(), paint.getFilterQuality(), ctm, srcToDst, in draw_texture_producer() 288 !producer->hasMixedResolutions()) { in draw_texture_producer() 291 if (can_ignore_bilerp_constraint(*producer, src, combinedMatrix, rtc->numSamples())) { in draw_texture_producer() 304 auto fp = producer->createFragmentProcessor(textureMatrix, src, constraintMode, in draw_texture_producer() 306 fp = GrColorSpaceXformEffect::Make(std::move(fp), producer->colorSpace(), producer->alphaType(), in draw_texture_producer() [all …]
|
/third_party/mesa3d/src/mesa/state_tracker/ |
D | st_glsl_to_nir.cpp | 593 st_nir_vectorize_io(nir_shader *producer, nir_shader *consumer) in st_nir_vectorize_io() argument 595 NIR_PASS_V(producer, nir_lower_io_to_vector, nir_var_shader_out); in st_nir_vectorize_io() 596 NIR_PASS_V(producer, nir_opt_combine_stores, nir_var_shader_out); in st_nir_vectorize_io() 599 if ((producer)->info.stage != MESA_SHADER_TESS_CTRL) { in st_nir_vectorize_io() 606 NIR_PASS_V(producer, nir_lower_io_to_temporaries, in st_nir_vectorize_io() 607 nir_shader_get_entrypoint(producer), true, false); in st_nir_vectorize_io() 608 NIR_PASS_V(producer, nir_lower_global_vars_to_local); in st_nir_vectorize_io() 609 NIR_PASS_V(producer, nir_split_var_copies); in st_nir_vectorize_io() 610 NIR_PASS_V(producer, nir_lower_var_copies); in st_nir_vectorize_io() 616 NIR_PASS_V(producer, nir_lower_vars_to_ssa); in st_nir_vectorize_io() [all …]
|
/third_party/glib/gio/tests/ |
D | gdbus-overflow.c | 108 GDBusConnection *producer, *consumer; in test_overflow() local 122 producer = g_dbus_connection_new_sync (G_IO_STREAM (socket_connection), in test_overflow() 129 g_dbus_connection_set_exit_on_close (producer, TRUE); in test_overflow() 133 g_dbus_connection_add_filter (producer, overflow_filter_func, (gpointer) &n_messages_sent, NULL); in test_overflow() 139 g_dbus_connection_emit_signal (producer, in test_overflow() 189 g_object_unref (producer); in test_overflow()
|
/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/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``. 86 Below is driver specific information/instructions for the PPS producer. 96 sudo ./build/src/tool/pps/pps-producer 107 sudo ./build/src/tool/pps/pps-producer 124 To run the producer, follow these two simple steps: 134 2. Run the producer: 138 ./build/pps-producer
|
/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`
|