| /xsrc/external/mit/MesaLib/dist/src/compiler/glsl/ |
| ir_function_detect_recursion.cpp | 137 function(ir_function_signature *sig) 138 : sig(sig) 145 ir_function_signature *sig; member in class:__anon686::function 170 function *get_function(ir_function_signature *sig) 173 hash_entry *entry = _mesa_hash_table_search(this->function_hash, sig); 175 f = new(mem_ctx) function(sig); 176 _mesa_hash_table_insert(this->function_hash, sig, f); 184 virtual ir_visitor_status visit_enter(ir_function_signature *sig) 186 this->current = this->get_function(sig); [all...] |
| opt_dead_functions.cpp | 40 signature_entry(ir_function_signature *sig) 42 this->signature = sig; 75 ir_dead_functions_visitor::get_signature_entry(ir_function_signature *sig) 78 if (entry->signature == sig) 82 signature_entry *entry = new(mem_ctx) signature_entry(sig);
|
| ir_function.cpp | 204 ir_function_signature *sig) 223 if (*other == sig) 226 const exec_node *node_a = sig->parameters.get_head_raw(); 280 for (ir_function_signature **sig = matches; sig < matches + num_matches; sig++) { 281 if (is_best_inexact_overload(actual_parameters, matches, num_matches, *sig)) 282 return *sig; 321 foreach_in_list(ir_function_signature, sig, &this->signatures) { 323 if (sig->is_builtin() && (!allow_builtins | [all...] |
| link_functions.cpp | 83 ir_function_signature *sig = 85 if (sig != NULL) { 86 ir->callee = sig; 94 sig = find_matching_signature(name, &ir->actual_parameters, 96 if (sig) 100 if (sig == NULL) { 153 foreach_in_list(const ir_instruction, original, &sig->parameters) { 162 linked_sig->intrinsic_id = sig->intrinsic_id; 164 if (sig->is_defined) { 165 foreach_in_list(const ir_instruction, original, &sig->body) 320 ir_function_signature *sig = local [all...] |
| /xsrc/external/mit/MesaLib.old/dist/src/compiler/glsl/ |
| ir_function_detect_recursion.cpp | 137 function(ir_function_signature *sig) 138 : sig(sig) 145 ir_function_signature *sig; member in class:__anon3322::function 170 function *get_function(ir_function_signature *sig) 173 hash_entry *entry = _mesa_hash_table_search(this->function_hash, sig); 175 f = new(mem_ctx) function(sig); 176 _mesa_hash_table_insert(this->function_hash, sig, f); 184 virtual ir_visitor_status visit_enter(ir_function_signature *sig) 186 this->current = this->get_function(sig); [all...] |
| opt_dead_functions.cpp | 40 signature_entry(ir_function_signature *sig) 42 this->signature = sig; 75 ir_dead_functions_visitor::get_signature_entry(ir_function_signature *sig) 78 if (entry->signature == sig) 82 signature_entry *entry = new(mem_ctx) signature_entry(sig);
|
| ir_function.cpp | 203 ir_function_signature *sig) 222 if (*other == sig) 225 const exec_node *node_a = sig->parameters.get_head_raw(); 279 for (ir_function_signature **sig = matches; sig < matches + num_matches; sig++) { 280 if (is_best_inexact_overload(actual_parameters, matches, num_matches, *sig)) 281 return *sig; 320 foreach_in_list(ir_function_signature, sig, &this->signatures) { 322 if (sig->is_builtin() && (!allow_builtins | [all...] |
| /xsrc/external/mit/xf86-input-vmmouse/dist/tools/ |
| vmmouse_detect.c | 40 segvCB(int sig)
|
| /xsrc/external/mit/libX11/dist/src/ |
| Xintatom.h | 13 unsigned long sig; member in struct:_Entry 28 unsigned long sig, int idx, int n);
|
| IntAtom.c | 35 #define HASH(sig) ((sig) & (TABLESIZE-1)) 36 #define REHASHVAL(sig) ((((sig) % (TABLESIZE-3)) + 2) | 1) 68 register unsigned long sig; local 79 sig = 0; 81 sig += c; 84 firstidx = idx = HASH(sig); 86 if (e != RESERVED && e->sig == sig) { 169 unsigned long sig; local 251 unsigned long sig; local [all...] |
| Quarks.c | 97 #define HASH(sig) ((sig) & quarkMask) 98 #define REHASHVAL(sig) ((((sig) % quarkRehash) + 2) | 1) 182 Signature sig; local 221 for (sig = 0, s = NAME(q); (c = *s++); ) 222 sig = (sig << 1) + c; 223 newidx = HASH(sig); 225 rehash = REHASHVAL(sig); 351 register Signature sig = 0; local 367 register Signature sig = 0; local [all...] |
| Xresinternal.h | 14 register _Xconst char *name, register int len, register Signature sig,
|
| /xsrc/external/mit/MesaLib/dist/src/broadcom/qpu/ |
| qpu_disasm.c | 65 if (instr->sig.small_imm) { 108 if (!v3d_qpu_sig_writes_address(disasm->devinfo, &instr->sig)) 148 if (!v3d_qpu_sig_writes_address(disasm->devinfo, &instr->sig)) 204 const struct v3d_qpu_sig *sig = &instr->sig; local 206 if (!sig->thrsw && 207 !sig->ldvary && 208 !sig->ldvpm && 209 !sig->ldtmu && 210 !sig->ldtlb & [all...] |
| /xsrc/external/mit/MesaLib/dist/src/etnaviv/drm/ |
| etnaviv_perfmon.c | 39 struct etna_perfmon_signal *sig; local 46 sig = calloc(1, sizeof(*sig)); 47 if (!sig) 54 sig->domain = dom; 55 sig->signal = req.id; 56 strncpy(sig->name, req.name, sizeof(sig->name)); 57 list_addtail(&sig->head, &dom->signals); 105 struct etna_perfmon_signal *sig, *next local [all...] |
| /xsrc/external/mit/libdrm/dist/etnaviv/ |
| etnaviv_perfmon.c | 39 struct etna_perfmon_signal *sig; local 46 sig = calloc(1, sizeof(*sig)); 47 if (!sig) 54 sig->domain = dom; 55 sig->signal = req.id; 56 strncpy(sig->name, req.name, sizeof(sig->name)); 57 list_addtail(&sig->head, &dom->signals); 105 struct etna_perfmon_signal *sig, *next local [all...] |
| /xsrc/external/mit/MesaLib.old/dist/src/broadcom/qpu/ |
| qpu_disasm.c | 65 if (instr->sig.small_imm) { 108 if (!v3d_qpu_sig_writes_address(disasm->devinfo, &instr->sig)) 148 if (!v3d_qpu_sig_writes_address(disasm->devinfo, &instr->sig)) 202 const struct v3d_qpu_sig *sig = &instr->sig; local 204 if (!sig->thrsw && 205 !sig->ldvary && 206 !sig->ldvpm && 207 !sig->ldtmu && 208 !sig->ldunif & [all...] |
| /xsrc/external/mit/MesaLib/dist/src/mapi/glapi/gen/ |
| remap_helper.py | 33 sig = "" 41 sig += 'p' 43 sig += 'i' 45 sig += 'f' 47 sig += 'd' 49 spec = [sig]
|
| /xsrc/external/mit/MesaLib.old/dist/src/mapi/glapi/gen/ |
| remap_helper.py | 35 sig = "" 43 sig += 'p' 45 sig += 'i' 47 sig += 'f' 49 sig += 'd' 51 spec = [sig]
|
| /xsrc/external/mit/MesaLib/dist/src/broadcom/compiler/ |
| qpu_validate.c | 122 if (state->last && state->last->sig.ldvary && 123 (inst->sig.ldunif || inst->sig.ldunifa)) { 135 bool last_reads_ldunif = (state->last && (state->last->sig.ldunif || 136 state->last->sig.ldunifrf)); 137 bool last_reads_ldunifa = (state->last && (state->last->sig.ldunifa || 138 state->last->sig.ldunifarf)); 139 bool reads_ldunif = inst->sig.ldunif || inst->sig.ldunifrf; 140 bool reads_ldunifa = inst->sig.ldunifa || inst->sig.ldunifarf [all...] |
| /xsrc/external/mit/MesaLib.old/dist/src/broadcom/compiler/ |
| qpu_validate.c | 122 if (state->last && state->last->sig.ldvary && 123 (inst->sig.ldunif || inst->sig.ldunifa)) { 128 bool last_reads_ldunif = (state->last && (state->last->sig.ldunif || 129 state->last->sig.ldunifrf)); 130 bool last_reads_ldunifa = (state->last && (state->last->sig.ldunifa || 131 state->last->sig.ldunifarf)); 132 bool reads_ldunif = inst->sig.ldunif || inst->sig.ldunifrf; 133 bool reads_ldunifa = inst->sig.ldunifa || inst->sig.ldunifarf [all...] |
| /xsrc/external/mit/xorg-server/dist/hw/xfree86/os-support/shared/ |
| VTsw_usl.c | 44 xf86VTRequest(int sig) 46 OsSignal(sig, (void (*)(int)) xf86VTRequest);
|
| /xsrc/external/mit/xorg-server.old/dist/hw/xfree86/os-support/shared/ |
| VTsw_usl.c | 44 xf86VTRequest(int sig) 46 signal(sig, (void(*)(int))xf86VTRequest);
|
| /xsrc/external/mit/MesaLib/dist/docs/_exts/ |
| formatting.py | 9 def parse_envvar(env, sig, signode): 10 envvar, t, default = sig.split(" ", 2) 21 def parse_opcode(env, sig, signode): 22 opcode, desc = sig.split("-", 1)
|
| /xsrc/external/mit/MesaLib.old/dist/src/gallium/docs/source/exts/ |
| formatting.py | 9 def parse_envvar(env, sig, signode): 10 envvar, t, default = sig.split(" ", 2) 19 def parse_opcode(env, sig, signode): 20 opcode, desc = sig.split("-", 1)
|
| /xsrc/external/mit/xorg-server/dist/hw/xquartz/pbproxy/ |
| app-main.m | 38 signal_handler(int sig) 40 switch (sig) {
|