Home | History | Annotate | Download | only in nir

Lines Matching defs:in

6  * to deal in the Software without restriction, including without limitation
12 * paragraph) shall be included in all copies or substantial portions of the
17 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
19 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
20 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
21 * IN THE SOFTWARE.
38 * least in scenarios where you can count on each output written once
83 load_clipdist_input(nir_builder *b, nir_variable *in, nir_ssa_def **val)
89 nir_intrinsic_set_base(load, in->data.driver_location);
162 /* NIR should ensure that, even in case of loops/if-else, there
166 * NOTE: in case of early return's, these would have to be lowered
167 * to jumps to end_block predecessor in a previous pass. Not sure
197 * passed in to shader via user_clip_plane system-values
265 nir_variable **in)
274 load_clipdist_input(&b, in[0], &clipdist[0]);
276 load_clipdist_input(&b, in[1], &clipdist[4]);
300 nir_variable *in[2];
321 in[0] =
325 in[1] =
331 lower_clip_fs(function->impl, ucp_enables, in);