| /xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/llvmpipe/ |
| H A D | lp_test_blend.c | 203 double *term) 209 term[0] = factor[0]; /* R */ 210 term[1] = factor[1]; /* G */ 211 term[2] = factor[2]; /* B */ 214 term[0] = factor[0] * src[0]; /* R */ 215 term[1] = factor[1] * src[1]; /* G */ 216 term[2] = factor[2] * src[2]; /* B */ 219 term[0] = factor[0] * src[3]; /* R */ 220 term[1] = factor[1] * src[3]; /* G */ 221 term[ 196 compute_blend_ref_term(unsigned rgb_factor,unsigned alpha_factor,const double * factor,const double * src,const double * src1,const double * dst,const double * con,double * term) argument [all...] |
| /xsrc/external/mit/MesaLib/dist/src/gallium/drivers/llvmpipe/ |
| H A D | lp_test_blend.c | 203 double *term) 209 term[0] = factor[0]; /* R */ 210 term[1] = factor[1]; /* G */ 211 term[2] = factor[2]; /* B */ 214 term[0] = factor[0] * src[0]; /* R */ 215 term[1] = factor[1] * src[1]; /* G */ 216 term[2] = factor[2] * src[2]; /* B */ 219 term[0] = factor[0] * src[3]; /* R */ 220 term[1] = factor[1] * src[3]; /* G */ 221 term[ 196 compute_blend_ref_term(unsigned rgb_factor,unsigned alpha_factor,const double * factor,const double * src,const double * src1,const double * dst,const double * con,double * term) argument [all...] |
| /xsrc/external/mit/xterm/dist/ |
| H A D | menu.c | 774 XtermWidget xw = term; 952 XtermWidget xw = term; 987 TScreen *screen = TScreenOf(term); 1000 SetItemSensitivity(mi, TScreenOf(term)->vtXX_level != 0); 1022 ? TScreenOf(term)->menu_item_bitmap 1050 XtermWidget xw = term; 1086 TScreen *screen = TScreenOf(term); 1100 TScreen *screen = TScreenOf(term); 1111 TScreen *screen = TScreenOf(term); 1122 TScreen *screen = TScreenOf(term); [all...] |
| H A D | xtermcap.h | 74 #include <ncurses/term.h> 76 #include <term.h> /* tgetent() */ 80 * Get rid of conflicting symbols from term.h
|
| H A D | data.c | 94 XtermWidget term; /* master data structure for client */ variable in typeref:typename:XtermWidget
|
| H A D | main.c | 1903 if (TEK4014_SHOWN(term)) 1907 } else if (TScreenOf(term)->Vshow) 2803 term = (XtermWidget) XtVaCreateManagedWidget("vt100", xtermWidgetClass, 2817 (void *) term, XtWindow(term))); 2818 decode_keyboard_type(term, &resource); 2820 screen = TScreenOf(term); 2824 if (term->misc.logInhibit) 2827 if (term->misc.signalInhibit) 2830 if (term [all...] |
| H A D | data.h | 99 extern XtermWidget term;
|
| H A D | gen-pc-fkeys.pl | 166 my $term = $_[0]; 168 my(@list) = `infocmp -x -1 $term`;
|
| /xsrc/external/mit/MesaLib.old/dist/src/mesa/swrast/ |
| H A D | s_texcombine.c | 97 GLuint i, term; local in function:texture_combine 141 for (term = 0; term < numArgsRGB; term++) { 142 const GLenum srcRGB = combine->SourceRGB[term]; 143 const GLenum operandRGB = combine->OperandRGB[term]; 147 argRGB[term] = get_texel_array(swrast, unit); 150 argRGB[term] = primary_rgba; 153 argRGB[term] = rgba; 157 float4_array c = ccolor[term]; [all...] |
| H A D | s_context.c | 190 GLuint term; local in function:_swrast_update_texture_env 191 for (term = 0; term < combine->_NumArgsRGB; term++) { 192 if (combine->SourceRGB[term] == GL_PRIMARY_COLOR) { 196 if (combine->SourceA[term] == GL_PRIMARY_COLOR) {
|
| /xsrc/external/mit/MesaLib/dist/src/mesa/swrast/ |
| H A D | s_texcombine.c | 97 GLuint i, term; local in function:texture_combine 141 for (term = 0; term < numArgsRGB; term++) { 142 const GLenum srcRGB = combine->SourceRGB[term]; 143 const GLenum operandRGB = combine->OperandRGB[term]; 147 argRGB[term] = get_texel_array(swrast, unit); 150 argRGB[term] = primary_rgba; 153 argRGB[term] = rgba; 157 float4_array c = ccolor[term]; [all...] |
| H A D | s_context.c | 190 GLuint term; local in function:_swrast_update_texture_env 191 for (term = 0; term < combine->_NumArgsRGB; term++) { 192 if (combine->SourceRGB[term] == GL_PRIMARY_COLOR) { 196 if (combine->SourceA[term] == GL_PRIMARY_COLOR) {
|
| /xsrc/external/mit/MesaLib.old/dist/src/compiler/nir/ |
| H A D | nir_opt_loop_unroll.c | 78 get_first_blocks_in_terminator(nir_loop_terminator *term, argument 82 if (term->continue_from_then) { 83 *first_continue_block = nir_if_first_then_block(term->nif); 84 *first_break_block = nir_if_first_else_block(term->nif); 86 *first_continue_block = nir_if_first_else_block(term->nif); 87 *first_break_block = nir_if_first_then_block(term->nif); 213 move_cf_list_into_loop_term(nir_cf_list *lst, nir_loop_terminator *term) argument 216 nir_cf_reinsert(lst, nir_after_block(term->continue_from_block)); 219 nir_instr_remove(nir_block_last_instr(term->break_block)); 581 is_access_out_of_bounds(nir_loop_terminator *term, nir_deref_inst argument 613 remove_out_of_bounds_induction_use(nir_shader * shader,nir_loop * loop,nir_loop_terminator * term,nir_cf_list * lp_header,nir_cf_list * lp_body,unsigned trip_count) argument [all...] |
| /xsrc/external/mit/MesaLib.old/dist/src/mesa/main/ |
| H A D | texenv.c | 174 /** Set an RGB or A combiner source term */ 180 GLuint term; local in function:set_combiner_source 184 * Translate pname to (term, alpha). 193 term = pname - GL_SOURCE0_RGB; 200 term = pname - GL_SOURCE0_ALPHA; 208 if ((term == 3) && (ctx->API != API_OPENGL_COMPAT 214 assert(term < MAX_COMBINER_TERMS); 217 * Error-check param (the source term) 258 texUnit->Combine.SourceA[term] = param; 260 texUnit->Combine.SourceRGB[term] 272 GLuint term; local in function:set_combiner_operand [all...] |
| /xsrc/external/mit/MesaLib/dist/src/mesa/main/ |
| H A D | texenv.c | 174 /** Set an RGB or A combiner source term */ 180 GLuint term; local in function:set_combiner_source 184 * Translate pname to (term, alpha). 193 term = pname - GL_SOURCE0_RGB; 200 term = pname - GL_SOURCE0_ALPHA; 208 if ((term == 3) && (ctx->API != API_OPENGL_COMPAT 214 assert(term < MAX_COMBINER_TERMS); 217 * Error-check param (the source term) 258 texUnit->Combine.SourceA[term] = param; 260 texUnit->Combine.SourceRGB[term] 272 GLuint term; local in function:set_combiner_operand [all...] |
| /xsrc/external/mit/MesaLib/dist/src/compiler/nir/ |
| H A D | nir_opt_loop_unroll.c | 78 get_first_blocks_in_terminator(nir_loop_terminator *term, argument 82 if (term->continue_from_then) { 83 *first_continue_block = nir_if_first_then_block(term->nif); 84 *first_break_block = nir_if_first_else_block(term->nif); 86 *first_continue_block = nir_if_first_else_block(term->nif); 87 *first_break_block = nir_if_first_then_block(term->nif); 213 move_cf_list_into_loop_term(nir_cf_list *lst, nir_loop_terminator *term) argument 216 nir_cf_reinsert(lst, nir_after_block(term->continue_from_block)); 219 nir_instr_remove(nir_block_last_instr(term->break_block)); 581 is_access_out_of_bounds(nir_loop_terminator *term, nir_deref_inst argument 617 remove_out_of_bounds_induction_use(nir_shader * shader,nir_loop * loop,nir_loop_terminator * term,nir_cf_list * lp_header,nir_cf_list * lp_body,unsigned trip_count) argument [all...] |
| /xsrc/external/mit/MesaLib.old/dist/src/gallium/docs/source/ |
| H A D | glossary.rst | 26 This term is used as the name of the "3rd coordinate" of a resource. 30 resource is used, use the term "layer" instead of a resource type
|
| /xsrc/external/mit/MesaLib/dist/docs/gallium/ |
| H A D | glossary.rst | 26 This term is used as the name of the "3rd coordinate" of a resource. 30 resource is used, use the term "layer" instead of a resource type
|
| /xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/nouveau/codegen/ |
| H A D | nv50_ir_util.cpp | 41 if (rem == term) 53 assert(term != &dest.head); 54 assert(pos != term); 72 if (pos == term) 73 term = ins;
|
| H A D | nv50_ir_graph.h | 120 bool reachableBy(const Node *node, const Node *term) const;
|
| H A D | nv50_ir_inlines.h | 394 bool BasicBlock::reachableBy(const BasicBlock *by, const BasicBlock *term) argument 396 return cfg.reachableBy(&by->cfg, &term->cfg);
|
| /xsrc/external/mit/MesaLib/dist/src/gallium/drivers/nouveau/codegen/ |
| H A D | nv50_ir_util.cpp | 41 if (rem == term) 53 assert(term != &dest.head); 54 assert(pos != term); 72 if (pos == term) 73 term = ins;
|
| H A D | nv50_ir_graph.h | 119 bool reachableBy(const Node *node, const Node *term) const;
|
| H A D | nv50_ir_inlines.h | 394 bool BasicBlock::reachableBy(const BasicBlock *by, const BasicBlock *term) argument 396 return cfg.reachableBy(&by->cfg, &term->cfg);
|
| /xsrc/external/mit/fontconfig/dist/src/ |
| H A D | fcformat.c | 139 FcChar8 term) 141 if (*c->format != term) 150 FcChar8 term) 152 FcBool res = consume_char (c, term); 157 term); 160 term, c->format - c->format_orig + 1); 234 FcChar8 term) 240 while (*c->format && *c->format != '}' && *c->format != term) 328 FcChar8 term); 1140 FcChar8 term) 138 consume_char(FcFormatContext * c,FcChar8 term) argument 149 expect_char(FcFormatContext * c,FcChar8 term) argument 233 read_chars(FcFormatContext * c,FcChar8 term) argument 1137 interpret_expr(FcFormatContext * c,FcPattern * pat,FcStrBuf * buf,FcChar8 term) argument [all...] |