| /xsrc/external/mit/xedit/dist/lisp/modules/progmodes/ |
| auto.lsp | 40 (defsynprop *prop-variable* 41 "variable" 94 ;; variable assignment 104 (syntoken "\\$[a-zA-Z0-9_-]+" :property *prop-variable*) 105 (syntoken "\\$\\{[a-zA-Z0-9_-]+\\}" :property *prop-variable*) 106 (syntoken "\\$\\([a-zA-Z0-9_-]+\\)" :property *prop-variable*))
|
| imake.lsp | 42 (defsynprop *prop-variable* 43 "variable" 101 (syntable :shell *prop-variable* nil
|
| make.lsp | 42 (defsynprop *prop-variable* 43 "variable" 86 (syntable :shell *prop-variable* nil
|
| sh.lsp | 42 (defsynprop *prop-variable* 43 "variable" 66 ;; variable declaration 93 (synaugment :escape :variable) 106 (synaugment :double :variable) 109 (syntable :variable nil nil 110 (syntoken "\\$\\w+" :property *prop-variable*) 112 (synaugment :variable)
|
| /xsrc/external/mit/MesaLib/dist/src/gallium/tools/trace/ |
| format.py | 48 def variable(self, name): member in class:Formatter 81 def variable(self, name): member in class:AnsiFormatter 83 Formatter.variable(self, name) 150 def variable(self, name): member in class:WindowsConsoleFormatter 152 Formatter.variable(self, name)
|
| /xsrc/external/mit/MesaLib.old/dist/src/compiler/nir/ |
| nir_search.h | 59 * as variable (-bit_size - 1). 67 /** The variable index; Must be less than NIR_SEARCH_MAX_VARIABLES */ 68 unsigned variable; member in struct:__anon3416 70 /** Indicates that the given variable must be a constant 73 * given variable is only allowed to match constant values. 77 /** Indicates that the given variable must have a certain type 80 * given variable is only allowed to match values that come from an ALU 84 * Note: A variable that is both constant and has a non-void type will
|
| /xsrc/external/mit/MesaLib.old/dist/src/gallium/tools/trace/ |
| format.py | 48 def variable(self, name): member in class:Formatter 81 def variable(self, name): member in class:AnsiFormatter 83 Formatter.variable(self, name) 150 def variable(self, name): member in class:WindowsConsoleFormatter 152 Formatter.variable(self, name)
|
| /xsrc/external/mit/MesaLib/dist/src/broadcom/cle/ |
| v3d_decoder.h | 73 bool variable; member in struct:v3d_group
|
| /xsrc/external/mit/MesaLib/dist/src/compiler/nir/ |
| nir_search.h | 61 * as variable (-bit_size - 1). 69 /** The variable index; Must be less than NIR_SEARCH_MAX_VARIABLES */ 70 unsigned variable; member in struct:__anon806 72 /** Indicates that the given variable must be a constant 75 * given variable is only allowed to match constant values. 79 /** Indicates that the given variable must have a certain type 82 * given variable is only allowed to match values that come from an ALU 86 * Note: A variable that is both constant and has a non-void type will
|
| /xsrc/external/mit/MesaLib.old/dist/src/broadcom/cle/ |
| v3d_decoder.h | 73 bool variable; member in struct:v3d_group
|
| /xsrc/external/mit/MesaLib/dist/src/gallium/drivers/d3d12/ |
| d3d12_nir_passes.c | 406 shader->state_vars_size += 4; /* Use 4-words slots no matter the variable size */ 416 nir_variable *variable = NULL; local 424 variable = var; 430 variable = nir_intrinsic_get_var(instr, 0); 433 if (variable == NULL || 434 variable->num_state_slots != 1 || 435 variable->state_slots[0].tokens[0] != STATE_INTERNAL_DRIVER) 438 enum d3d12_state_var var = variable->state_slots[0].tokens[1];
|
| /xsrc/external/mit/xedit/dist/lisp/ |
| package.c | 205 LispObj *variable, *package = NULL, *list, *code, *result_form; local 214 variable = CAR(init); 215 CHECK_SYMBOL(variable); 238 /* Initialize iteration variable */ 239 CHECK_CONSTANT(variable); 240 LispAddVar(variable, NIL); 253 /* Save pointer to next atom. If variable is removed, 255 * variable is removed. */ 258 LispSetVar(variable, atom->object); 268 /* Variable is still bound * [all...] |
| core.c | 198 Svariable = GETATOMID("VARIABLE"); 3869 LispDestroy("EVAL: the variable %s is unbound", STROBJ(place)); 4222 LispDestroy("EVAL: the variable %s is unbound", STROBJ(place)); 4263 LispDestroy("EVAL: the variable %s is unbound", STROBJ(place)); 5227 * to not destroy the contents of a variable. 5608 LispObj *result, *variable, *form; local 5614 variable = CAR(form); 5615 CHECK_SYMBOL(variable); 5616 CHECK_CONSTANT(variable); 5621 LispSetVar(variable, result) [all...] |
| /xsrc/external/mit/MesaLib/dist/src/intel/common/ |
| intel_decoder.h | 126 bool variable; /* <group> specific */ member in struct:intel_group
|
| /xsrc/external/mit/MesaLib.old/dist/src/intel/common/ |
| gen_decoder.h | 116 bool variable; /* <group> specific */ member in struct:gen_group
|
| /xsrc/external/mit/MesaLib/dist/src/compiler/glsl/ |
| lower_ubo_reference.cpp | 53 struct_field(NULL), variable(NULL), uniform_block(NULL), 117 ir_variable *variable; member in class:__anon720::lower_ubo_reference_visitor 361 this->variable = var; 418 assert(variable); 420 if (variable->is_interface_instance()) { 427 return ((variable->data.memory_coherent ? ACCESS_COHERENT : 0) | 428 (variable->data.memory_restrict ? ACCESS_RESTRICT : 0) | 429 (variable->data.memory_volatile ? ACCESS_VOLATILE : 0)); 575 this->variable = var; 759 this->variable = var [all...] |
| /xsrc/external/mit/MesaLib.old/dist/src/compiler/glsl/ |
| lower_ubo_reference.cpp | 52 struct_field(NULL), variable(NULL) 115 ir_variable *variable; member in class:__anon3356::lower_ubo_reference_visitor 359 this->variable = var; 416 assert(variable); 418 if (variable->is_interface_instance()) { 425 return ((variable->data.memory_coherent ? ACCESS_COHERENT : 0) | 426 (variable->data.memory_restrict ? ACCESS_RESTRICT : 0) | 427 (variable->data.memory_volatile ? ACCESS_VOLATILE : 0)); 573 this->variable = var; 757 this->variable = var [all...] |
| /xsrc/external/mit/fontconfig/dist/src/ |
| fcmatch.c | 335 PRI1(VARIABLE), 677 FcBool variable = FcFalse; local 683 FcPatternObjectGetBool (font, FC_VARIABLE_OBJECT, 0, &variable); 684 assert (variable != FcDontCare); 685 if (variable) 795 /* Set font-variations settings for standard axes in variable fonts. */ 796 if (variable && 850 if (variable && variations.len)
|
| fcfreetype.c | 1214 FcBool variable = FcFalse; local 1292 /* Query variable font itself. */ 1337 variable = FcTrue; 1341 if (!variable) 1401 if (!FcPatternObjectAddBool (pat, FC_VARIABLE_OBJECT, variable)) 1530 if (variable) 1545 if (variable) 1645 if (!variable && !nstyle) 1705 if (!variable && !nfullname) 1760 if (!variable) [all...] |
| /xsrc/external/mit/libXaw/dist/src/ |
| Actions.c | 901 XawActionVar *variable; local 909 "declare(): variable name must begin with \'%c\', at %s = %s", 914 variable = _XawFindActionVar(list, name); 915 if (!variable) 916 variable = _XawCreateActionVar(list, name); 920 if (variable->qvalue) 924 if (val != NULL && strcmp(XrmQuarkToString(variable->qvalue), val) == 0) 931 variable->qvalue = (escape ? XrmStringToQuark(escape) : 940 XawActionVar *variable; local 947 variable = _XawFindActionVar(list, name) 1054 XawActionVar *variable; local [all...] |
| /xsrc/external/mit/MesaLib/dist/src/mesa/state_tracker/ |
| st_glsl_to_tgsi.cpp | 134 ir_variable *var; /* variable that maps to this, if any */ 1137 * we have an array that might be indexed with a variable, we need to use 1160 * intermediate results. (not SSA -- variable assignments will reuse 2154 /* Relative/variable index into constant buffer */ 2165 /* Relative/variable constant buffer */ 2536 /* Test if the variable is an array. Note that geometry and 2898 /* Variable index array dereference. It eats the "vec4" of the 2986 /* The LHS must be a dereference. If the LHS is a variable indexed array 3198 ir_variable *variable = ir->lhs->variable_referenced(); local 3201 variable->data.mode == ir_var_shader_out & [all...] |
| /xsrc/external/mit/MesaLib.old/dist/src/mesa/state_tracker/ |
| st_glsl_to_tgsi.cpp | 136 ir_variable *var; /* variable that maps to this, if any */ 1058 * we have an array that might be indexed with a variable, we need to use 1081 * intermediate results. (not SSA -- variable assignments will reuse 2081 /* Relative/variable index into constant buffer */ 2092 /* Relative/variable constant buffer */ 2446 /* Test if the variable is an array. Note that geometry and 2808 /* Variable index array dereference. It eats the "vec4" of the 2896 /* The LHS must be a dereference. If the LHS is a variable indexed array 3108 ir_variable *variable = ir->lhs->variable_referenced(); local 3111 variable->data.mode == ir_var_shader_out & [all...] |