Searched refs:lower (Results 1 - 25 of 538) sorted by relevance

1234567891011>>

/xsrc/external/mit/glu/dist/src/libnurbs/internals/
H A Dhull.cc70 lower.left = &left;
73 lower.left = &fakeleft;
77 lower.left->first();
86 lower.line = ⊥
87 lower.index = bot.ustart;
89 lower.line = 0;
95 lower.right = &fakeright;
100 lower.right = &right;
103 lower.right->last();
144 if( lower
[all...]
H A Dcurve.cc87 Curve lower( *this, pta, 0 ); local in function:Curve::Curve
88 lower.next = next;
89 *this = lower;
92 Curve lower( *this, ptb, 0 ); local in function:Curve::Curve
103 Curve &lower = *this; local in function:Curve::Curve
105 lower.next = c;
106 lower.mapdesc = upper.mapdesc;
107 lower.needsSampling = upper.needsSampling;
108 lower.order = upper.order;
109 lower
[all...]
H A Dpatch.cc108 Patch lower( *this, 0, pta[0], 0 ); local in function:Patch::Patch
109 *this = lower;
119 Patch lower( *this, 1, pta[1], 0 ); local in function:Patch::Patch
120 *this = lower;
138 Patch& lower = *this; local in function:Patch::Patch
140 lower.cullval = upper.cullval;
141 lower.mapdesc = upper.mapdesc;
142 lower.notInBbox = upper.notInBbox;
143 lower.needsSampling = upper.needsSampling;
144 lower
[all...]
H A Dhull.h62 Side lower; member in class:Hull
H A Dpatchlist.cc64 Patchlist &lower = *this; local in function:Patchlist::Patchlist
70 lower.pspec[0].range[0] = upper.pspec[0].range[0];
71 lower.pspec[0].range[1] = value;
72 lower.pspec[0].range[2] = value - upper.pspec[0].range[0];
75 lower.pspec[1] = upper.pspec[1];
77 lower.pspec[0] = upper.pspec[0];
78 lower.pspec[1].range[0] = upper.pspec[1].range[0];
79 lower.pspec[1].range[1] = value;
80 lower.pspec[1].range[2] = value - upper.pspec[1].range[0];
/xsrc/external/mit/MesaLib/dist/src/compiler/nir/
H A Dnir_lower_load_const_to_scalar.c39 lower_load_const_instr_scalar(nir_load_const_instr *lower) argument
41 if (lower->def.num_components == 1)
45 nir_builder_init(&b, nir_cf_node_get_function(&lower->instr.block->cf_node));
46 b.cursor = nir_before_instr(&lower->instr);
50 for (unsigned i = 0; i < lower->def.num_components; i++) {
52 nir_load_const_instr_create(b.shader, 1, lower->def.bit_size);
53 load_comp->value[0] = lower->value[i];
59 nir_ssa_def *vec = nir_vec(&b, loads, lower->def.num_components);
62 nir_ssa_def_rewrite_uses(&lower->def, vec);
63 nir_instr_remove(&lower
[all...]
H A Dnir_lower_frexp.c179 nir_ssa_def *lower; local in function:lower_frexp_impl
185 lower = lower_frexp_sig(&b, nir_ssa_for_alu_src(&b, alu_instr, 0));
188 lower = lower_frexp_exp(&b, nir_ssa_for_alu_src(&b, alu_instr, 0));
195 lower);
H A Dnir_lower_alu_to_scalar.c113 /* If we don't want to lower ffma, create several ffma instead of fmul+fadd
330 nir_alu_instr *lower = nir_alu_instr_create(b->shader, alu->op); local in function:lower_alu_instr_scalar
339 nir_alu_src_copy(&lower->src[i], &alu->src[i]);
341 lower->src[i].swizzle[j] = alu->dest.write_mask & (1 << chan) ?
345 nir_alu_ssa_dest_init(lower, 1, alu->dest.dest.ssa.bit_size);
346 lower->dest.saturate = alu->dest.saturate;
347 comps[chan] = &lower->dest.dest.ssa;
348 lower->exact = alu->exact;
350 nir_builder_instr_insert(b, &lower->instr);
/xsrc/external/mit/MesaLib.old/dist/src/compiler/nir/
H A Dnir_lower_load_const_to_scalar.c39 lower_load_const_instr_scalar(nir_load_const_instr *lower) argument
41 if (lower->def.num_components == 1)
45 nir_builder_init(&b, nir_cf_node_get_function(&lower->instr.block->cf_node));
46 b.cursor = nir_before_instr(&lower->instr);
50 for (unsigned i = 0; i < lower->def.num_components; i++) {
52 nir_load_const_instr_create(b.shader, 1, lower->def.bit_size);
53 load_comp->value[0] = lower->value[i];
59 nir_ssa_def *vec = nir_vec(&b, loads, lower->def.num_components);
62 nir_ssa_def_rewrite_uses(&lower->def, nir_src_for_ssa(vec));
63 nir_instr_remove(&lower
[all...]
H A Dnir_lower_alu_to_scalar.c226 nir_alu_instr *lower = nir_alu_instr_create(b->shader, instr->op); local in function:lower_alu_instr_scalar
235 nir_alu_src_copy(&lower->src[i], &instr->src[i], lower);
237 lower->src[i].swizzle[j] = instr->src[i].swizzle[src_chan];
240 nir_alu_ssa_dest_init(lower, 1, instr->dest.dest.ssa.bit_size);
241 lower->dest.saturate = instr->dest.saturate;
242 comps[chan] = &lower->dest.dest.ssa;
243 lower->exact = instr->exact;
245 nir_builder_instr_insert(b, &lower->instr);
H A Dnir_lower_frexp.c167 nir_ssa_def *lower; local in function:lower_frexp_impl
173 lower = lower_frexp_sig(&b, nir_ssa_for_alu_src(&b, alu_instr, 0));
176 lower = lower_frexp_exp(&b, nir_ssa_for_alu_src(&b, alu_instr, 0));
183 nir_src_for_ssa(lower));
/xsrc/external/mit/xcb-util/dist/keysyms/
H A Dkeysyms.c65 xcb_keysym_t *lower,
364 xcb_keysym_t *lower,
367 *lower = sym;
374 *lower += (XK_a - XK_A);
378 *lower += (XK_agrave - XK_Agrave);
382 *lower += (XK_oslash - XK_Ooblique);
389 *lower = XK_aogonek;
391 *lower += (XK_lstroke - XK_Lstroke);
393 *lower += (XK_scaron - XK_Scaron);
395 *lower
363 xcb_convert_case(xcb_keysym_t sym,xcb_keysym_t * lower,xcb_keysym_t * upper) argument
[all...]
/xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/freedreno/a2xx/
H A Dir2_nir_lower_scalar.c123 nir_alu_instr *lower = nir_alu_instr_create(b->shader, instr->op); local in function:lower_scalar
125 nir_alu_src_copy(&lower->src[0], &instr->src[0], lower);
126 lower->src[0].swizzle[0] = instr->src[0].swizzle[chan];
128 nir_alu_ssa_dest_init(lower, 1, instr->dest.dest.ssa.bit_size);
129 lower->dest.saturate = instr->dest.saturate;
130 comps[chan] = &lower->dest.dest.ssa;
131 lower->exact = instr->exact;
133 nir_builder_instr_insert(b, &lower->instr);
H A Dir2.h94 int ir2_optimize_nir(nir_shader *s, bool lower);
/xsrc/external/mit/MesaLib/dist/src/gallium/drivers/r600/sfn/
H A Dsfn_nir_lower_alu.cpp9 nir_ssa_def *lower(nir_instr *instr) override;
27 nir_ssa_def *Lower2x16::lower(nir_instr *instr) function in class:r600::Lower2x16
51 nir_ssa_def *lower(nir_instr *instr) override;
69 nir_ssa_def *LowerSinCos::lower(nir_instr *instr) function in class:r600::LowerSinCos
H A Dsfn_nir.h52 virtual nir_ssa_def *lower(nir_instr *instr) = 0;
80 bool lower(const nir_shader *shader, r600_pipe_shader *sh,
114 bool lower(const std::vector<InstructionBlock> &ir);
/xsrc/external/mit/libX11/dist/src/
H A DKeyBind.c290 KeySym *lower,
450 *lower = code;
456 *lower += 0x20;
461 *lower += 0x20;
483 *lower = code | 1;
488 *lower += 1;
493 *lower = 0x0069;
497 *lower = 0x00ff;
506 *lower = LatinExtB_lower_mapping[code - 0x0180];
511 *lower
289 UCSConvertCase(register unsigned code,KeySym * lower,KeySym * upper) argument
654 XConvertCase(register KeySym sym,KeySym * lower,KeySym * upper) argument
[all...]
/xsrc/external/mit/MesaLib/dist/src/compiler/glsl/
H A Dlower_jumps.cpp72 * lower strength. Accordingly, strength is used as a heuristic to
266 * Note that visiting a jump does not lower it. That is the
317 * Insert the instructions necessary to lower a return statement,
338 * If the given instruction is a return, lower it to instructions
365 * If the given instruction is a break, lower it to an instruction
380 * If the block ends in a conditional or unconditional break, lower
470 bool lower; local in function:__anon68d3f30f0110::ir_lower_jumps_visitor::should_lower_jump
474 lower = false; /* don't change this, code relies on it */
477 lower = lower_continue;
481 /* never lower "canonica
616 int lower; local in function:__anon68d3f30f0110::ir_lower_jumps_visitor::visit
[all...]
/xsrc/external/mit/MesaLib.old/dist/src/compiler/glsl/
H A Dlower_jumps.cpp72 * lower strength. Accordingly, strength is used as a heuristic to
266 * Note that visiting a jump does not lower it. That is the
315 * Insert the instructions necessary to lower a return statement,
336 * If the given instruction is a return, lower it to instructions
363 * If the given instruction is a break, lower it to an instruction
378 * If the block ends in a conditional or unconditional break, lower
468 bool lower; local in function:__anonc12c8bdc0110::ir_lower_jumps_visitor::should_lower_jump
472 lower = false; /* don't change this, code relies on it */
475 lower = lower_continue;
479 /* never lower "canonica
614 int lower; local in function:__anonc12c8bdc0110::ir_lower_jumps_visitor::visit
[all...]
/xsrc/external/mit/xterm/dist/
H A Dminstall.in86 lower=abcdefghijklmnopqrstuvwxyz
101 APP_chr0=`echo "$APP_name" | sed -e 's/^\(.\).*/\1/' | tr "$lower" "$upper"`
104 # APP_NAME=`echo "$APP_name" | tr "$lower" "$upper"`
107 USE_chr0=`echo "$USE_name" | sed -e 's/^\(.\).*/\1/' | tr "$lower" "$upper"`
110 USE_NAME=`echo "$USE_name" | tr "$lower" "$upper"`
/xsrc/external/mit/fontconfig/dist/fc-case/
H A Dfc-case.py128 lower = list(map(lambda s: int(s,16), tokens.pop(0).split())) variable
130 # print('\t----> {:04X} {} {}'.format(upper, cfclass, lower))
138 if len(lower) == 1:
141 foldExtends = (lower[0] - upper) == fold['offset'] and upper == fold['upper'] + fold['count']
143 foldExtends = (lower[0] - upper) == 1 and upper == (fold['upper'] + fold['count'] + 1)
153 fold['offset'] = lower[0] - upper;
160 expand = utf8_size (lower[0]) - utf8_size(upper)
168 for c in lower:
/xsrc/external/mit/xterm/dist/vttests/
H A Dprint-vt-chars.pl116 my $lower = lc $charset{WHO};
117 $caseless{$lower} = $charset{WHO};
122 my $lower = lc $mixed;
124 if ( $caseless{$lower} ) {
125 $mixed = $caseless{$lower};
150 my $lower = lc $mixed;
152 $result = 1 if ( defined( $caseless{$lower} ) );
/xsrc/external/mit/MesaLib.old/dist/src/gallium/docs/source/exts/
H A Dformatting.py12 t = " Type: %s" % t.strip(" <>").lower()
/xsrc/external/mit/MesaLib/dist/src/gallium/drivers/freedreno/a2xx/
H A Dir2.h94 int ir2_optimize_nir(nir_shader *s, bool lower);
/xsrc/external/mit/MesaLib/dist/src/panfrost/midgard/
H A Dmidgard_derivatives.c47 * scan for vec3/vec4 derivatives and lower (split) to multiple instructions.
135 bool lower = ins->mask & 0b0011; local in function:midgard_lower_derivatives
137 if (!(upper && lower)) continue;
144 /* Fixup masks. Make original just lower and dupe just upper */

Completed in 33 milliseconds

1234567891011>>